Cleaned up uses of 'mode' for activeEffects in configs (#2076)

This commit is contained in:
WBHarry 2026-07-11 22:51:44 +02:00 committed by GitHub
parent 2c98070836
commit c6411ef0fe
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 315 additions and 260 deletions

View file

@ -90,18 +90,20 @@ export const BPModifiers = {
name: 'DAGGERHEART.CONFIG.BPModifiers.increaseDamage.effect.name',
description: 'DAGGERHEART.CONFIG.BPModifiers.increaseDamage.effect.description',
img: 'icons/magic/control/buff-flight-wings-red.webp',
changes: [
{
key: 'system.bonuses.damage.physical.dice',
mode: 2,
value: '1d4'
},
{
key: 'system.bonuses.damage.magical.dice',
mode: 2,
value: '1d4'
}
]
system: {
changes: [
{
key: 'system.bonuses.damage.physical.dice',
type: 'add',
value: '1d4'
},
{
key: 'system.bonuses.damage.magical.dice',
type: 'add',
value: '1d4'
}
]
}
}
]
}