mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-07-21 18:09:54 +02:00
Compare commits
4 commits
780aaf216c
...
783505da0a
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
783505da0a | ||
|
|
76ee777985 | ||
|
|
c6411ef0fe | ||
|
|
2c98070836 |
249 changed files with 862 additions and 679 deletions
|
|
@ -315,15 +315,15 @@ export default class BeastformDialog extends HandlebarsApplicationMixin(Applicat
|
|||
|
||||
const beastformEffect = selected.effects.find(x => x.type === 'beastform');
|
||||
for (const traitBonus of app.modifications.traitBonuses) {
|
||||
const existingChange = beastformEffect.changes.find(
|
||||
const existingChange = beastformEffect.system.changes.find(
|
||||
x => x.key === `system.traits.${traitBonus.trait}.value`
|
||||
);
|
||||
if (existingChange) {
|
||||
existingChange.value = Number.parseInt(existingChange.value) + traitBonus.bonus;
|
||||
} else {
|
||||
beastformEffect.changes.push({
|
||||
beastformEffect.system.changes.push({
|
||||
key: `system.traits.${traitBonus.trait}.value`,
|
||||
mode: 2,
|
||||
type: 'add',
|
||||
priority: null,
|
||||
value: traitBonus.bonus
|
||||
});
|
||||
|
|
|
|||
|
|
@ -139,14 +139,16 @@ export default class DhDeathMove extends HandlebarsApplicationMixin(ApplicationV
|
|||
name: game.i18n.localize('DAGGERHEART.CONFIG.DeathMoves.blazeOfGlory.name'),
|
||||
description: game.i18n.localize('DAGGERHEART.CONFIG.DeathMoves.blazeOfGlory.description'),
|
||||
img: CONFIG.DH.GENERAL.deathMoves.blazeOfGlory.img,
|
||||
system: {
|
||||
changes: [
|
||||
{
|
||||
key: 'system.rules.roll.guaranteedCritical',
|
||||
mode: 2,
|
||||
type: 'add',
|
||||
value: 'true'
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]);
|
||||
|
||||
await this.actor.setDeathMoveDefeated(CONFIG.DH.GENERAL.defeatedConditionChoices.dead.id);
|
||||
|
|
|
|||
|
|
@ -90,19 +90,21 @@ 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',
|
||||
system: {
|
||||
changes: [
|
||||
{
|
||||
key: 'system.bonuses.damage.physical.dice',
|
||||
mode: 2,
|
||||
type: 'add',
|
||||
value: '1d4'
|
||||
},
|
||||
{
|
||||
key: 'system.bonuses.damage.magical.dice',
|
||||
mode: 2,
|
||||
type: 'add',
|
||||
value: '1d4'
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
|
|
|
|||
|
|
@ -37,14 +37,16 @@ export const armorFeatures = {
|
|||
name: 'DAGGERHEART.CONFIG.ArmorFeature.channeling.effects.channeling.name',
|
||||
description: 'DAGGERHEART.CONFIG.ArmorFeature.channeling.effects.channeling.description',
|
||||
img: 'icons/magic/symbols/rune-sigil-horned-blue.webp',
|
||||
system: {
|
||||
changes: [
|
||||
{
|
||||
key: 'system.bonuses.roll.spellcast',
|
||||
mode: 2,
|
||||
type: 'add',
|
||||
value: '1'
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
difficult: {
|
||||
|
|
@ -55,44 +57,46 @@ export const armorFeatures = {
|
|||
name: 'DAGGERHEART.CONFIG.ArmorFeature.difficult.effects.difficult.name',
|
||||
description: 'DAGGERHEART.CONFIG.ArmorFeature.difficult.effects.difficult.description',
|
||||
img: 'icons/magic/control/buff-flight-wings-red.webp',
|
||||
system: {
|
||||
changes: [
|
||||
{
|
||||
key: 'system.traits.agility.value',
|
||||
mode: 2,
|
||||
type: 'add',
|
||||
value: '-1'
|
||||
},
|
||||
{
|
||||
key: 'system.traits.strength.value',
|
||||
mode: 2,
|
||||
type: 'add',
|
||||
value: '-1'
|
||||
},
|
||||
{
|
||||
key: 'system.traits.finesse.value',
|
||||
mode: 2,
|
||||
type: 'add',
|
||||
value: '-1'
|
||||
},
|
||||
{
|
||||
key: 'system.traits.instinct.value',
|
||||
mode: 2,
|
||||
type: 'add',
|
||||
value: '-1'
|
||||
},
|
||||
{
|
||||
key: 'system.traits.presence.value',
|
||||
mode: 2,
|
||||
type: 'add',
|
||||
value: '-1'
|
||||
},
|
||||
{
|
||||
key: 'system.traits.knowledge.value',
|
||||
mode: 2,
|
||||
type: 'add',
|
||||
value: '-1'
|
||||
},
|
||||
{
|
||||
key: 'system.evasion',
|
||||
mode: 2,
|
||||
type: 'add',
|
||||
value: '-1'
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
flexible: {
|
||||
|
|
@ -103,14 +107,16 @@ export const armorFeatures = {
|
|||
name: 'DAGGERHEART.CONFIG.ArmorFeature.flexible.effects.flexible.name',
|
||||
description: 'DAGGERHEART.CONFIG.ArmorFeature.flexible.effects.flexible.description',
|
||||
img: 'icons/magic/movement/abstract-ribbons-red-orange.webp',
|
||||
system: {
|
||||
changes: [
|
||||
{
|
||||
key: 'system.evasion',
|
||||
mode: 2,
|
||||
type: 'add',
|
||||
value: '1'
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
fortified: {
|
||||
|
|
@ -121,14 +127,16 @@ export const armorFeatures = {
|
|||
name: 'DAGGERHEART.CONFIG.ArmorFeature.fortified.effects.fortified.name',
|
||||
description: 'DAGGERHEART.CONFIG.ArmorFeature.fortified.effects.fortified.description',
|
||||
img: 'icons/magic/defensive/shield-barrier-glowing-blue.webp',
|
||||
system: {
|
||||
changes: [
|
||||
{
|
||||
key: 'system.rules.damageReduction.increasePerArmorMark',
|
||||
mode: 5,
|
||||
type: 'override',
|
||||
value: '2'
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
gilded: {
|
||||
|
|
@ -139,14 +147,16 @@ export const armorFeatures = {
|
|||
name: 'DAGGERHEART.CONFIG.ArmorFeature.gilded.effects.gilded.name',
|
||||
description: 'DAGGERHEART.CONFIG.ArmorFeature.gilded.effects.gilded.description',
|
||||
img: 'icons/magic/control/control-influence-crown-gold.webp',
|
||||
system: {
|
||||
changes: [
|
||||
{
|
||||
key: 'system.traits.presence.value',
|
||||
mode: 2,
|
||||
type: 'add',
|
||||
value: '1'
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
heavy: {
|
||||
|
|
@ -157,14 +167,16 @@ export const armorFeatures = {
|
|||
name: 'DAGGERHEART.CONFIG.ArmorFeature.heavy.effects.heavy.name',
|
||||
description: 'DAGGERHEART.CONFIG.ArmorFeature.heavy.effects.heavy.description',
|
||||
img: 'icons/commodities/metal/ingot-worn-iron.webp',
|
||||
system: {
|
||||
changes: [
|
||||
{
|
||||
key: 'system.evasion',
|
||||
mode: 2,
|
||||
type: 'add',
|
||||
value: '-1'
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
hopeful: {
|
||||
|
|
@ -212,14 +224,16 @@ export const armorFeatures = {
|
|||
name: 'DAGGERHEART.CONFIG.ArmorFeature.magical.effects.magical.name',
|
||||
description: 'DAGGERHEART.CONFIG.ArmorFeature.magical.effects.magical.description',
|
||||
img: 'icons/magic/defensive/barrier-shield-dome-blue-purple.webp',
|
||||
system: {
|
||||
changes: [
|
||||
{
|
||||
key: 'system.rules.damageReduction.magical',
|
||||
mode: 5,
|
||||
type: 'override',
|
||||
value: 1
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
painful: {
|
||||
|
|
@ -249,14 +263,16 @@ export const armorFeatures = {
|
|||
name: 'DAGGERHEART.CONFIG.ArmorFeature.physical.effects.physical.name',
|
||||
description: 'DAGGERHEART.CONFIG.ArmorFeature.physical.effects.physical.description',
|
||||
img: 'icons/commodities/stone/ore-pile-tan.webp',
|
||||
system: {
|
||||
changes: [
|
||||
{
|
||||
key: 'system.rules.damageReduction.physical',
|
||||
mode: 5,
|
||||
type: 'override',
|
||||
value: 1
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
quiet: {
|
||||
|
|
@ -280,19 +296,21 @@ export const armorFeatures = {
|
|||
name: 'DAGGERHEART.CONFIG.ArmorFeature.reinforced.effects.reinforced.name',
|
||||
description: 'DAGGERHEART.CONFIG.ArmorFeature.reinforced.effects.reinforced.description',
|
||||
img: 'icons/magic/defensive/shield-barrier-glowing-triangle-green.webp',
|
||||
system: {
|
||||
changes: [
|
||||
{
|
||||
key: 'system.bunuses.damageThresholds.major',
|
||||
mode: 2,
|
||||
type: 'add',
|
||||
value: '2'
|
||||
},
|
||||
{
|
||||
key: 'system.bunuses.damageThresholds.severe',
|
||||
mode: 2,
|
||||
type: 'add',
|
||||
value: '2'
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
resilient: {
|
||||
|
|
@ -326,19 +344,21 @@ export const armorFeatures = {
|
|||
name: 'DAGGERHEART.CONFIG.ArmorFeature.sharp.effects.sharp.name',
|
||||
description: 'DAGGERHEART.CONFIG.ArmorFeature.sharp.effects.sharp.description',
|
||||
img: 'icons/magic/defensive/shield-barrier-glowing-triangle-green.webp',
|
||||
system: {
|
||||
changes: [
|
||||
{
|
||||
key: 'system.bonuses.damage.primaryWeapon.dice',
|
||||
mode: 2,
|
||||
type: 'add',
|
||||
value: '1d4'
|
||||
},
|
||||
{
|
||||
key: 'system.bonuses.damage.secondaryWeapon.dice',
|
||||
mode: 2,
|
||||
type: 'add',
|
||||
value: '1d4'
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
shifting: {
|
||||
|
|
@ -408,19 +428,21 @@ export const armorFeatures = {
|
|||
name: 'DAGGERHEART.CONFIG.ArmorFeature.veryHeavy.effects.veryHeavy.name',
|
||||
description: 'DAGGERHEART.CONFIG.ArmorFeature.veryHeavy.effects.veryHeavy.description',
|
||||
img: 'icons/commodities/metal/ingot-stamped-steel.webp',
|
||||
system: {
|
||||
changes: [
|
||||
{
|
||||
key: 'system.evasion',
|
||||
mode: 2,
|
||||
type: 'add',
|
||||
value: '-2'
|
||||
},
|
||||
{
|
||||
key: 'system.traits.agility.value',
|
||||
mode: 2,
|
||||
type: 'add',
|
||||
value: '-1'
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
warded: {
|
||||
|
|
@ -431,15 +453,17 @@ export const armorFeatures = {
|
|||
name: 'DAGGERHEART.CONFIG.ArmorFeature.warded.effects.warded.name',
|
||||
description: 'DAGGERHEART.CONFIG.ArmorFeature.warded.effects.warded.description',
|
||||
img: 'icons/magic/defensive/barrier-shield-dome-pink.webp',
|
||||
system: {
|
||||
changes: [
|
||||
{
|
||||
key: 'system.resistance.magical.reduction',
|
||||
mode: 2,
|
||||
type: 'add',
|
||||
value: '@system.armorScore',
|
||||
priority: 21
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
};
|
||||
|
|
@ -488,10 +512,11 @@ export const weaponFeatures = {
|
|||
name: 'DAGGERHEART.CONFIG.WeaponFeature.barrier.effects.barrier.name',
|
||||
description: 'DAGGERHEART.CONFIG.WeaponFeature.barrier.effects.barrier.description',
|
||||
img: 'icons/skills/melee/shield-block-bash-blue.webp',
|
||||
system: {
|
||||
changes: [
|
||||
{
|
||||
key: 'system.evasion',
|
||||
mode: 2,
|
||||
type: 'add',
|
||||
value: '-1'
|
||||
},
|
||||
{
|
||||
|
|
@ -504,6 +529,7 @@ export const weaponFeatures = {
|
|||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
bonded: {
|
||||
|
|
@ -514,14 +540,16 @@ export const weaponFeatures = {
|
|||
name: 'DAGGERHEART.CONFIG.WeaponFeature.bonded.effects.damage.name',
|
||||
description: 'DAGGERHEART.CONFIG.WeaponFeature.bonded.effects.damage.description',
|
||||
img: 'icons/magic/symbols/chevron-elipse-circle-blue.webp',
|
||||
system: {
|
||||
changes: [
|
||||
{
|
||||
key: 'system.bonuses.damage.primaryWeapon.bonus',
|
||||
mode: 2,
|
||||
type: 'add',
|
||||
value: '@system.levelData.level.current'
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
bouncing: {
|
||||
|
|
@ -553,19 +581,21 @@ export const weaponFeatures = {
|
|||
name: 'DAGGERHEART.CONFIG.WeaponFeature.brave.effects.brave.name',
|
||||
description: 'DAGGERHEART.CONFIG.WeaponFeature.brave.effects.brave.description',
|
||||
img: 'icons/magic/life/heart-cross-strong-flame-purple-orange.webp',
|
||||
system: {
|
||||
changes: [
|
||||
{
|
||||
key: 'system.evasion',
|
||||
mode: 2,
|
||||
type: 'add',
|
||||
value: '-1'
|
||||
},
|
||||
{
|
||||
key: 'system.damageThresholds.severe',
|
||||
mode: 2,
|
||||
type: 'add',
|
||||
value: 'ITEM.@system.tier'
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
brutal: {
|
||||
|
|
@ -618,14 +648,16 @@ export const weaponFeatures = {
|
|||
name: 'DAGGERHEART.CONFIG.WeaponFeature.charged.name',
|
||||
description: 'DAGGERHEART.CONFIG.WeaponFeature.charged.description',
|
||||
img: 'icons/magic/lightning/claws-unarmed-strike-teal.webp',
|
||||
system: {
|
||||
changes: [
|
||||
{
|
||||
key: 'system.proficiency',
|
||||
mode: 2,
|
||||
type: 'add',
|
||||
value: '1'
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
|
|
@ -660,14 +692,16 @@ export const weaponFeatures = {
|
|||
name: 'DAGGERHEART.CONFIG.WeaponFeature.cumbersome.effects.cumbersome.name',
|
||||
description: 'DAGGERHEART.CONFIG.WeaponFeature.cumbersome.effects.cumbersome.description',
|
||||
img: 'icons/commodities/metal/mail-plate-steel.webp',
|
||||
system: {
|
||||
changes: [
|
||||
{
|
||||
key: 'system.traits.finesse.value',
|
||||
mode: 2,
|
||||
type: 'add',
|
||||
value: '-1'
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
deadly: {
|
||||
|
|
@ -707,15 +741,17 @@ export const weaponFeatures = {
|
|||
name: 'DAGGERHEART.CONFIG.WeaponFeature.deflecting.effects.deflecting.name',
|
||||
description: 'DAGGERHEART.CONFIG.WeaponFeature.deflecting.effects.deflecting.description',
|
||||
img: 'icons/skills/melee/hand-grip-sword-strike-orange.webp',
|
||||
system: {
|
||||
changes: [
|
||||
{
|
||||
key: 'system.evasion',
|
||||
mode: 2,
|
||||
type: 'add',
|
||||
value: '@system.armorScore',
|
||||
priority: 21
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
|
|
@ -754,14 +790,16 @@ export const weaponFeatures = {
|
|||
name: 'DAGGERHEART.CONFIG.WeaponFeature.destructive.name',
|
||||
description: 'DAGGERHEART.CONFIG.WeaponFeature.destructive.effects.agility',
|
||||
img: 'icons/skills/melee/strike-flail-spiked-pink.webp',
|
||||
system: {
|
||||
changes: [
|
||||
{
|
||||
key: 'system.traits.agility.value',
|
||||
mode: 2,
|
||||
type: 'add',
|
||||
value: '-1'
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
devastating: {
|
||||
|
|
@ -795,7 +833,7 @@ export const weaponFeatures = {
|
|||
changes: [
|
||||
{
|
||||
key: 'system.bonuses.damage.primaryWeapon.bonus',
|
||||
mode: 2,
|
||||
type: 'add',
|
||||
value: '1'
|
||||
}
|
||||
],
|
||||
|
|
@ -902,14 +940,16 @@ export const weaponFeatures = {
|
|||
name: 'DAGGERHEART.CONFIG.WeaponFeature.greedy.actions.greed.name',
|
||||
description: 'DAGGERHEART.CONFIG.WeaponFeature.greedy.actions.greed.description',
|
||||
img: 'icons/commodities/currency/coins-crown-stack-gold.webp',
|
||||
system: {
|
||||
changes: [
|
||||
{
|
||||
key: 'system.proficiency',
|
||||
mode: 2,
|
||||
type: 'add',
|
||||
value: '1'
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
|
|
@ -951,14 +991,16 @@ export const weaponFeatures = {
|
|||
name: 'DAGGERHEART.CONFIG.WeaponFeature.heavy.effects.heavy.name',
|
||||
description: 'DAGGERHEART.CONFIG.WeaponFeature.heavy.effects.heavy.description',
|
||||
img: 'icons/commodities/metal/ingot-worn-iron.webp',
|
||||
system: {
|
||||
changes: [
|
||||
{
|
||||
key: 'system.evasion',
|
||||
mode: 2,
|
||||
type: 'add',
|
||||
value: '-1'
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
hooked: {
|
||||
|
|
@ -1066,14 +1108,16 @@ export const weaponFeatures = {
|
|||
name: 'DAGGERHEART.CONFIG.WeaponFeature.massive.effects.massive.name',
|
||||
description: 'DAGGERHEART.CONFIG.WeaponFeature.massive.effects.massive.description',
|
||||
img: 'icons/skills/melee/strike-flail-destructive-yellow.webp',
|
||||
system: {
|
||||
changes: [
|
||||
{
|
||||
key: 'system.evasion',
|
||||
mode: 2,
|
||||
type: 'add',
|
||||
value: '-1'
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
painful: {
|
||||
|
|
@ -1107,7 +1151,7 @@ export const weaponFeatures = {
|
|||
changes: [
|
||||
{
|
||||
key: 'system.bonuses.damage.primaryWeapon.bonus',
|
||||
mode: 2,
|
||||
type: 'add',
|
||||
value: 'ITEM.@system.tier + 1'
|
||||
}
|
||||
],
|
||||
|
|
@ -1158,14 +1202,16 @@ export const weaponFeatures = {
|
|||
name: 'DAGGERHEART.CONFIG.WeaponFeature.persuasive.effects.persuasive.name',
|
||||
description: 'DAGGERHEART.CONFIG.WeaponFeature.persuasive.effects.persuasive.description',
|
||||
img: 'icons/magic/control/hypnosis-mesmerism-eye.webp',
|
||||
system: {
|
||||
changes: [
|
||||
{
|
||||
key: 'system.traits.presence.value',
|
||||
mode: 2,
|
||||
type: 'add',
|
||||
value: '2'
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
|
|
@ -1203,6 +1249,7 @@ export const weaponFeatures = {
|
|||
name: 'DAGGERHEART.CONFIG.WeaponFeature.protective.effects.protective.name',
|
||||
description: 'DAGGERHEART.CONFIG.WeaponFeature.protective.effects.protective.description',
|
||||
img: 'icons/skills/melee/shield-block-gray-orange.webp',
|
||||
system: {
|
||||
changes: [
|
||||
{
|
||||
key: 'Armor',
|
||||
|
|
@ -1215,6 +1262,8 @@ export const weaponFeatures = {
|
|||
}
|
||||
]
|
||||
}
|
||||
|
||||
}
|
||||
]
|
||||
},
|
||||
quick: {
|
||||
|
|
@ -1244,14 +1293,16 @@ export const weaponFeatures = {
|
|||
name: 'DAGGERHEART.CONFIG.WeaponFeature.reliable.effects.reliable.name',
|
||||
description: 'DAGGERHEART.CONFIG.WeaponFeature.reliable.effects.reliable.description',
|
||||
img: 'icons/skills/melee/strike-sword-slashing-red.webp',
|
||||
system: {
|
||||
changes: [
|
||||
{
|
||||
key: 'system.bonuses.roll.primaryWeapon.bonus',
|
||||
mode: 2,
|
||||
type: 'add',
|
||||
value: 1
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
reloading: {
|
||||
|
|
@ -1341,7 +1392,7 @@ export const weaponFeatures = {
|
|||
changes: [
|
||||
{
|
||||
key: 'system.bonuses.damage.primaryWeapon.bonus',
|
||||
mode: 2,
|
||||
type: 'add',
|
||||
value: '@system.traits.agility.value',
|
||||
priority: 21
|
||||
}
|
||||
|
|
|
|||
38
module/systemRegistration/migration-handlers/2_5_2.mjs
Normal file
38
module/systemRegistration/migration-handlers/2_5_2.mjs
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
import { MigrationHandlerBase } from './base.mjs';
|
||||
|
||||
export class Migration_2_5_2 extends MigrationHandlerBase {
|
||||
version = '2.5.2';
|
||||
|
||||
/** @inheritdoc */
|
||||
async updateActiveEffectSource(effectSource, item) {
|
||||
let shouldUpdate = false;
|
||||
const newChanges = [];
|
||||
const srdItem = item?._stats.compendiumSource ?
|
||||
await foundry.utils.fromUuid(item?._stats.compendiumSource) :
|
||||
null;
|
||||
for (let i = 0; i < effectSource.system.changes.length; i++) {
|
||||
const change = effectSource.system.changes[i];
|
||||
const srdEffect = srdItem?.effects.find(x => x.name === effectSource.name);
|
||||
if (change.type === 'custom') {
|
||||
const srdChange = srdEffect ? srdEffect.system.changes[i] : null;
|
||||
if (
|
||||
change.key === srdChange.key &&
|
||||
change.value === srdChange.value &&
|
||||
change.type !== srdChange.type
|
||||
) {
|
||||
shouldUpdate = true;
|
||||
newChanges.push(srdChange);
|
||||
}
|
||||
} else {
|
||||
newChanges.push(change);
|
||||
}
|
||||
}
|
||||
|
||||
if (shouldUpdate) {
|
||||
return {
|
||||
_id: effectSource._id,
|
||||
system: { changes: newChanges }
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
77
module/systemRegistration/migration-handlers/base.mjs
Normal file
77
module/systemRegistration/migration-handlers/base.mjs
Normal file
|
|
@ -0,0 +1,77 @@
|
|||
/**
|
||||
* @import DHItem from "../../documents/item.mjs";
|
||||
*/
|
||||
|
||||
/**
|
||||
* The base class of an async migration.
|
||||
* These are generally run between versions for things that require compendiums or must be done in post.
|
||||
* The migrate() functions calls the various updateXSource() functions.
|
||||
* Generally a subclass will override the version and the updateXSource() functions.
|
||||
*/
|
||||
export class MigrationHandlerBase {
|
||||
version = null;
|
||||
|
||||
/**
|
||||
* Gets change data for an active effect's source, or null if no changes
|
||||
* @param {object} effectSource
|
||||
* @param {DHItem} item
|
||||
* @returns {Promise<object>}
|
||||
* @protected
|
||||
*/
|
||||
async updateActiveEffectSource(effectSource, item) {
|
||||
return null;
|
||||
}
|
||||
|
||||
async migrate() {
|
||||
// todo: handle more than just migrating effects. Right now this can only migrate effects
|
||||
// NOTE: the preload is hardcoded, we should not hardcode it
|
||||
|
||||
const numActors = game.actors.size;
|
||||
const numItems = game.items.size;
|
||||
const finalUpdateProgress = 5;
|
||||
const DhProgress = game.system.api.applications.ui.DhProgress;
|
||||
const preRunProgress = game.packs.size;
|
||||
|
||||
const progress = DhProgress.createMigrationProgress(
|
||||
preRunProgress + numActors + numItems + finalUpdateProgress
|
||||
);
|
||||
|
||||
// Preload. Avoid hardcoding in the future
|
||||
for (const pack of game.packs) {
|
||||
await pack.getDocuments();
|
||||
progress.advance();
|
||||
}
|
||||
|
||||
const batch = [];
|
||||
|
||||
const updateItem = async item => {
|
||||
const itemUpdates = [];
|
||||
for (const effect of item.effects) {
|
||||
const changes = await this.updateActiveEffectSource(effect.toObject(), item);
|
||||
if (changes) itemUpdates.push(changes);
|
||||
}
|
||||
if (itemUpdates.length) {
|
||||
batch.push({
|
||||
action: 'update',
|
||||
documentName: 'ActiveEffect',
|
||||
updates: itemUpdates,
|
||||
parent: item
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
for (const actor of game.actors) {
|
||||
for (const item of actor.items) {
|
||||
await updateItem(item);
|
||||
}
|
||||
progress.advance();
|
||||
}
|
||||
for (const item of game.items) {
|
||||
await updateItem(item);
|
||||
progress.advance();
|
||||
}
|
||||
|
||||
await foundry.documents.modifyBatch(batch);
|
||||
progress.advance({ by: finalUpdateProgress });
|
||||
}
|
||||
}
|
||||
|
|
@ -1,4 +1,5 @@
|
|||
import { defaultRestOptions } from '../config/generalConfig.mjs';
|
||||
import { Migration_2_5_2 } from './migration-handlers/2_5_2.mjs';
|
||||
|
||||
export async function runMigrations() {
|
||||
let lastMigrationVersion = game.settings.get(CONFIG.DH.id, CONFIG.DH.SETTINGS.gameSettings.LastMigrationVersion);
|
||||
|
|
@ -320,7 +321,19 @@ export async function runMigrations() {
|
|||
|
||||
lastMigrationVersion = '2.1.0';
|
||||
}
|
||||
//#endregion
|
||||
|
||||
await game.settings.set(CONFIG.DH.id, CONFIG.DH.SETTINGS.gameSettings.LastMigrationVersion, lastMigrationVersion);
|
||||
|
||||
/* -------------------------------------------- */
|
||||
/* New Style migrations below this point */
|
||||
/* -------------------------------------------- */
|
||||
|
||||
const migrations = [
|
||||
new Migration_2_5_2()
|
||||
].filter(m => m.version && foundry.utils.isNewerVersion(m.version, lastMigrationVersion));
|
||||
|
||||
for (const handler of migrations) {
|
||||
await handler.migrate();
|
||||
await game.settings.set(CONFIG.DH.id, CONFIG.DH.SETTINGS.gameSettings.LastMigrationVersion, handler.version);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -325,7 +325,7 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.evasion",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "@system.evasion / 2",
|
||||
"priority": 10
|
||||
}
|
||||
|
|
|
|||
|
|
@ -328,7 +328,7 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.disadvantageSources",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "Agility Rolls",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -338,7 +338,7 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.advantageSources",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "On attacks if they are Hidden.",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -235,7 +235,7 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.rules.conditionImmunities.restrained",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "1",
|
||||
"priority": null
|
||||
}
|
||||
|
|
@ -298,7 +298,7 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.resistance.magical.resistance",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "1",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -462,7 +462,7 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.bonuses.damage.physical.bonus",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "10",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -273,7 +273,7 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.bonuses.roll.attack.bonus",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "ITEM.@system.resource.value",
|
||||
"priority": 21
|
||||
}
|
||||
|
|
|
|||
|
|
@ -241,7 +241,7 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.rules.attack.damage.hpDamageMultiplier",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "2",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -243,7 +243,7 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.resistance.physical.resistance",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "1",
|
||||
"priority": null
|
||||
}
|
||||
|
|
@ -306,7 +306,7 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.rules.attack.damage.hpDamageMultiplier",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "2",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -268,7 +268,7 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.difficulty",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "3",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -272,7 +272,7 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.difficulty",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "2",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -343,7 +343,7 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.resistance.physical.reduction",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "7",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -326,7 +326,7 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.disadvantageSources",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "Your next action",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -237,7 +237,7 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.rules.attack.damage.hpDamageMultiplier",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "2",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -378,7 +378,7 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.advantageSources",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "Attacks made while Hidden",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -349,7 +349,7 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.evasion",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "@system.evasion / 2",
|
||||
"priority": 10
|
||||
}
|
||||
|
|
|
|||
|
|
@ -253,7 +253,7 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.difficulty",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "2",
|
||||
"priority": null
|
||||
}
|
||||
|
|
@ -316,7 +316,7 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.resistance.physical.reduction",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "3",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -238,7 +238,7 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.resistance.magical.resistance",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "1",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -316,7 +316,7 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.disadvantageSources",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "On your next action roll.",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -238,7 +238,7 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.rules.attack.damage.hpDamageMultiplier",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "2",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -240,7 +240,7 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.resistance.physical.resistance",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "1",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -273,7 +273,7 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.resistance.physical.resistance",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "1",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -273,7 +273,7 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.resistance.physical.resistance",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "1",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -273,7 +273,7 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.resistance.physical.resistance",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "1",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -300,7 +300,7 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.disadvantageSources",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "On attack rolls while you're within Very Close range of the Sentinel",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -305,7 +305,7 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.evasion",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "@system.evasion / 2",
|
||||
"priority": 10
|
||||
}
|
||||
|
|
|
|||
|
|
@ -379,7 +379,7 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.difficulty",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "1",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -324,7 +324,7 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.difficulty",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "3",
|
||||
"priority": null
|
||||
}
|
||||
|
|
@ -387,7 +387,7 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.resistance.physical.resistance",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "1",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -262,7 +262,7 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.resistance.physical.resistance",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "1",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -27,13 +27,13 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.bonuses.rest.shortRest.shortMoves",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "1",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.bonuses.rest.longRest.longMoves",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "1",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.advantageSources",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "Dread Visage: Rolls to intimidate hostile creatures",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -27,13 +27,13 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.bonuses.rest.shortRest.longMoves",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "1",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.bonuses.rest.shortRest.shortMoves",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "-1",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.resources.hitPoints.max",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "1",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.resources.stress.max",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "1",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.advantageSources",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "Agility Rolls that involve balancing and climbing",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.evasion",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "1",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.rules.damageReduction.stressDamageReduction.severe.cost",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "1",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -27,13 +27,13 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.damageThresholds.major",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "@prof",
|
||||
"priority": 21
|
||||
},
|
||||
{
|
||||
"key": "system.damageThresholds.severe",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "@prof",
|
||||
"priority": 21
|
||||
}
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.rules.damageReduction.stressDamageReduction.minor.cost",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "2",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -90,13 +90,13 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.bonuses.damage.physical.dice",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "1d6",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.bonuses.damage.magical.dice",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "1d6",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -57,7 +57,7 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.evasion",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "2",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -62,25 +62,25 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.traits.agility.value",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "1",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.evasion",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "2",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.rules.attack.damage.diceIndex",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "0",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.rules.attack.roll.trait",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "agility",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -62,31 +62,31 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.traits.agility.value",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "2",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.evasion",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "4",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.rules.attack.damage.diceIndex",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "3",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.rules.attack.damage.bonus",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "6",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.rules.attack.roll.trait",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "agility",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -62,25 +62,25 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.traits.agility.value",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "1",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.evasion",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "2",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.rules.attack.damage.diceIndex",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "0",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.rules.attack.roll.trait",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "agility",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -62,31 +62,31 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.traits.strength.value",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "1",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.evasion",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "1",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.rules.attack.damage.diceIndex",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "2",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.rules.attack.damage.bonus",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "2",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.rules.attack.roll.trait",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "strength",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -65,31 +65,31 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.traits.agility.value",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "3",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.evasion",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "3",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.rules.attack.damage.diceIndex",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "3",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.rules.attack.damage.bonus",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "10",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.rules.attack.roll.trait",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "agility",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -62,31 +62,31 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.traits.strength.value",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "2",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.evasion",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "2",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.rules.attack.damage.diceIndex",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "4",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.rules.attack.damage.bonus",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "8",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.rules.attack.roll.trait",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "strength",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -62,31 +62,31 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.traits.finesse.value",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "2",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.evasion",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "3",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.rules.attack.damage.diceIndex",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "2",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.rules.attack.damage.bonus",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "6",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.rules.attack.roll.trait",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "finesse",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -62,25 +62,25 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.traits.instinct.value",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "1",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.evasion",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "2",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.rules.attack.damage.diceIndex",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "1",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.rules.attack.roll.trait",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "instinct",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -49,13 +49,13 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.bonuses.damage.physical.bonus",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "6",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.evasion",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "2",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -49,31 +49,31 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.traits.strength.value",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "2",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.evasion",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "3",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.rules.attack.damage.diceIndex",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "3",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.rules.attack.damage.bonus",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "8",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.rules.attack.roll.trait",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "strength",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -66,31 +66,31 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.traits.strength.value",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "3",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.evasion",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "1",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.rules.attack.damage.diceIndex",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "4",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.rules.attack.damage.bonus",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "12",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.rules.attack.roll.trait",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "strength",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -62,31 +62,31 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.traits.instinct.value",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "2",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.evasion",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "1",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.rules.attack.damage.diceIndex",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "3",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.rules.attack.damage.bonus",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "7",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.rules.attack.roll.trait",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "instinct",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -62,31 +62,31 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.traits.agility.value",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "1",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.evasion",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "2",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.rules.attack.damage.diceIndex",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "2",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.rules.attack.damage.bonus",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "1",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.rules.attack.roll.trait",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "agility",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -65,31 +65,31 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.traits.finesse.value",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "3",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.evasion",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "4",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.rules.attack.damage.diceIndex",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "3",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.rules.attack.damage.bonus",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "11",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.rules.attack.roll.trait",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "finesse",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -49,19 +49,19 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.bonuses.damage.physical.bonus",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "9",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.evasion",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "3",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.rules.attack.damage.diceIndex",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "1",
|
||||
"priority": 60
|
||||
}
|
||||
|
|
|
|||
|
|
@ -49,31 +49,31 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.traits.strength.value",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "3",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.evasion",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "2",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.rules.attack.damage.diceIndex",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "4",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.rules.attack.damage.bonus",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "10",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.rules.attack.roll.trait",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "strength",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -62,25 +62,25 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.traits.agility.value",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "1",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.evasion",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "3",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.rules.attack.damage.diceIndex",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "1",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.rules.attack.roll.trait",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "agility",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -62,31 +62,31 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.traits.strength.value",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "2",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.evasion",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "1",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.rules.attack.damage.diceIndex",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "2",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.rules.attack.damage.bonus",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "2",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.rules.attack.roll.trait",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "strength",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -62,31 +62,31 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.traits.instinct.value",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "1",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.evasion",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "3",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.rules.attack.damage.diceIndex",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "2",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.rules.attack.damage.bonus",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "6",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.rules.attack.roll.trait",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "instinct",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -62,31 +62,31 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.traits.strength.value",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "3",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.evasion",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "1",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.rules.attack.damage.diceIndex",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "3",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.rules.attack.damage.bonus",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "4",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.rules.attack.roll.trait",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "strength",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -62,31 +62,31 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.traits.finesse.value",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "1",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.evasion",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "2",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.rules.attack.damage.diceIndex",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "1",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.rules.attack.damage.bonus",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "1",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.rules.attack.roll.trait",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "finesse",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -62,31 +62,31 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.traits.finesse.value",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "1",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.evasion",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "2",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.rules.attack.damage.diceIndex",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "2",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.rules.attack.damage.bonus",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "4",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.rules.attack.roll.trait",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "finesse",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -65,31 +65,31 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.traits.strength.value",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "3",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.evasion",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "2",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.rules.attack.damage.diceIndex",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "4",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.rules.attack.damage.bonus",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "10",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.rules.attack.roll.trait",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "strength",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -62,31 +62,31 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.traits.finesse.value",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "1",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.evasion",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "3",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.rules.attack.damage.diceIndex",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "0",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.rules.attack.damage.bonus",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "2",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.rules.attack.roll.trait",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "finesse",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -60,7 +60,7 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.resistance.physical.resistance",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "1",
|
||||
"priority": null
|
||||
}
|
||||
|
|
@ -98,7 +98,7 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.resistance.physical.reduction",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "@system.armorScore",
|
||||
"priority": 21
|
||||
}
|
||||
|
|
|
|||
|
|
@ -25,13 +25,13 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.damageThresholds.major",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "-2",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.damageThresholds.severe",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "-2",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -25,13 +25,13 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.damageThresholds.major",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "3",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.damageThresholds.severe",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "3",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -62,7 +62,7 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.proficiency",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "1",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -108,7 +108,7 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.proficiency",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "2",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -25,13 +25,13 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.damageThresholds.major",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "2",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.damageThresholds.severe",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "2",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -25,13 +25,13 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.damageThresholds.major",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "2",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.damageThresholds.severe",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "2",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -24,13 +24,13 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.bonuses.damage.physical.bonus",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "@system.levelData.level.current",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.rules.burden.ignore",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "1",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -55,7 +55,7 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.bonuses.rally",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "6 + min((floor(@system.levelData.level.current / 5)*2), 2)",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -28,13 +28,13 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.bonuses.damage.physical.dice",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "@tierd6",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.bonuses.damage.magical.dice",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "@tierd6",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -65,31 +65,31 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.bonuses.damage.physical.bonus",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "ORIGIN.@item.resource.value",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.bonuses.damage.magical.bonus",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "ORIGIN.@item.resource.value",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.rules.damageReduction.reduceSeverity.physical",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "1",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.rules.conditionImmunities.vulnerable",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "1",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.rules.conditionImmunities.restrained",
|
||||
"mode": 5,
|
||||
"type": "override",
|
||||
"value": "1",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.advantageSources",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "Move without being heard.",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -27,19 +27,19 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.advantageSources",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "Consort with nobles",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.advantageSources",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "Negotiate prices",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.advantageSources",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "Leverage your reputation to get what you want",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -27,19 +27,19 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.advantageSources",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "Negotiate with criminals",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.advantageSources",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "Detect lies",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.advantageSources",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "Find a safe place to hide",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -27,19 +27,19 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.advantageSources",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "Traverse dangerous cliffs and ledges",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.advantageSources",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "Navigate harsh environment",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.advantageSources",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "Use your survival knowledge",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.advantageSources",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "History, culture, or politics of a prominent person or place",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -68,7 +68,7 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.bonuses.roll.spellcast.bonus",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "+1",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -27,13 +27,13 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.bonuses.roll.attack.bonus",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "2",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.damageThresholds.severe",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "4",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -35,13 +35,13 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.bonuses.damage.primaryWeapon.bonus",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "@system.traits.strength.value",
|
||||
"priority": 21
|
||||
},
|
||||
{
|
||||
"key": "system.bonuses.damage.secondaryWeapon.bonus",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "@system.traits.strength.value",
|
||||
"priority": 21
|
||||
}
|
||||
|
|
|
|||
|
|
@ -88,7 +88,7 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.traits.presence.value",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "@system.traits.strength.value",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -60,7 +60,7 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.traits.agility.value",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "1",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.rules.damageReduction.maxArmorMarked.stressExtra",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "1",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -89,7 +89,7 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.bonuses.roll.spellcast.bonus",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "@system.proficiency",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -66,19 +66,19 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.bonuses.roll.attack.bonus",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "-2",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.bonuses.damage.magical.dice",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "+2",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.bonuses.damage.physical.bonus",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "+2",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -26,13 +26,13 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.bonuses.damage.primaryWeapon.bonus",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "@system.traits.agility.value",
|
||||
"priority": 21
|
||||
},
|
||||
{
|
||||
"key": "system.bonuses.damage.secondaryWeapon.bonus",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "@system.traits.agility.value",
|
||||
"priority": 21
|
||||
}
|
||||
|
|
@ -69,13 +69,13 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.bonuses.damage.primaryWeapon.bonus",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "@system.traits.finesse.value",
|
||||
"priority": null
|
||||
},
|
||||
{
|
||||
"key": "system.bonuses.damage.secondaryWeapon.bonus",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "@system.traits.finesse.value",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -60,7 +60,7 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.proficiency",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "1",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -66,7 +66,7 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.advantageSources",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "Deceive or trick someone into believing a lie you told them",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -68,7 +68,7 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.bonuses.roll.attack.bonus",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "1",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -260,7 +260,7 @@
|
|||
"changes": [
|
||||
{
|
||||
"key": "system.bonuses.roll.spellcast.bonus",
|
||||
"mode": 2,
|
||||
"type": "add",
|
||||
"value": "2",
|
||||
"priority": null
|
||||
}
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue