[Fix] Cleanup RangeDependant (#2039)

* Made the RangeDependent setting for ActiveEffects Nullable
* Removed all RangeDependent data from SRD where enabled was false before
* Fixed random flickerfly SRD
This commit is contained in:
WBHarry 2026-07-07 00:20:48 +02:00 committed by GitHub
parent 2782b62793
commit b2eeed7bb7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
280 changed files with 1692 additions and 3605 deletions

View file

@ -390,7 +390,7 @@ const updateActorsRangeDependentEffects = async token => {
).rangeMeasurement; ).rangeMeasurement;
for (let effect of token.actor?.allApplicableEffects() ?? []) { for (let effect of token.actor?.allApplicableEffects() ?? []) {
if (!effect.system.rangeDependence?.enabled) continue; if (!effect.system.rangeDependence) continue;
const { target, range, type } = effect.system.rangeDependence; const { target, range, type } = effect.system.rangeDependence;
// If there are no targets, assume false. Otherwise, start with the effect enabled. // If there are no targets, assume false. Otherwise, start with the effect enabled.

View file

@ -167,9 +167,7 @@
}, },
"ACTIVEEFFECT": { "ACTIVEEFFECT": {
"Config": { "Config": {
"rangeDependence": { "rangeDependence": { "title": "Range Dependence" },
"title": "Range Dependence"
},
"stacking": { "title": "Stacking" }, "stacking": { "title": "Stacking" },
"targetDispositions": "Affected Dispositions" "targetDispositions": "Affected Dispositions"
}, },

View file

@ -155,6 +155,10 @@ export default class DhActiveEffectConfig extends foundry.applications.sheets.Ac
.querySelector('.stacking-change-checkbox') .querySelector('.stacking-change-checkbox')
?.addEventListener('change', this.stackingChangeToggle.bind(this)); ?.addEventListener('change', this.stackingChangeToggle.bind(this));
htmlElement
.querySelector('.range-dependence-change-checkbox')
?.addEventListener('change', this.rangeDependenceChangeToggle.bind(this));
htmlElement htmlElement
.querySelector('.armor-change-checkbox') .querySelector('.armor-change-checkbox')
?.addEventListener('change', this.armorChangeToggle.bind(this)); ?.addEventListener('change', this.armorChangeToggle.bind(this));
@ -224,6 +228,20 @@ export default class DhActiveEffectConfig extends foundry.applications.sheets.Ac
return this.submit({ updateData: { system: systemData } }); return this.submit({ updateData: { system: systemData } });
} }
rangeDependenceChangeToggle(event) {
const rangeFields = this.document.system.schema.fields.rangeDependence.fields;
const systemData = {
rangeDependence: event.target.checked
? _replace({
type: rangeFields.type.initial,
target: rangeFields.target.initial,
range: rangeFields.range.initial
})
: null
};
return this.submit({ updateData: { system: systemData } });
}
armorChangeToggle(event) { armorChangeToggle(event) {
if (event.target.checked) { if (event.target.checked) {
this.addArmorChange(); this.addArmorChange();

View file

@ -791,14 +791,14 @@ export const weaponFeatures = {
name: 'DAGGERHEART.CONFIG.WeaponFeature.doubleDuty.effects.doubleDuty.name', name: 'DAGGERHEART.CONFIG.WeaponFeature.doubleDuty.effects.doubleDuty.name',
description: 'DAGGERHEART.CONFIG.WeaponFeature.doubleDuty.effects.doubleDuty.description', description: 'DAGGERHEART.CONFIG.WeaponFeature.doubleDuty.effects.doubleDuty.description',
img: 'icons/skills/melee/sword-shield-stylized-white.webp', img: 'icons/skills/melee/sword-shield-stylized-white.webp',
changes: [
{
key: 'system.bonuses.damage.primaryWeapon.bonus',
mode: 2,
value: '1'
}
],
system: { system: {
changes: [
{
key: 'system.bonuses.damage.primaryWeapon.bonus',
mode: 2,
value: '1'
}
],
rangeDependence: { rangeDependence: {
enabled: true, enabled: true,
range: 'melee', range: 'melee',
@ -1103,14 +1103,14 @@ export const weaponFeatures = {
name: 'DAGGERHEART.CONFIG.WeaponFeature.paired.effects.paired.name', name: 'DAGGERHEART.CONFIG.WeaponFeature.paired.effects.paired.name',
description: 'DAGGERHEART.CONFIG.WeaponFeature.paired.effects.paired.description', description: 'DAGGERHEART.CONFIG.WeaponFeature.paired.effects.paired.description',
img: 'icons/skills/melee/weapons-crossed-swords-yellow-teal.webp', img: 'icons/skills/melee/weapons-crossed-swords-yellow-teal.webp',
changes: [
{
key: 'system.bonuses.damage.primaryWeapon.bonus',
mode: 2,
value: 'ITEM.@system.tier + 1'
}
],
system: { system: {
changes: [
{
key: 'system.bonuses.damage.primaryWeapon.bonus',
mode: 2,
value: 'ITEM.@system.tier + 1'
}
],
rangeDependence: { rangeDependence: {
enabled: true, enabled: true,
range: 'melee', range: 'melee',

View file

@ -57,11 +57,6 @@ export default class BaseEffect extends foundry.data.ActiveEffectTypeDataModel {
description: new fields.HTMLField({ label: 'DAGGERHEART.GENERAL.description' }) description: new fields.HTMLField({ label: 'DAGGERHEART.GENERAL.description' })
}), }),
rangeDependence: new fields.SchemaField({ rangeDependence: new fields.SchemaField({
enabled: new fields.BooleanField({
required: true,
initial: false,
label: 'DAGGERHEART.GENERAL.enabled'
}),
type: new fields.StringField({ type: new fields.StringField({
required: true, required: true,
choices: CONFIG.DH.GENERAL.rangeInclusion, choices: CONFIG.DH.GENERAL.rangeInclusion,
@ -80,7 +75,7 @@ export default class BaseEffect extends foundry.data.ActiveEffectTypeDataModel {
initial: CONFIG.DH.GENERAL.range.melee.id, initial: CONFIG.DH.GENERAL.range.melee.id,
label: 'DAGGERHEART.GENERAL.range' label: 'DAGGERHEART.GENERAL.range'
}) })
}), }, { nullable: true, initial: null }),
stacking: new fields.SchemaField( stacking: new fields.SchemaField(
{ {
value: new fields.NumberField({ value: new fields.NumberField({
@ -146,14 +141,8 @@ export default class BaseEffect extends foundry.data.ActiveEffectTypeDataModel {
description: '', description: '',
transfer: options.transfer, transfer: options.transfer,
statuses: [], statuses: [],
changes: [],
system: { system: {
rangeDependence: { changes: []
enabled: false,
type: CONFIG.DH.GENERAL.rangeInclusion.withinRange.id,
target: CONFIG.DH.GENERAL.otherTargetTypes.hostile.id,
range: CONFIG.DH.GENERAL.range.melee.id
}
} }
}; };
} }
@ -185,4 +174,12 @@ export default class BaseEffect extends foundry.data.ActiveEffectTypeDataModel {
if (this.parent.actor && options.scrollingTextData) if (this.parent.actor && options.scrollingTextData)
this.parent.actor.queueScrollText(options.scrollingTextData); this.parent.actor.queueScrollText(options.scrollingTextData);
} }
static migrateData(source) {
if (source.rangeDependence?.enabled === false) {
source.rangeDependence = null;
}
return super.migrateData(source);
}
} }

View file

@ -403,12 +403,6 @@
"_id": "9PsnogEPsp1OOK64", "_id": "9PsnogEPsp1OOK64",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": {
"enabled": false,
"type": "withinRange",
"target": "hostile",
"range": "melee"
},
"changes": [], "changes": [],
"duration": { "duration": {
"type": "act" "type": "act"

View file

@ -322,32 +322,23 @@
"_id": "ia0NUIOxE3RHb45P", "_id": "ia0NUIOxE3RHb45P",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": { "changes": [
"enabled": false, {
"type": "withinRange", "key": "system.evasion",
"target": "hostile", "mode": 5,
"range": "melee" "value": "@system.evasion / 2",
} "priority": 10
}
]
}, },
"changes": [
{
"key": "system.evasion",
"mode": 5,
"value": "@system.evasion / 2",
"priority": 10
}
],
"disabled": false,
"duration": { "duration": {
"startTime": null, "value": null,
"combat": null, "units": "seconds",
"seconds": null, "expiry": null,
"rounds": null, "expired": false
"turns": null,
"startRound": null,
"startTurn": null
}, },
"description": "<p>When the Flickerfl y makes an attack, the targets Evasion is halved against the attack.</p>", "disabled": false,
"description": "<p>When the Flickerfly makes an attack, the targets Evasion is halved against the attack.</p>",
"tint": "#ffffff", "tint": "#ffffff",
"statuses": [], "statuses": [],
"sort": 0, "sort": 0,

View file

@ -491,12 +491,6 @@
"_id": "KGdf2eqcXkdigg0u", "_id": "KGdf2eqcXkdigg0u",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": {
"enabled": false,
"type": "withinRange",
"target": "hostile",
"range": "melee"
},
"changes": [], "changes": [],
"duration": { "duration": {
"type": "temporary", "type": "temporary",

View file

@ -325,21 +325,15 @@
"_id": "wGuxOLokMqdxVSOo", "_id": "wGuxOLokMqdxVSOo",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": { "changes": [
"enabled": false, {
"type": "withinRange", "key": "system.disadvantageSources",
"target": "hostile", "mode": 2,
"range": "melee" "value": "Agility Rolls",
} "priority": null
}
]
}, },
"changes": [
{
"key": "system.disadvantageSources",
"mode": 2,
"value": "Agility Rolls",
"priority": null
}
],
"disabled": false, "disabled": false,
"duration": { "duration": {
"startTime": null, "startTime": null,

View file

@ -472,14 +472,8 @@
"disabled": true, "disabled": true,
"_id": "bq8hTzQoCXmA3xad", "_id": "bq8hTzQoCXmA3xad",
"system": { "system": {
"rangeDependence": { "changes": []
"enabled": false,
"type": "withinRange",
"target": "hostile",
"range": "melee"
}
}, },
"changes": [],
"duration": { "duration": {
"startTime": 0, "startTime": 0,
"combat": null "combat": null

View file

@ -270,12 +270,6 @@
"_id": "2iBVUGHtGW3I9VIj", "_id": "2iBVUGHtGW3I9VIj",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": {
"enabled": false,
"type": "withinRange",
"target": "hostile",
"range": "melee"
},
"changes": [], "changes": [],
"duration": { "duration": {
"type": "temporary", "type": "temporary",
@ -341,23 +335,17 @@
"name": "Out of Nowhere", "name": "Out of Nowhere",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": { "changes": [
"enabled": false, {
"type": "withinRange", "key": "system.advantageSources",
"target": "hostile", "mode": 2,
"range": "melee" "value": "On attacks if they are Hidden.",
} "priority": null
}
]
}, },
"_id": "qT5nh7OcQ6aGdiWS", "_id": "qT5nh7OcQ6aGdiWS",
"img": "icons/magic/perception/shadow-stealth-eyes-purple.webp", "img": "icons/magic/perception/shadow-stealth-eyes-purple.webp",
"changes": [
{
"key": "system.advantageSources",
"mode": 2,
"value": "On attacks if they are Hidden.",
"priority": null
}
],
"disabled": false, "disabled": false,
"duration": { "duration": {
"startTime": null, "startTime": null,
@ -452,12 +440,6 @@
"_id": "yP4ot8VqS56RnxnE", "_id": "yP4ot8VqS56RnxnE",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": {
"enabled": false,
"type": "withinRange",
"target": "hostile",
"range": "melee"
},
"changes": [] "changes": []
}, },
"disabled": false, "disabled": false,

View file

@ -680,12 +680,6 @@
"_id": "9NQcCXMhjyBReJRd", "_id": "9NQcCXMhjyBReJRd",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": {
"enabled": false,
"type": "withinRange",
"target": "hostile",
"range": "melee"
},
"changes": [], "changes": [],
"duration": { "duration": {
"type": "temporary", "type": "temporary",
@ -927,12 +921,6 @@
"_id": "S7kJlhnV8Nexzi8l", "_id": "S7kJlhnV8Nexzi8l",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": {
"enabled": false,
"type": "withinRange",
"target": "hostile",
"range": "melee"
},
"changes": [], "changes": [],
"duration": { "duration": {
"type": "temporary", "type": "temporary",

View file

@ -363,12 +363,6 @@
"_id": "U50Ccm9emMqAxma6", "_id": "U50Ccm9emMqAxma6",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": {
"enabled": false,
"type": "withinRange",
"target": "hostile",
"range": "melee"
},
"changes": [], "changes": [],
"duration": { "duration": {
"type": "temporary", "type": "temporary",

View file

@ -371,12 +371,6 @@
"_id": "LmzztuktRkwOCy1a", "_id": "LmzztuktRkwOCy1a",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": {
"enabled": false,
"type": "withinRange",
"target": "hostile",
"range": "melee"
},
"changes": [], "changes": [],
"duration": { "duration": {
"type": "temporary", "type": "temporary",

View file

@ -447,12 +447,6 @@
"_id": "CjMrSdL6kgD8mKRQ", "_id": "CjMrSdL6kgD8mKRQ",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": {
"enabled": false,
"type": "withinRange",
"target": "hostile",
"range": "melee"
},
"changes": [], "changes": [],
"duration": { "duration": {
"type": "temporary" "type": "temporary"

View file

@ -232,23 +232,17 @@
"name": "Levitation", "name": "Levitation",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": { "changes": [
"enabled": false, {
"type": "withinRange", "key": "system.rules.conditionImmunities.restrained",
"target": "hostile", "mode": 5,
"range": "melee" "value": "1",
} "priority": null
}
]
}, },
"_id": "k6iaQVfMZhrpwYQj", "_id": "k6iaQVfMZhrpwYQj",
"img": "icons/magic/air/fog-gas-smoke-blue-gray.webp", "img": "icons/magic/air/fog-gas-smoke-blue-gray.webp",
"changes": [
{
"key": "system.rules.conditionImmunities.restrained",
"mode": 5,
"value": "1",
"priority": null
}
],
"disabled": false, "disabled": false,
"duration": { "duration": {
"startTime": null, "startTime": null,
@ -301,23 +295,17 @@
"name": "Wards", "name": "Wards",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": { "changes": [
"enabled": false, {
"type": "withinRange", "key": "system.resistance.magical.resistance",
"target": "hostile", "mode": 5,
"range": "melee" "value": "1",
} "priority": null
}
]
}, },
"_id": "4rj6PM0AGrrlbxSc", "_id": "4rj6PM0AGrrlbxSc",
"img": "icons/magic/defensive/barrier-shield-dome-blue-purple.webp", "img": "icons/magic/defensive/barrier-shield-dome-blue-purple.webp",
"changes": [
{
"key": "system.resistance.magical.resistance",
"mode": 5,
"value": "1",
"priority": null
}
],
"disabled": false, "disabled": false,
"duration": { "duration": {
"startTime": null, "startTime": null,

View file

@ -459,21 +459,15 @@
"_id": "xkDIZk9u2ipDHvOL", "_id": "xkDIZk9u2ipDHvOL",
"img": "icons/creatures/magical/construct-golem-stone-blue.webp", "img": "icons/creatures/magical/construct-golem-stone-blue.webp",
"system": { "system": {
"rangeDependence": { "changes": [
"enabled": false, {
"type": "withinRange", "key": "system.bonuses.damage.physical.bonus",
"target": "hostile", "mode": 2,
"range": "melee" "value": "10",
} "priority": null
}
]
}, },
"changes": [
{
"key": "system.bonuses.damage.physical.bonus",
"mode": 2,
"value": "10",
"priority": null
}
],
"disabled": true, "disabled": true,
"duration": { "duration": {
"startTime": null, "startTime": null,

View file

@ -315,12 +315,6 @@
"_id": "blcRqns0PHqiuPac", "_id": "blcRqns0PHqiuPac",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": {
"enabled": false,
"type": "withinRange",
"target": "hostile",
"range": "melee"
},
"changes": [], "changes": [],
"duration": { "duration": {
"type": "temporary", "type": "temporary",

View file

@ -331,12 +331,6 @@
"_id": "YNMhgBZW8ndrCjIp", "_id": "YNMhgBZW8ndrCjIp",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": {
"enabled": false,
"type": "withinRange",
"target": "hostile",
"range": "melee"
},
"changes": [], "changes": [],
"duration": { "duration": {
"type": "scene" "type": "scene"

View file

@ -415,12 +415,6 @@
"_id": "U9lWz1LgeAiK5L85", "_id": "U9lWz1LgeAiK5L85",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": {
"enabled": false,
"type": "withinRange",
"target": "hostile",
"range": "melee"
},
"changes": [ "changes": [
{ {
"key": "system.resistance.magical.resistance", "key": "system.resistance.magical.resistance",
@ -546,12 +540,6 @@
"_id": "lNH6srSPyEprXZ4o", "_id": "lNH6srSPyEprXZ4o",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": {
"enabled": false,
"type": "withinRange",
"target": "hostile",
"range": "melee"
},
"changes": [], "changes": [],
"duration": { "duration": {
"type": "temporary", "type": "temporary",

View file

@ -379,12 +379,6 @@
"_id": "LwWxRz7FTMA80VdA", "_id": "LwWxRz7FTMA80VdA",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": {
"enabled": false,
"type": "withinRange",
"target": "hostile",
"range": "melee"
},
"changes": [], "changes": [],
"duration": { "duration": {
"type": "temporary" "type": "temporary"

View file

@ -410,12 +410,6 @@
"_id": "F3E7fiz01AbF2kr5", "_id": "F3E7fiz01AbF2kr5",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": {
"enabled": false,
"type": "withinRange",
"target": "hostile",
"range": "melee"
},
"changes": [], "changes": [],
"duration": { "duration": {
"type": "temporary", "type": "temporary",

View file

@ -270,23 +270,17 @@
"name": "Numbers Must Go Up", "name": "Numbers Must Go Up",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": { "changes": [
"enabled": false, {
"type": "withinRange", "key": "system.bonuses.roll.attack.bonus",
"target": "hostile", "mode": 2,
"range": "melee" "value": "ITEM.@system.resource.value",
} "priority": 21
}
]
}, },
"_id": "iLeiOlUtWvYsgbDQ", "_id": "iLeiOlUtWvYsgbDQ",
"img": "icons/magic/control/fear-fright-monster-grin-red-orange.webp", "img": "icons/magic/control/fear-fright-monster-grin-red-orange.webp",
"changes": [
{
"key": "system.bonuses.roll.attack.bonus",
"mode": 2,
"value": "ITEM.@system.resource.value",
"priority": 21
}
],
"disabled": false, "disabled": false,
"duration": { "duration": {
"startTime": null, "startTime": null,

View file

@ -238,23 +238,17 @@
"name": "Depths Of Despair", "name": "Depths Of Despair",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": { "changes": [
"enabled": false, {
"type": "withinRange", "key": "system.rules.attack.damage.hpDamageMultiplier",
"target": "hostile", "mode": 5,
"range": "melee" "value": "2",
} "priority": null
}
]
}, },
"_id": "nofxm1vGZ2TmceA2", "_id": "nofxm1vGZ2TmceA2",
"img": "icons/magic/death/skull-horned-worn-fire-blue.webp", "img": "icons/magic/death/skull-horned-worn-fire-blue.webp",
"changes": [
{
"key": "system.rules.attack.damage.hpDamageMultiplier",
"mode": 5,
"value": "2",
"priority": null
}
],
"disabled": true, "disabled": true,
"duration": { "duration": {
"startTime": null, "startTime": null,
@ -356,12 +350,6 @@
"_id": "6WSx03mFbpbPWnOI", "_id": "6WSx03mFbpbPWnOI",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": {
"enabled": false,
"type": "withinRange",
"target": "hostile",
"range": "melee"
},
"changes": [ "changes": [
{ {
"key": "system.rules.dualityRoll.defaultHopeDice", "key": "system.rules.dualityRoll.defaultHopeDice",

View file

@ -319,12 +319,6 @@
"_id": "gFeHLGgeRoDdd3VG", "_id": "gFeHLGgeRoDdd3VG",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": {
"enabled": false,
"type": "withinRange",
"target": "hostile",
"range": "melee"
},
"changes": [ "changes": [
{ {
"key": "system.rules.dualityRoll.defaultFearDice", "key": "system.rules.dualityRoll.defaultFearDice",

View file

@ -440,14 +440,8 @@
"disabled": true, "disabled": true,
"_id": "dPZ7PwvTERjtG92P", "_id": "dPZ7PwvTERjtG92P",
"system": { "system": {
"rangeDependence": { "changes": []
"enabled": false,
"type": "withinRange",
"target": "hostile",
"range": "melee"
}
}, },
"changes": [],
"duration": { "duration": {
"startTime": 0, "startTime": 0,
"combat": null "combat": null

View file

@ -238,12 +238,6 @@
"name": "Flying", "name": "Flying",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": {
"enabled": false,
"type": "withinRange",
"target": "hostile",
"range": "melee"
},
"changes": [ "changes": [
{ {
"key": "system.difficulty", "key": "system.difficulty",

View file

@ -430,12 +430,6 @@
"_id": "YNKHEFQ4ucGr4Rmc", "_id": "YNKHEFQ4ucGr4Rmc",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": {
"enabled": false,
"type": "withinRange",
"target": "hostile",
"range": "melee"
},
"changes": [], "changes": [],
"duration": { "duration": {
"type": "temporary", "type": "temporary",

View file

@ -358,14 +358,8 @@
"disabled": true, "disabled": true,
"_id": "xoal60Ed3Ih7saBJ", "_id": "xoal60Ed3Ih7saBJ",
"system": { "system": {
"rangeDependence": { "changes": []
"enabled": false,
"type": "withinRange",
"target": "hostile",
"range": "melee"
}
}, },
"changes": [],
"duration": { "duration": {
"startTime": 0, "startTime": 0,
"combat": null "combat": null

View file

@ -240,23 +240,17 @@
"name": "Warped Fortitude", "name": "Warped Fortitude",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": { "changes": [
"enabled": false, {
"type": "withinRange", "key": "system.resistance.physical.resistance",
"target": "hostile", "mode": 5,
"range": "melee" "value": "1",
} "priority": null
}
]
}, },
"_id": "3QLH2EEtcUEZolFz", "_id": "3QLH2EEtcUEZolFz",
"img": "icons/creatures/magical/humanoid-silhouette-glowing-pink.webp", "img": "icons/creatures/magical/humanoid-silhouette-glowing-pink.webp",
"changes": [
{
"key": "system.resistance.physical.resistance",
"mode": 5,
"value": "1",
"priority": null
}
],
"disabled": false, "disabled": false,
"duration": { "duration": {
"startTime": null, "startTime": null,
@ -309,23 +303,17 @@
"name": "Overwhelm", "name": "Overwhelm",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": { "changes": [
"enabled": false, {
"type": "withinRange", "key": "system.rules.attack.damage.hpDamageMultiplier",
"target": "hostile", "mode": 5,
"range": "melee" "value": "2",
} "priority": null
}
]
}, },
"_id": "eGB9G0ljYCcdGbOx", "_id": "eGB9G0ljYCcdGbOx",
"img": "icons/skills/melee/strike-slashes-orange.webp", "img": "icons/skills/melee/strike-slashes-orange.webp",
"changes": [
{
"key": "system.rules.attack.damage.hpDamageMultiplier",
"mode": 5,
"value": "2",
"priority": null
}
],
"disabled": true, "disabled": true,
"duration": { "duration": {
"startTime": null, "startTime": null,

View file

@ -388,12 +388,6 @@
"_id": "Q99saHj6NOY2PSXf", "_id": "Q99saHj6NOY2PSXf",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": {
"enabled": false,
"type": "withinRange",
"target": "hostile",
"range": "melee"
},
"changes": [], "changes": [],
"duration": { "duration": {
"type": "temporary", "type": "temporary",
@ -596,12 +590,6 @@
"_id": "pWDg0MADoohKu40O", "_id": "pWDg0MADoohKu40O",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": {
"enabled": false,
"type": "withinRange",
"target": "hostile",
"range": "melee"
},
"changes": [], "changes": [],
"duration": { "duration": {
"type": "temporary", "type": "temporary",

View file

@ -656,12 +656,6 @@
"vulnerable" "vulnerable"
], ],
"system": { "system": {
"rangeDependence": {
"enabled": false,
"type": "withinRange",
"target": "hostile",
"range": "melee"
},
"changes": [], "changes": [],
"duration": { "duration": {
"description": "", "description": "",

View file

@ -347,12 +347,6 @@
"_id": "vb1sZCOLwDNLsr3j", "_id": "vb1sZCOLwDNLsr3j",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": {
"enabled": false,
"type": "withinRange",
"target": "hostile",
"range": "melee"
},
"changes": [], "changes": [],
"duration": { "duration": {
"type": "temporary", "type": "temporary",

View file

@ -265,23 +265,17 @@
"name": "Flying", "name": "Flying",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": { "changes": [
"enabled": false, {
"type": "withinRange", "key": "system.difficulty",
"target": "hostile", "mode": 2,
"range": "melee" "value": "3",
} "priority": null
}
]
}, },
"_id": "odAyKY0BSAkcO3Dd", "_id": "odAyKY0BSAkcO3Dd",
"img": "icons/creatures/birds/raptor-hawk-flying.webp", "img": "icons/creatures/birds/raptor-hawk-flying.webp",
"changes": [
{
"key": "system.difficulty",
"mode": 2,
"value": "3",
"priority": null
}
],
"disabled": false, "disabled": false,
"duration": { "duration": {
"startTime": null, "startTime": null,
@ -425,12 +419,6 @@
"_id": "m6qqQZxukDPVcGdQ", "_id": "m6qqQZxukDPVcGdQ",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": {
"enabled": false,
"type": "withinRange",
"target": "hostile",
"range": "melee"
},
"changes": [], "changes": [],
"duration": { "duration": {
"type": "act" "type": "act"
@ -579,14 +567,8 @@
"_id": "Sd34xywRqiF5w9sX", "_id": "Sd34xywRqiF5w9sX",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": { "changes": []
"enabled": false,
"type": "withinRange",
"target": "hostile",
"range": "melee"
}
}, },
"changes": [],
"disabled": false, "disabled": false,
"duration": { "duration": {
"startTime": null, "startTime": null,

View file

@ -269,21 +269,15 @@
"_id": "aATxfjeOzUYtKuU6", "_id": "aATxfjeOzUYtKuU6",
"img": "icons/commodities/biological/wing-insect-green.webp", "img": "icons/commodities/biological/wing-insect-green.webp",
"system": { "system": {
"rangeDependence": { "changes": [
"enabled": false, {
"type": "withinRange", "key": "system.difficulty",
"target": "hostile", "mode": 2,
"range": "melee" "value": "2",
} "priority": null
}
]
}, },
"changes": [
{
"key": "system.difficulty",
"mode": 2,
"value": "2",
"priority": null
}
],
"disabled": true, "disabled": true,
"duration": { "duration": {
"startTime": null, "startTime": null,
@ -385,14 +379,8 @@
"disabled": true, "disabled": true,
"_id": "dQgcYTz5vmV25Y6G", "_id": "dQgcYTz5vmV25Y6G",
"system": { "system": {
"rangeDependence": { "changes": []
"enabled": false,
"type": "withinRange",
"target": "hostile",
"range": "melee"
}
}, },
"changes": [],
"duration": { "duration": {
"startTime": 0, "startTime": 0,
"combat": null "combat": null

View file

@ -433,12 +433,6 @@
"_id": "oILkLJlGNZl7KI1R", "_id": "oILkLJlGNZl7KI1R",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": {
"enabled": false,
"type": "withinRange",
"target": "hostile",
"range": "melee"
},
"changes": [], "changes": [],
"duration": { "duration": {
"type": "shortRest" "type": "shortRest"

View file

@ -597,12 +597,6 @@
"_id": "Mchd23xNQ4nSWw9X", "_id": "Mchd23xNQ4nSWw9X",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": {
"enabled": false,
"type": "withinRange",
"target": "hostile",
"range": "melee"
},
"changes": [] "changes": []
}, },
"disabled": false, "disabled": false,

View file

@ -330,12 +330,6 @@
"_id": "bYBrgiSwHwYfQyjn", "_id": "bYBrgiSwHwYfQyjn",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": {
"enabled": false,
"type": "withinRange",
"target": "hostile",
"range": "melee"
},
"changes": [ "changes": [
{ {
"key": "system.rules.conditionImmunities.hidden", "key": "system.rules.conditionImmunities.hidden",

View file

@ -340,23 +340,17 @@
"name": "Immovable Object", "name": "Immovable Object",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": { "changes": [
"enabled": false, {
"type": "withinRange", "key": "system.resistance.physical.reduction",
"target": "hostile", "mode": 2,
"range": "melee" "value": "7",
} "priority": null
}
]
}, },
"_id": "7V7qMq9in3AArwiM", "_id": "7V7qMq9in3AArwiM",
"img": "icons/magic/defensive/shield-barrier-glowing-triangle-green.webp", "img": "icons/magic/defensive/shield-barrier-glowing-triangle-green.webp",
"changes": [
{
"key": "system.resistance.physical.reduction",
"mode": 2,
"value": "7",
"priority": null
}
],
"disabled": false, "disabled": false,
"duration": { "duration": {
"startTime": null, "startTime": null,
@ -510,12 +504,6 @@
"_id": "38MUzfbH64EMLVse", "_id": "38MUzfbH64EMLVse",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": {
"enabled": false,
"type": "withinRange",
"target": "hostile",
"range": "melee"
},
"changes": [], "changes": [],
"duration": { "duration": {
"type": "temporary", "type": "temporary",

View file

@ -323,21 +323,15 @@
"_id": "WYqjt1tVqPEdVV5l", "_id": "WYqjt1tVqPEdVV5l",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": { "changes": [
"enabled": false, {
"type": "withinRange", "key": "system.disadvantageSources",
"target": "hostile", "mode": 2,
"range": "melee" "value": "Your next action",
} "priority": null
}
]
}, },
"changes": [
{
"key": "system.disadvantageSources",
"mode": 2,
"value": "Your next action",
"priority": null
}
],
"disabled": false, "disabled": false,
"duration": { "duration": {
"startTime": null, "startTime": null,
@ -462,12 +456,6 @@
"_id": "X8NF2OB23mSpDvlx", "_id": "X8NF2OB23mSpDvlx",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": {
"enabled": false,
"type": "withinRange",
"target": "hostile",
"range": "melee"
},
"changes": [], "changes": [],
"duration": { "duration": {
"type": "temporary", "type": "temporary",

View file

@ -460,12 +460,6 @@
"_id": "yk5kR5OVLCgDWfgY", "_id": "yk5kR5OVLCgDWfgY",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": {
"enabled": false,
"type": "withinRange",
"target": "hostile",
"range": "melee"
},
"changes": [], "changes": [],
"duration": { "duration": {
"type": "temporary", "type": "temporary",

View file

@ -234,23 +234,17 @@
"name": "Punish the Guilty", "name": "Punish the Guilty",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": { "changes": [
"enabled": false, {
"type": "withinRange", "key": "system.rules.attack.damage.hpDamageMultiplier",
"target": "hostile", "mode": 5,
"range": "melee" "value": "2",
} "priority": null
}
]
}, },
"_id": "ID85zoIa5GfhNMti", "_id": "ID85zoIa5GfhNMti",
"img": "icons/magic/control/buff-flight-wings-runes-red-yellow.webp", "img": "icons/magic/control/buff-flight-wings-runes-red-yellow.webp",
"changes": [
{
"key": "system.rules.attack.damage.hpDamageMultiplier",
"mode": 5,
"value": "2",
"priority": null
}
],
"disabled": true, "disabled": true,
"duration": { "duration": {
"startTime": null, "startTime": null,

View file

@ -386,12 +386,6 @@
"_id": "O8G0oOf9f3qzNOAT", "_id": "O8G0oOf9f3qzNOAT",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": {
"enabled": false,
"type": "withinRange",
"target": "hostile",
"range": "melee"
},
"changes": [], "changes": [],
"duration": { "duration": {
"type": "temporary", "type": "temporary",

View file

@ -429,12 +429,6 @@
"_id": "EwZ8owroJxFpg81e", "_id": "EwZ8owroJxFpg81e",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": {
"enabled": false,
"type": "withinRange",
"target": "hostile",
"range": "melee"
},
"changes": [], "changes": [],
"duration": { "duration": {
"type": "temporary", "type": "temporary",

View file

@ -510,12 +510,6 @@
"_id": "iBJ3YhEkVsGKEIVk", "_id": "iBJ3YhEkVsGKEIVk",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": {
"enabled": false,
"type": "withinRange",
"target": "hostile",
"range": "melee"
},
"changes": [ "changes": [
{ {
"key": "system.resistance.magical.immunity", "key": "system.resistance.magical.immunity",

View file

@ -273,12 +273,6 @@
"_id": "ihy3kvEGSOEKdNfT", "_id": "ihy3kvEGSOEKdNfT",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": {
"enabled": false,
"type": "withinRange",
"target": "hostile",
"range": "melee"
},
"changes": [], "changes": [],
"duration": { "duration": {
"type": "temporary" "type": "temporary"

View file

@ -329,12 +329,6 @@
"_id": "d7sB1Qa1kJMnglqu", "_id": "d7sB1Qa1kJMnglqu",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": {
"enabled": false,
"type": "withinRange",
"target": "hostile",
"range": "melee"
},
"changes": [ "changes": [
{ {
"key": "system.rules.attack.damage.hpDamageTakenMultiplier", "key": "system.rules.attack.damage.hpDamageTakenMultiplier",

View file

@ -375,21 +375,15 @@
"_id": "w5VTwlHmUjl8XCQ4", "_id": "w5VTwlHmUjl8XCQ4",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": { "changes": [
"enabled": false, {
"type": "withinRange", "key": "system.advantageSources",
"target": "hostile", "mode": 2,
"range": "melee" "value": "Attacks made while Hidden",
} "priority": null
}
]
}, },
"changes": [
{
"key": "system.advantageSources",
"mode": 2,
"value": "Attacks made while Hidden",
"priority": null
}
],
"disabled": false, "disabled": false,
"duration": { "duration": {
"startTime": null, "startTime": null,

View file

@ -346,21 +346,15 @@
"_id": "pZUEkMkCus4U7h8W", "_id": "pZUEkMkCus4U7h8W",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": { "changes": [
"enabled": false, {
"type": "withinRange", "key": "system.evasion",
"target": "hostile", "mode": 5,
"range": "melee" "value": "@system.evasion / 2",
} "priority": 10
}
]
}, },
"changes": [
{
"key": "system.evasion",
"mode": 5,
"value": "@system.evasion / 2",
"priority": 10
}
],
"disabled": false, "disabled": false,
"duration": { "duration": {
"startTime": null, "startTime": null,

View file

@ -250,23 +250,17 @@
"name": "Chevalier", "name": "Chevalier",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": { "changes": [
"enabled": false, {
"type": "withinRange", "key": "system.difficulty",
"target": "hostile", "mode": 2,
"range": "melee" "value": "2",
} "priority": null
}
]
}, },
"_id": "w8wLcSsTiTU3mS7e", "_id": "w8wLcSsTiTU3mS7e",
"img": "icons/environment/people/cavalry-heavy.webp", "img": "icons/environment/people/cavalry-heavy.webp",
"changes": [
{
"key": "system.difficulty",
"mode": 2,
"value": "2",
"priority": null
}
],
"disabled": false, "disabled": false,
"duration": { "duration": {
"startTime": null, "startTime": null,
@ -319,23 +313,17 @@
"name": "Heavily Armored", "name": "Heavily Armored",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": { "changes": [
"enabled": false, {
"type": "withinRange", "key": "system.resistance.physical.reduction",
"target": "hostile", "mode": 2,
"range": "melee" "value": "3",
} "priority": null
}
]
}, },
"_id": "xZjvrNRRjskY3n3j", "_id": "xZjvrNRRjskY3n3j",
"img": "icons/equipment/chest/breastplate-cuirass-steel-grey.webp", "img": "icons/equipment/chest/breastplate-cuirass-steel-grey.webp",
"changes": [
{
"key": "system.resistance.physical.reduction",
"mode": 2,
"value": "3",
"priority": null
}
],
"disabled": false, "disabled": false,
"duration": { "duration": {
"startTime": null, "startTime": null,

View file

@ -378,12 +378,6 @@
"_id": "Xes6ZIE01CCN67KF", "_id": "Xes6ZIE01CCN67KF",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": {
"enabled": false,
"type": "withinRange",
"target": "hostile",
"range": "melee"
},
"changes": [], "changes": [],
"duration": { "duration": {
"type": "temporary", "type": "temporary",

View file

@ -402,12 +402,6 @@
"_id": "zMut1PRphlwE0xOa", "_id": "zMut1PRphlwE0xOa",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": {
"enabled": false,
"type": "withinRange",
"target": "hostile",
"range": "melee"
},
"changes": [], "changes": [],
"duration": { "duration": {
"type": "temporary", "type": "temporary",

View file

@ -235,21 +235,15 @@
"_id": "vwc93gtzFoFZj4XT", "_id": "vwc93gtzFoFZj4XT",
"img": "icons/magic/defensive/shield-barrier-flaming-diamond-blue.webp", "img": "icons/magic/defensive/shield-barrier-flaming-diamond-blue.webp",
"system": { "system": {
"rangeDependence": { "changes": [
"enabled": false, {
"type": "withinRange", "key": "system.resistance.magical.resistance",
"target": "hostile", "mode": 2,
"range": "melee" "value": "1",
} "priority": null
}
]
}, },
"changes": [
{
"key": "system.resistance.magical.resistance",
"mode": 2,
"value": "1",
"priority": null
}
],
"disabled": false, "disabled": false,
"duration": { "duration": {
"startTime": null, "startTime": null,
@ -383,12 +377,6 @@
"_id": "KIyV2eXDmmymXY5y", "_id": "KIyV2eXDmmymXY5y",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": {
"enabled": false,
"type": "withinRange",
"target": "hostile",
"range": "melee"
},
"changes": [], "changes": [],
"duration": { "duration": {
"type": "shortRest" "type": "shortRest"

View file

@ -447,12 +447,6 @@
"_id": "YznseQP43jNrk07h", "_id": "YznseQP43jNrk07h",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": {
"enabled": false,
"type": "withinRange",
"target": "hostile",
"range": "melee"
},
"changes": [], "changes": [],
"duration": { "duration": {
"type": "scene" "type": "scene"

View file

@ -394,12 +394,6 @@
"_id": "3PY5KIG6d3dr3dty", "_id": "3PY5KIG6d3dr3dty",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": {
"enabled": false,
"type": "withinRange",
"target": "any",
"range": "self"
},
"changes": [ "changes": [
{ {
"key": "system.resistance.physical.resistance", "key": "system.resistance.physical.resistance",

View file

@ -313,21 +313,15 @@
"_id": "rpkjVdlJYI5dB99B", "_id": "rpkjVdlJYI5dB99B",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": { "changes": [
"enabled": false, {
"type": "withinRange", "key": "system.disadvantageSources",
"target": "hostile", "mode": 2,
"range": "melee" "value": "On your next action roll.",
} "priority": null
}
]
}, },
"changes": [
{
"key": "system.disadvantageSources",
"mode": 2,
"value": "On your next action roll.",
"priority": null
}
],
"disabled": false, "disabled": false,
"duration": { "duration": {
"startTime": null, "startTime": null,
@ -445,12 +439,6 @@
"_id": "edEZER9ImWicMwRb", "_id": "edEZER9ImWicMwRb",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": {
"enabled": false,
"type": "withinRange",
"target": "hostile",
"range": "melee"
},
"changes": [], "changes": [],
"duration": { "duration": {
"type": "scene" "type": "scene"

View file

@ -446,12 +446,6 @@
"_id": "Q5eeh0B6qaXFS1Ck", "_id": "Q5eeh0B6qaXFS1Ck",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": {
"enabled": false,
"type": "withinRange",
"target": "hostile",
"range": "melee"
},
"changes": [], "changes": [],
"duration": { "duration": {
"type": "shortRest", "type": "shortRest",

View file

@ -337,14 +337,8 @@
"disabled": true, "disabled": true,
"_id": "OU05YZwFQffawtna", "_id": "OU05YZwFQffawtna",
"system": { "system": {
"rangeDependence": { "changes": []
"enabled": false,
"type": "withinRange",
"target": "hostile",
"range": "melee"
}
}, },
"changes": [],
"duration": { "duration": {
"startTime": 0, "startTime": 0,
"combat": null "combat": null

View file

@ -404,12 +404,6 @@
"_id": "9UBLk9M87VIUziAQ", "_id": "9UBLk9M87VIUziAQ",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": {
"enabled": false,
"type": "withinRange",
"target": "hostile",
"range": "melee"
},
"changes": [], "changes": [],
"duration": { "duration": {
"type": "temporary", "type": "temporary",

View file

@ -411,12 +411,6 @@
"_id": "xrm5786ckKbMYHjn", "_id": "xrm5786ckKbMYHjn",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": {
"enabled": false,
"type": "withinRange",
"target": "hostile",
"range": "melee"
},
"changes": [], "changes": [],
"duration": { "duration": {
"type": "temporary", "type": "temporary",

View file

@ -235,23 +235,17 @@
"name": "Opportunist", "name": "Opportunist",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": { "changes": [
"enabled": false, {
"type": "withinRange", "key": "system.rules.attack.damage.hpDamageMultiplier",
"target": "hostile", "mode": 5,
"range": "melee" "value": "2",
} "priority": null
}
]
}, },
"_id": "O03vYbyNLO3YPZGo", "_id": "O03vYbyNLO3YPZGo",
"img": "icons/skills/targeting/crosshair-triple-strike-orange.webp", "img": "icons/skills/targeting/crosshair-triple-strike-orange.webp",
"changes": [
{
"key": "system.rules.attack.damage.hpDamageMultiplier",
"mode": 5,
"value": "2",
"priority": null
}
],
"disabled": true, "disabled": true,
"duration": { "duration": {
"startTime": null, "startTime": null,

View file

@ -237,21 +237,15 @@
"_id": "zTepuF1Z5OObQdSi", "_id": "zTepuF1Z5OObQdSi",
"img": "icons/magic/death/bones-crossed-orange.webp", "img": "icons/magic/death/bones-crossed-orange.webp",
"system": { "system": {
"rangeDependence": { "changes": [
"enabled": false, {
"type": "withinRange", "key": "system.resistance.physical.resistance",
"target": "hostile", "mode": 5,
"range": "melee" "value": "1",
} "priority": null
}
]
}, },
"changes": [
{
"key": "system.resistance.physical.resistance",
"mode": 5,
"value": "1",
"priority": null
}
],
"disabled": false, "disabled": false,
"duration": { "duration": {
"startTime": null, "startTime": null,

View file

@ -270,23 +270,17 @@
"name": "Ghost", "name": "Ghost",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": { "changes": [
"enabled": false, {
"type": "withinRange", "key": "system.resistance.physical.resistance",
"target": "hostile", "mode": 5,
"range": "melee" "value": "1",
} "priority": null
}
]
}, },
"_id": "xNkkl7nwKFkiB9Rv", "_id": "xNkkl7nwKFkiB9Rv",
"img": "icons/magic/death/undead-ghost-scream-teal.webp", "img": "icons/magic/death/undead-ghost-scream-teal.webp",
"changes": [
{
"key": "system.resistance.physical.resistance",
"mode": 5,
"value": "1",
"priority": null
}
],
"disabled": false, "disabled": false,
"duration": { "duration": {
"startTime": null, "startTime": null,

View file

@ -270,23 +270,17 @@
"name": "Ghost", "name": "Ghost",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": { "changes": [
"enabled": false, {
"type": "withinRange", "key": "system.resistance.physical.resistance",
"target": "hostile", "mode": 5,
"range": "melee" "value": "1",
} "priority": null
}
]
}, },
"_id": "kZhvwDvfcYQ10reO", "_id": "kZhvwDvfcYQ10reO",
"img": "icons/magic/death/undead-ghost-scream-teal.webp", "img": "icons/magic/death/undead-ghost-scream-teal.webp",
"changes": [
{
"key": "system.resistance.physical.resistance",
"mode": 5,
"value": "1",
"priority": null
}
],
"disabled": false, "disabled": false,
"duration": { "duration": {
"startTime": null, "startTime": null,

View file

@ -270,23 +270,17 @@
"name": "Ghost", "name": "Ghost",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": { "changes": [
"enabled": false, {
"type": "withinRange", "key": "system.resistance.physical.resistance",
"target": "hostile", "mode": 5,
"range": "melee" "value": "1",
} "priority": null
}
]
}, },
"_id": "QDXyAMk33kJGe6hU", "_id": "QDXyAMk33kJGe6hU",
"img": "icons/magic/death/undead-ghost-scream-teal.webp", "img": "icons/magic/death/undead-ghost-scream-teal.webp",
"changes": [
{
"key": "system.resistance.physical.resistance",
"mode": 5,
"value": "1",
"priority": null
}
],
"disabled": false, "disabled": false,
"duration": { "duration": {
"startTime": null, "startTime": null,

View file

@ -352,12 +352,6 @@
"_id": "6UgMuuJ8ZygbCsDh", "_id": "6UgMuuJ8ZygbCsDh",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": {
"enabled": false,
"type": "withinRange",
"target": "hostile",
"range": "melee"
},
"changes": [], "changes": [],
"duration": { "duration": {
"type": "temporary" "type": "temporary"

View file

@ -278,14 +278,8 @@
"disabled": true, "disabled": true,
"_id": "FOV6AzngiR0PZyuN", "_id": "FOV6AzngiR0PZyuN",
"system": { "system": {
"rangeDependence": { "changes": []
"enabled": false,
"type": "withinRange",
"target": "hostile",
"range": "melee"
}
}, },
"changes": [],
"duration": { "duration": {
"startTime": 0, "startTime": 0,
"combat": null "combat": null

View file

@ -489,14 +489,8 @@
"_id": "xyXPmPIOtqXYF1TJ", "_id": "xyXPmPIOtqXYF1TJ",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": { "changes": []
"enabled": false,
"type": "withinRange",
"target": "hostile",
"range": "melee"
}
}, },
"changes": [],
"disabled": false, "disabled": false,
"duration": { "duration": {
"startTime": null, "startTime": null,

View file

@ -421,14 +421,8 @@
"_id": "PdkhaTw2j15KJwBf", "_id": "PdkhaTw2j15KJwBf",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": { "changes": []
"enabled": false,
"type": "withinRange",
"target": "hostile",
"range": "melee"
}
}, },
"changes": [],
"disabled": false, "disabled": false,
"duration": { "duration": {
"startTime": null, "startTime": null,
@ -473,14 +467,8 @@
"disabled": true, "disabled": true,
"_id": "ki4vrzrFcEYtGeJu", "_id": "ki4vrzrFcEYtGeJu",
"system": { "system": {
"rangeDependence": { "changes": []
"enabled": false,
"type": "withinRange",
"target": "hostile",
"range": "melee"
}
}, },
"changes": [],
"duration": { "duration": {
"startTime": 0, "startTime": 0,
"combat": null "combat": null

View file

@ -323,12 +323,6 @@
"_id": "6TZlstmWJPbeoL7i", "_id": "6TZlstmWJPbeoL7i",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": {
"enabled": false,
"type": "withinRange",
"target": "hostile",
"range": "melee"
},
"changes": [], "changes": [],
"duration": { "duration": {
"type": "temporary", "type": "temporary",

View file

@ -297,21 +297,15 @@
"_id": "Fo5bLYlmYGtQFAGg", "_id": "Fo5bLYlmYGtQFAGg",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": { "changes": [
"enabled": false, {
"type": "withinRange", "key": "system.disadvantageSources",
"target": "hostile", "mode": 2,
"range": "melee" "value": "On attack rolls while you're within Very Close range of the Sentinel",
} "priority": null
}
]
}, },
"changes": [
{
"key": "system.disadvantageSources",
"mode": 2,
"value": "On attack rolls while you're within Very Close range of the Sentinel",
"priority": null
}
],
"disabled": false, "disabled": false,
"duration": { "duration": {
"startTime": null, "startTime": null,

View file

@ -302,21 +302,15 @@
"_id": "yQ85C0JHRG1pwu8a", "_id": "yQ85C0JHRG1pwu8a",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": { "changes": [
"enabled": false, {
"type": "withinRange", "key": "system.evasion",
"target": "hostile", "mode": 5,
"range": "melee" "value": "@system.evasion / 2",
} "priority": 10
}
]
}, },
"changes": [
{
"key": "system.evasion",
"mode": 5,
"value": "@system.evasion / 2",
"priority": 10
}
],
"disabled": false, "disabled": false,
"duration": { "duration": {
"startTime": null, "startTime": null,

View file

@ -376,23 +376,17 @@
"name": "Injured Wings", "name": "Injured Wings",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": { "changes": [
"enabled": false, {
"type": "withinRange", "key": "system.difficulty",
"target": "hostile", "mode": 2,
"range": "melee" "value": "1",
} "priority": null
}
]
}, },
"_id": "zCi90lgFAaA7yrJG", "_id": "zCi90lgFAaA7yrJG",
"img": "icons/commodities/biological/wing-green.webp", "img": "icons/commodities/biological/wing-green.webp",
"changes": [
{
"key": "system.difficulty",
"mode": 2,
"value": "1",
"priority": null
}
],
"disabled": false, "disabled": false,
"duration": { "duration": {
"startTime": null, "startTime": null,
@ -873,12 +867,6 @@
"_id": "YUjdwrEZ4zn7WR9X", "_id": "YUjdwrEZ4zn7WR9X",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": {
"enabled": false,
"type": "withinRange",
"target": "hostile",
"range": "melee"
},
"changes": [], "changes": [],
"duration": { "duration": {
"type": "temporary", "type": "temporary",

View file

@ -734,12 +734,6 @@
"_id": "xmzA6NC9zrulhzQs", "_id": "xmzA6NC9zrulhzQs",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": {
"enabled": false,
"type": "withinRange",
"target": "hostile",
"range": "melee"
},
"changes": [], "changes": [],
"duration": { "duration": {
"type": "temporary", "type": "temporary",

View file

@ -321,23 +321,17 @@
"name": "Flying", "name": "Flying",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": { "changes": [
"enabled": false, {
"type": "withinRange", "key": "system.difficulty",
"target": "hostile", "mode": 2,
"range": "melee" "value": "3",
} "priority": null
}
]
}, },
"_id": "8o8yG73ZfrZ3hb5i", "_id": "8o8yG73ZfrZ3hb5i",
"img": "icons/commodities/biological/wing-green.webp", "img": "icons/commodities/biological/wing-green.webp",
"changes": [
{
"key": "system.difficulty",
"mode": 2,
"value": "3",
"priority": null
}
],
"disabled": false, "disabled": false,
"duration": { "duration": {
"startTime": null, "startTime": null,
@ -390,23 +384,17 @@
"name": "Obsidian Scales", "name": "Obsidian Scales",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": { "changes": [
"enabled": false, {
"type": "withinRange", "key": "system.resistance.physical.resistance",
"target": "hostile", "mode": 5,
"range": "melee" "value": "1",
} "priority": null
}
]
}, },
"_id": "Jr9SlkRnkroulYhy", "_id": "Jr9SlkRnkroulYhy",
"img": "icons/commodities/leather/scale-chitin-grey.webp", "img": "icons/commodities/leather/scale-chitin-grey.webp",
"changes": [
{
"key": "system.resistance.physical.resistance",
"mode": 5,
"value": "1",
"priority": null
}
],
"disabled": false, "disabled": false,
"duration": { "duration": {
"startTime": null, "startTime": null,
@ -551,12 +539,6 @@
"_id": "qtIaAZDW8QsjILgb", "_id": "qtIaAZDW8QsjILgb",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": {
"enabled": false,
"type": "withinRange",
"target": "hostile",
"range": "melee"
},
"changes": [] "changes": []
}, },
"disabled": false, "disabled": false,

View file

@ -319,12 +319,6 @@
"_id": "j2jYmYbtWXvq32yX", "_id": "j2jYmYbtWXvq32yX",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": {
"enabled": false,
"type": "withinRange",
"target": "hostile",
"range": "melee"
},
"changes": [], "changes": [],
"duration": { "duration": {
"type": "temporary", "type": "temporary",

View file

@ -362,12 +362,6 @@
"_id": "k8LzBWRZo6VPqvpH", "_id": "k8LzBWRZo6VPqvpH",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": {
"enabled": false,
"type": "withinRange",
"target": "hostile",
"range": "melee"
},
"changes": [], "changes": [],
"duration": { "duration": {
"type": "temporary", "type": "temporary",

View file

@ -500,12 +500,6 @@
"_id": "g9bUvmw3jet6T99e", "_id": "g9bUvmw3jet6T99e",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": {
"enabled": false,
"type": "withinRange",
"target": "hostile",
"range": "melee"
},
"changes": [] "changes": []
}, },
"disabled": false, "disabled": false,
@ -634,12 +628,6 @@
"_id": "40cFHuNdEvbUZ9rs", "_id": "40cFHuNdEvbUZ9rs",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": {
"enabled": false,
"type": "withinRange",
"target": "hostile",
"range": "melee"
},
"changes": [], "changes": [],
"duration": { "duration": {
"type": "temporary", "type": "temporary",
@ -768,12 +756,6 @@
"_id": "1JlRxa07i8T1a9x6", "_id": "1JlRxa07i8T1a9x6",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": {
"enabled": false,
"type": "withinRange",
"target": "hostile",
"range": "melee"
},
"changes": [ "changes": [
{ {
"key": "system.disadvantageSources", "key": "system.disadvantageSources",

View file

@ -259,23 +259,17 @@
"name": "Unyielding", "name": "Unyielding",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": { "changes": [
"enabled": false, {
"type": "withinRange", "key": "system.resistance.physical.resistance",
"target": "hostile", "mode": 5,
"range": "melee" "value": "1",
} "priority": null
}
]
}, },
"_id": "D1lCoe9WVr6vYuD9", "_id": "D1lCoe9WVr6vYuD9",
"img": "icons/magic/defensive/shield-barrier-blue.webp", "img": "icons/magic/defensive/shield-barrier-blue.webp",
"changes": [
{
"key": "system.resistance.physical.resistance",
"mode": 5,
"value": "1",
"priority": null
}
],
"disabled": false, "disabled": false,
"duration": { "duration": {
"startTime": null, "startTime": null,
@ -434,14 +428,8 @@
"disabled": true, "disabled": true,
"_id": "9D6SteWlhbfMPhvt", "_id": "9D6SteWlhbfMPhvt",
"system": { "system": {
"rangeDependence": { "changes": []
"enabled": false,
"type": "withinRange",
"target": "hostile",
"range": "melee"
}
}, },
"changes": [],
"duration": { "duration": {
"startTime": 0, "startTime": 0,
"combat": null "combat": null

View file

@ -309,14 +309,8 @@
"disabled": true, "disabled": true,
"_id": "aWWZTlNS9zYoUay7", "_id": "aWWZTlNS9zYoUay7",
"system": { "system": {
"rangeDependence": { "changes": []
"enabled": false,
"type": "withinRange",
"target": "hostile",
"range": "melee"
}
}, },
"changes": [],
"duration": { "duration": {
"startTime": 0, "startTime": 0,
"combat": null "combat": null

View file

@ -24,27 +24,21 @@
"_id": "LqQvZJJLNMnFkt1D", "_id": "LqQvZJJLNMnFkt1D",
"img": "icons/magic/perception/orb-crystal-ball-scrying-blue.webp", "img": "icons/magic/perception/orb-crystal-ball-scrying-blue.webp",
"system": { "system": {
"rangeDependence": { "changes": [
"enabled": false, {
"type": "withinRange", "key": "system.bonuses.rest.shortRest.shortMoves",
"target": "hostile", "mode": 2,
"range": "melee" "value": "1",
} "priority": null
},
{
"key": "system.bonuses.rest.longRest.longMoves",
"mode": 2,
"value": "1",
"priority": null
}
]
}, },
"changes": [
{
"key": "system.bonuses.rest.shortRest.shortMoves",
"mode": 2,
"value": "1",
"priority": null
},
{
"key": "system.bonuses.rest.longRest.longMoves",
"mode": 2,
"value": "1",
"priority": null
}
],
"disabled": false, "disabled": false,
"duration": { "duration": {
"startTime": null, "startTime": null,

View file

@ -24,21 +24,15 @@
"_id": "2Gd6iHQX521aAZqC", "_id": "2Gd6iHQX521aAZqC",
"img": "icons/magic/control/fear-fright-monster-red.webp", "img": "icons/magic/control/fear-fright-monster-red.webp",
"system": { "system": {
"rangeDependence": { "changes": [
"enabled": false, {
"type": "withinRange", "key": "system.advantageSources",
"target": "hostile", "mode": 2,
"range": "melee" "value": "Dread Visage: Rolls to intimidate hostile creatures",
} "priority": null
}
]
}, },
"changes": [
{
"key": "system.advantageSources",
"mode": 2,
"value": "Dread Visage: Rolls to intimidate hostile creatures",
"priority": null
}
],
"disabled": false, "disabled": false,
"duration": { "duration": {
"startTime": null, "startTime": null,

View file

@ -24,27 +24,21 @@
"_id": "EEryWN2nE33ppGHi", "_id": "EEryWN2nE33ppGHi",
"img": "icons/magic/time/clock-stopwatch-white-blue.webp", "img": "icons/magic/time/clock-stopwatch-white-blue.webp",
"system": { "system": {
"rangeDependence": { "changes": [
"enabled": false, {
"type": "withinRange", "key": "system.bonuses.rest.shortRest.longMoves",
"target": "hostile", "mode": 2,
"range": "melee" "value": "1",
} "priority": null
},
{
"key": "system.bonuses.rest.shortRest.shortMoves",
"mode": 2,
"value": "-1",
"priority": null
}
]
}, },
"changes": [
{
"key": "system.bonuses.rest.shortRest.longMoves",
"mode": 2,
"value": "1",
"priority": null
},
{
"key": "system.bonuses.rest.shortRest.shortMoves",
"mode": 2,
"value": "-1",
"priority": null
}
],
"disabled": false, "disabled": false,
"duration": { "duration": {
"startTime": null, "startTime": null,

View file

@ -24,21 +24,15 @@
"_id": "db8W2Q0Qty84XV0x", "_id": "db8W2Q0Qty84XV0x",
"img": "icons/magic/control/buff-strength-muscle-damage.webp", "img": "icons/magic/control/buff-strength-muscle-damage.webp",
"system": { "system": {
"rangeDependence": { "changes": [
"enabled": false, {
"type": "withinRange", "key": "system.resources.hitPoints.max",
"target": "hostile", "mode": 2,
"range": "melee" "value": "1",
} "priority": null
}
]
}, },
"changes": [
{
"key": "system.resources.hitPoints.max",
"mode": 2,
"value": "1",
"priority": null
}
],
"disabled": false, "disabled": false,
"duration": { "duration": {
"startTime": null, "startTime": null,

View file

@ -24,21 +24,15 @@
"_id": "Xl3TsKUJcl6vi1ly", "_id": "Xl3TsKUJcl6vi1ly",
"img": "icons/magic/control/buff-flight-wings-runes-purple-orange.webp", "img": "icons/magic/control/buff-flight-wings-runes-purple-orange.webp",
"system": { "system": {
"rangeDependence": { "changes": [
"enabled": false, {
"type": "withinRange", "key": "system.resources.stress.max",
"target": "hostile", "mode": 2,
"range": "melee" "value": "1",
} "priority": null
}
]
}, },
"changes": [
{
"key": "system.resources.stress.max",
"mode": 2,
"value": "1",
"priority": null
}
],
"disabled": false, "disabled": false,
"duration": { "duration": {
"startTime": null, "startTime": null,

View file

@ -24,21 +24,15 @@
"_id": "HQeQH9gUfrjlWWcg", "_id": "HQeQH9gUfrjlWWcg",
"img": "icons/magic/nature/root-vine-barrier-wall-brown.webp", "img": "icons/magic/nature/root-vine-barrier-wall-brown.webp",
"system": { "system": {
"rangeDependence": { "changes": [
"enabled": false, {
"type": "withinRange", "key": "system.advantageSources",
"target": "hostile", "mode": 2,
"range": "melee" "value": "Agility Rolls that involve balancing and climbing",
} "priority": null
}
]
}, },
"changes": [
{
"key": "system.advantageSources",
"mode": 2,
"value": "Agility Rolls that involve balancing and climbing",
"priority": null
}
],
"disabled": false, "disabled": false,
"duration": { "duration": {
"startTime": null, "startTime": null,

View file

@ -24,21 +24,15 @@
"_id": "zaxVYqKzUYDJ3SDq", "_id": "zaxVYqKzUYDJ3SDq",
"img": "icons/skills/movement/arrows-up-trio-red.webp", "img": "icons/skills/movement/arrows-up-trio-red.webp",
"system": { "system": {
"rangeDependence": { "changes": [
"enabled": false, {
"type": "withinRange", "key": "system.evasion",
"target": "hostile", "mode": 2,
"range": "melee" "value": "1",
} "priority": null
}
]
}, },
"changes": [
{
"key": "system.evasion",
"mode": 2,
"value": "1",
"priority": null
}
],
"disabled": false, "disabled": false,
"duration": { "duration": {
"startTime": null, "startTime": null,

View file

@ -63,12 +63,6 @@
"_id": "3V4FPoyjJUnFP9WS", "_id": "3V4FPoyjJUnFP9WS",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": {
"enabled": false,
"type": "withinRange",
"target": "hostile",
"range": "melee"
},
"changes": [ "changes": [
{ {
"key": "system.resistance.physical.resistance", "key": "system.resistance.physical.resistance",

View file

@ -78,12 +78,6 @@
"_id": "pO76svFkmWmZ6LjC", "_id": "pO76svFkmWmZ6LjC",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": {
"enabled": false,
"type": "withinRange",
"target": "hostile",
"range": "melee"
},
"changes": [], "changes": [],
"duration": { "duration": {
"type": "temporary" "type": "temporary"

View file

@ -24,21 +24,15 @@
"_id": "b6Pkwwk7pgBeeUTe", "_id": "b6Pkwwk7pgBeeUTe",
"img": "icons/commodities/leather/scales-brown.webp", "img": "icons/commodities/leather/scales-brown.webp",
"system": { "system": {
"rangeDependence": { "changes": [
"enabled": false, {
"type": "withinRange", "key": "system.rules.damageReduction.stressDamageReduction.severe.cost",
"target": "hostile", "mode": 5,
"range": "melee" "value": "1",
} "priority": null
}
]
}, },
"changes": [
{
"key": "system.rules.damageReduction.stressDamageReduction.severe.cost",
"mode": 5,
"value": "1",
"priority": null
}
],
"disabled": false, "disabled": false,
"duration": { "duration": {
"startTime": null, "startTime": null,

View file

@ -24,27 +24,21 @@
"_id": "41uiZKXzSSomf9YD", "_id": "41uiZKXzSSomf9YD",
"img": "icons/creatures/reptiles/turtle-shell-glowing-green.webp", "img": "icons/creatures/reptiles/turtle-shell-glowing-green.webp",
"system": { "system": {
"rangeDependence": { "changes": [
"enabled": false, {
"type": "withinRange", "key": "system.damageThresholds.major",
"target": "hostile", "mode": 2,
"range": "melee" "value": "@prof",
} "priority": 21
},
{
"key": "system.damageThresholds.severe",
"mode": 2,
"value": "@prof",
"priority": 21
}
]
}, },
"changes": [
{
"key": "system.damageThresholds.major",
"mode": 2,
"value": "@prof",
"priority": 21
},
{
"key": "system.damageThresholds.severe",
"mode": 2,
"value": "@prof",
"priority": 21
}
],
"disabled": false, "disabled": false,
"duration": { "duration": {
"startTime": null, "startTime": null,

View file

@ -24,21 +24,15 @@
"_id": "4Lc40mNnRInTKMC5", "_id": "4Lc40mNnRInTKMC5",
"img": "icons/magic/defensive/shield-barrier-glowing-triangle-orange.webp", "img": "icons/magic/defensive/shield-barrier-glowing-triangle-orange.webp",
"system": { "system": {
"rangeDependence": { "changes": [
"enabled": false, {
"type": "withinRange", "key": "system.rules.damageReduction.stressDamageReduction.minor.cost",
"target": "hostile", "mode": 5,
"range": "melee" "value": "2",
} "priority": null
}
]
}, },
"changes": [
{
"key": "system.rules.damageReduction.stressDamageReduction.minor.cost",
"mode": 5,
"value": "2",
"priority": null
}
],
"disabled": false, "disabled": false,
"duration": { "duration": {
"startTime": null, "startTime": null,

View file

@ -87,27 +87,21 @@
"_id": "klEyAxQa5YHXVnrl", "_id": "klEyAxQa5YHXVnrl",
"img": "icons/creatures/abilities/fang-tooth-blood-red.webp", "img": "icons/creatures/abilities/fang-tooth-blood-red.webp",
"system": { "system": {
"rangeDependence": { "changes": [
"enabled": false, {
"type": "withinRange", "key": "system.bonuses.damage.physical.dice",
"target": "hostile", "mode": 2,
"range": "melee" "value": "1d6",
} "priority": null
},
{
"key": "system.bonuses.damage.magical.dice",
"mode": 2,
"value": "1d6",
"priority": null
}
]
}, },
"changes": [
{
"key": "system.bonuses.damage.physical.dice",
"mode": 2,
"value": "1d6",
"priority": null
},
{
"key": "system.bonuses.damage.magical.dice",
"mode": 2,
"value": "1d6",
"priority": null
}
],
"disabled": true, "disabled": true,
"duration": { "duration": {
"startTime": null, "startTime": null,

View file

@ -54,21 +54,15 @@
"_id": "zD3xVdwkEQi2ivOn", "_id": "zD3xVdwkEQi2ivOn",
"img": "icons/creatures/abilities/wing-batlike-white-blue.webp", "img": "icons/creatures/abilities/wing-batlike-white-blue.webp",
"system": { "system": {
"rangeDependence": { "changes": [
"enabled": false, {
"type": "withinRange", "key": "system.evasion",
"target": "hostile", "mode": 2,
"range": "melee" "value": "2",
} "priority": null
}
]
}, },
"changes": [
{
"key": "system.evasion",
"mode": 2,
"value": "2",
"priority": null
}
],
"disabled": true, "disabled": true,
"duration": { "duration": {
"startTime": null, "startTime": null,

View file

@ -59,21 +59,15 @@
"_id": "A7l4JEBC1FFQajsN", "_id": "A7l4JEBC1FFQajsN",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": { "changes": [
"enabled": false, {
"type": "withinRange", "key": "system.proficiency",
"target": "hostile", "mode": 2,
"range": "melee" "value": "1",
} "priority": null
}
]
}, },
"changes": [
{
"key": "system.proficiency",
"mode": 2,
"value": "1",
"priority": null
}
],
"disabled": false, "disabled": false,
"duration": { "duration": {
"startTime": null, "startTime": null,

View file

@ -21,29 +21,23 @@
"name": "Combat Training", "name": "Combat Training",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": { "changes": [
"enabled": false, {
"type": "withinRange", "key": "system.bonuses.damage.physical.bonus",
"target": "hostile", "mode": 2,
"range": "melee" "value": "@system.levelData.level.current",
} "priority": null
},
{
"key": "system.rules.burden.ignore",
"mode": 5,
"value": "1",
"priority": null
}
]
}, },
"_id": "Y7sTM0tw0VpgU6pC", "_id": "Y7sTM0tw0VpgU6pC",
"img": "icons/skills/melee/spear-tips-quintuple-orange.webp", "img": "icons/skills/melee/spear-tips-quintuple-orange.webp",
"changes": [
{
"key": "system.bonuses.damage.physical.bonus",
"mode": 2,
"value": "@system.levelData.level.current",
"priority": null
},
{
"key": "system.rules.burden.ignore",
"mode": 5,
"value": "1",
"priority": null
}
],
"disabled": false, "disabled": false,
"duration": { "duration": {
"startTime": null, "startTime": null,

View file

@ -59,12 +59,6 @@
"_id": "8G9zDv1gac6dEHmS", "_id": "8G9zDv1gac6dEHmS",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": {
"enabled": false,
"type": "withinRange",
"target": "hostile",
"range": "melee"
},
"changes": [ "changes": [
{ {
"key": "system.difficulty", "key": "system.difficulty",

View file

@ -62,12 +62,6 @@
"_id": "XK4cCcz9sRGDJr0q", "_id": "XK4cCcz9sRGDJr0q",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": {
"enabled": false,
"type": "withinRange",
"target": "hostile",
"range": "melee"
},
"changes": [ "changes": [
{ {
"key": "system.bonuses.roll.attack.bonus", "key": "system.bonuses.roll.attack.bonus",

View file

@ -52,21 +52,15 @@
"_id": "FrSJH9vzDHkFGYQL", "_id": "FrSJH9vzDHkFGYQL",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": { "changes": [
"enabled": false, {
"type": "withinRange", "key": "system.bonuses.rally",
"target": "hostile", "mode": 2,
"range": "melee" "value": "6 + min((floor(@system.levelData.level.current / 5)*2), 2)",
} "priority": null
}
]
}, },
"changes": [
{
"key": "system.bonuses.rally",
"mode": 2,
"value": "6 + min((floor(@system.levelData.level.current / 5)*2), 2)",
"priority": null
}
],
"disabled": false, "disabled": false,
"duration": { "duration": {
"startTime": null, "startTime": null,

View file

@ -60,14 +60,8 @@
"_id": "SXi2dQWqpwY9fap4", "_id": "SXi2dQWqpwY9fap4",
"type": "base", "type": "base",
"system": { "system": {
"rangeDependence": { "changes": []
"enabled": false,
"type": "withinRange",
"target": "hostile",
"range": "melee"
}
}, },
"changes": [],
"disabled": false, "disabled": false,
"duration": { "duration": {
"startTime": null, "startTime": null,

Some files were not shown because too many files have changed in this diff Show more