diff --git a/CHANGELOG.md b/CHANGELOG.md index 764b5bdeb..8d53690f3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,26 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [2.1.5.2.4.7] +## [2.1.5.2.4.8] - 2023-07-19 + +### Fixed + +- Icon Backdrops should work correctly on linux. +- Removing a deployed actor should once again work properly. +- Backpacks with no rarity no longer show '&Nbsp;'. +- Website character importer should now have the correct abilities for each skill. +- Website character importer should now work with profiencies like `all martial vibroweapons with the finesse property` (treated as `all martial vibroweapons`). +- Module Art Config button should now work. +- Datamodel issues on starship creation. +- Species characteristics should once again be editable. + +### Changes + +- Compendium Updates. +- The deployment features compendium has been updated to match the website. (Credits to GreyCouncil#8804). + + +## [2.1.5.2.4.7] - 2023-06-9 ### Fixed diff --git a/module/character-importer.mjs b/module/character-importer.mjs index 25c7175c7..974b9fad6 100644 --- a/module/character-importer.mjs +++ b/module/character-importer.mjs @@ -115,6 +115,7 @@ export default class CharacterImporter { value: sourceCharacter.attribs.find(e => e.name === "technology_type").current } }; + for (const id of skills) skills[id] = globalThis.sw5e.dataModels.actor.CharacterData._initialSkillValue(id, skills[id]); const targetCharacter = { name: sourceCharacter.name, @@ -344,7 +345,7 @@ export default class CharacterImporter { case "WEAPON": case "OTHER": name = name.toLowerCase().replace(/\s/g, ""); - const match = name.match(/(all|simple|martial|exotic)(\w+)s/); + const match = name.match(/(all|simple|martial|exotic)(blaster|vibroweapon|lightweapon)s/); if (match) { const weapons = { blaster: ["smb", "mrb", "exb"], diff --git a/module/data/actor/starship.mjs b/module/data/actor/starship.mjs index b1af97727..95dbea6c5 100644 --- a/module/data/actor/starship.mjs +++ b/module/data/actor/starship.mjs @@ -268,12 +268,12 @@ export default class StarshipData extends CommonTemplate { traits: new foundry.data.fields.SchemaField( { ci: TraitsFields.makeSimpleTrait({ label: "SW5E.ConImm" }), - dr: TraitsFields.makeDamageTrait({ label: "SW5E.HullDamRes", initial: ["ion", "lightning", "necrotic"] }), + dr: TraitsFields.makeDamageTrait({ label: "SW5E.HullDamRes" }, { initial: ["ion", "lightning", "necrotic"] }), dv: TraitsFields.makeDamageTrait({ label: "SW5E.HullDamVuln" }), - di: TraitsFields.makeDamageTrait({ label: "SW5E.HullDamImm", initial: ["poison", "psychic"] }), - sdr: TraitsFields.makeDamageTrait({ label: "SW5E.ShieldDamRes", initial: ["acid", "cold", "fire", "necrotic"] }), + di: TraitsFields.makeDamageTrait({ label: "SW5E.HullDamImm" }, { initial: ["poison", "psychic"] }), + sdr: TraitsFields.makeDamageTrait({ label: "SW5E.ShieldDamRes" }, { initial: ["acid", "cold", "fire", "necrotic"] }), sdv: TraitsFields.makeDamageTrait({ label: "SW5E.ShieldDamVuln" }), - sdi: TraitsFields.makeDamageTrait({ label: "SW5E.ShieldDamImm", initial: ["poison", "psychic"] }) + sdi: TraitsFields.makeDamageTrait({ label: "SW5E.ShieldDamImm" }, { initial: ["poison", "psychic"] }) }, { label: "SW5E.Traits" } ) diff --git a/module/data/item/species.mjs b/module/data/item/species.mjs index 7a89ccc8e..9f6f086c4 100644 --- a/module/data/item/species.mjs +++ b/module/data/item/species.mjs @@ -14,7 +14,65 @@ export default class SpeciesData extends SystemDataModel.mixin(ItemDescriptionTe static defineSchema() { return this.mergeSchema(super.defineSchema(), { identifier: new IdentifierField({ required: true, label: "SW5E.Identifier" }), - advancement: new foundry.data.fields.ArrayField(new AdvancementField(), { label: "SW5E.AdvancementTitle" }) + advancement: new foundry.data.fields.ArrayField(new AdvancementField(), { label: "SW5E.AdvancementTitle" }), + details: new foundry.data.fields.SchemaField( + { + isDroid: new foundry.data.fields.BooleanField({ required: true, label: "SW5E.IsDroid" }) + }, + { label: "SW5E.Details" } + ), + + // non-droid visual characteristics + skinColorOptions: new foundry.data.fields.SchemaField({ + value: new foundry.data.fields.StringField({ required: true, label: "SW5E.skinColorOptions" }), + }), + hairColorOptions: new foundry.data.fields.SchemaField({ + value: new foundry.data.fields.StringField({ required: true, label: "SW5E.hairColorOptions" }), + }), + eyeColorOptions: new foundry.data.fields.SchemaField({ + value: new foundry.data.fields.StringField({ required: true, label: "SW5E.eyeColorOptions" }), + }), + distinctions: new foundry.data.fields.SchemaField({ + value: new foundry.data.fields.StringField({ required: true, label: "SW5E.distinctions" }), + }), + + // droid visual characteristics + colorScheme: new foundry.data.fields.SchemaField({ + value: new foundry.data.fields.StringField({ required: true, label: "SW5E.ColorScheme" }), + }), + droidDistinctions: new foundry.data.fields.SchemaField({ + value: new foundry.data.fields.StringField({ required: true, label: "SW5E.DroidDistinctions" }), + }), + + // physical characteristics + heightAverage: new foundry.data.fields.SchemaField({ + value: new foundry.data.fields.StringField({ required: true, label: "SW5E.HeightAverage" }), + }), + heightRollMod: new foundry.data.fields.SchemaField({ + value: new foundry.data.fields.StringField({ required: true, label: "SW5E.HeightRollMod" }), + }), + weightAverage: new foundry.data.fields.SchemaField({ + value: new foundry.data.fields.StringField({ required: true, label: "SW5E.WeightAverage" }), + }), + weightRollMod: new foundry.data.fields.SchemaField({ + value: new foundry.data.fields.StringField({ required: true, label: "SW5E.WeightRollMod" }), + }), + + // non-droid sociocultural characteristics + homeworld: new foundry.data.fields.SchemaField({ + value: new foundry.data.fields.StringField({ required: true, label: "SW5E.homeworld" }), + }), + slanguage: new foundry.data.fields.SchemaField({ + value: new foundry.data.fields.StringField({ required: true, label: "SW5E.slanguage" }), + }), + + // droid sociocultural characteristics + manufacturer: new foundry.data.fields.SchemaField({ + value: new foundry.data.fields.StringField({ required: true, label: "SW5E.manufacturer" }), + }), + droidLanguage: new foundry.data.fields.SchemaField({ + value: new foundry.data.fields.StringField({ required: true, label: "SW5E.slanguage" }), + }) }); } } diff --git a/module/documents/actor/actor.mjs b/module/documents/actor/actor.mjs index d36bc0736..d8ce067e9 100644 --- a/module/documents/actor/actor.mjs +++ b/module/documents/actor/actor.mjs @@ -4651,7 +4651,7 @@ export default class Actor5e extends Actor { if (ssDeployment) { if (ssDeployment.items) { ssDeployment.items.delete(target.uuid); - ssUpdates[`system.attributes.deployment.${key}.items`] = ssDeployment.items; + ssUpdates[`system.attributes.deployment.${key}.items`] = Array.from(ssDeployment.items); } else ssUpdates[`system.attributes.deployment.${key}.value`] = null; if (ssDeploy.active.value === target.uuid) { @@ -4661,7 +4661,7 @@ export default class Actor5e extends Actor { if (tDeployed?.deployments?.has(key)) { tDeployed?.deployments?.delete(key); - tUpdates[`system.attributes.deployed.deployments`] = tDeployed.deployments; + tUpdates[`system.attributes.deployed.deployments`] = Array.from(tDeployed.deployments); } } diff --git a/module/documents/item.mjs b/module/documents/item.mjs index c561c4474..2983aaff0 100644 --- a/module/documents/item.mjs +++ b/module/documents/item.mjs @@ -439,7 +439,7 @@ export default class Item5e extends Item { */ get iconBackground() { if (this.system.rarity === undefined) return null; - const rarity = this.system.rarity?.toUpperCase() || "Mundane"; + const rarity = this.system.rarity?.capitalize() || "Mundane"; return `systems/sw5e/packs/Icons/ItemBackdrop/${rarity}.webp`; } diff --git a/module/module-art.mjs b/module/module-art.mjs index e21f8c28a..391c10bf5 100644 --- a/module/module-art.mjs +++ b/module/module-art.mjs @@ -122,7 +122,7 @@ export class ModuleArtConfig extends FormApplication { return foundry.utils.mergeObject(super.defaultOptions, { title: game.i18n.localize("SW5E.ModuleArtConfigL"), id: "module-art-config", - template: "systems/sw5e/templates/apps/module-art-config.html", + template: "systems/sw5e/templates/apps/module-art-config.hbs", popOut: true, width: 600, height: "auto" diff --git a/packs/blasters/martialB/shoulder-blaster-rapid.json b/packs/blasters/martialB/shoulder-blaster-rapid.json index 7154befcd..f9ee7d21a 100644 --- a/packs/blasters/martialB/shoulder-blaster-rapid.json +++ b/packs/blasters/martialB/shoulder-blaster-rapid.json @@ -24,8 +24,8 @@ "quantity": 1, "weight": 3, "price": { - "denomination": "gc", - "value": 1275 + "value": 1275, + "denomination": "gc" }, "attunement": 0, "equipped": false, @@ -65,9 +65,9 @@ "amount": null, "ammount": null }, - "ability": "str", + "ability": "", "actionType": "save", - "attackBonus": "2 - @abilities.str.mod + 2 - @attributes.prof", + "attackBonus": "", "chatFlavor": "", "critical": { "threshold": null, @@ -76,7 +76,7 @@ "damage": { "parts": [ [ - "2d6 + 2", + "1d6 + 2", "energy" ] ], @@ -85,8 +85,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "dex" + "dc": 12, + "scaling": "flat" }, "armor": { "value": 10 @@ -131,10 +131,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.4", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493961313, - "modifiedTime": 1684819088105, + "modifiedTime": 1686621161851, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/blasters/martialB/shoulder-cannon-burst.json b/packs/blasters/martialB/shoulder-cannon-burst.json index 5c5b385ce..710937db0 100644 --- a/packs/blasters/martialB/shoulder-cannon-burst.json +++ b/packs/blasters/martialB/shoulder-cannon-burst.json @@ -24,8 +24,8 @@ "quantity": 1, "weight": null, "price": { - "denomination": "gc", - "value": 1625 + "value": 1625, + "denomination": "gc" }, "attunement": 0, "equipped": false, @@ -65,9 +65,9 @@ "amount": 480, "ammount": null }, - "ability": "str", + "ability": "", "actionType": "save", - "attackBonus": "2 - @abilities.str.mod + 2 - @attributes.prof", + "attackBonus": "", "chatFlavor": "", "critical": { "threshold": null, @@ -85,8 +85,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "dex" + "dc": 12, + "scaling": "flat" }, "armor": { "value": 10 @@ -134,10 +134,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.4", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493961311, - "modifiedTime": 1684819088105, + "modifiedTime": 1686621161851, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/blasters/martialB/smart-cannon-burst.json b/packs/blasters/martialB/smart-cannon-burst.json index 0e4752b29..3ecad86ce 100644 --- a/packs/blasters/martialB/smart-cannon-burst.json +++ b/packs/blasters/martialB/smart-cannon-burst.json @@ -24,8 +24,8 @@ "quantity": 1, "weight": null, "price": { - "denomination": "gc", - "value": 2250 + "value": 2250, + "denomination": "gc" }, "attunement": 0, "equipped": false, @@ -65,9 +65,9 @@ "amount": null, "ammount": null }, - "ability": "str", + "ability": "", "actionType": "save", - "attackBonus": "2 - @abilities.str.mod + 2 - @attributes.prof", + "attackBonus": "", "chatFlavor": "", "critical": { "threshold": null, @@ -85,8 +85,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "dex" + "dc": 12, + "scaling": "flat" }, "armor": { "value": 10 @@ -133,10 +133,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.4", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493961234, - "modifiedTime": 1684819088100, + "modifiedTime": 1686621161850, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/blasters/martialB/smart-cannon-rapid.json b/packs/blasters/martialB/smart-cannon-rapid.json index 7e242bb62..caae1e375 100644 --- a/packs/blasters/martialB/smart-cannon-rapid.json +++ b/packs/blasters/martialB/smart-cannon-rapid.json @@ -24,8 +24,8 @@ "quantity": 1, "weight": null, "price": { - "denomination": "gc", - "value": 2250 + "value": 2250, + "denomination": "gc" }, "attunement": 0, "equipped": false, @@ -65,9 +65,9 @@ "amount": null, "ammount": null }, - "ability": "str", + "ability": "", "actionType": "save", - "attackBonus": "2 - @abilities.str.mod + 2 - @attributes.prof", + "attackBonus": "", "chatFlavor": "", "critical": { "threshold": null, @@ -76,7 +76,7 @@ "damage": { "parts": [ [ - "2d10 + 2", + "1d10 + 2", "kinetic" ] ], @@ -85,8 +85,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "dex" + "dc": 12, + "scaling": "flat" }, "armor": { "value": 10 @@ -133,10 +133,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.4", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493961238, - "modifiedTime": 1684819088100, + "modifiedTime": 1686621161850, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/blasters/martialB/smart-pistol-rapid.json b/packs/blasters/martialB/smart-pistol-rapid.json index aca545fc2..c82c9e138 100644 --- a/packs/blasters/martialB/smart-pistol-rapid.json +++ b/packs/blasters/martialB/smart-pistol-rapid.json @@ -24,8 +24,8 @@ "quantity": 1, "weight": 4, "price": { - "denomination": "gc", - "value": 1075 + "value": 1075, + "denomination": "gc" }, "attunement": 0, "equipped": false, @@ -65,9 +65,9 @@ "amount": null, "ammount": null }, - "ability": "str", + "ability": "", "actionType": "save", - "attackBonus": "2 - @abilities.str.mod + 2 - @attributes.prof", + "attackBonus": "", "chatFlavor": "", "critical": { "threshold": null, @@ -76,7 +76,7 @@ "damage": { "parts": [ [ - "2d6 + 2", + "1d6 + 2", "kinetic" ] ], @@ -85,8 +85,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "dex" + "dc": 12, + "scaling": "flat" }, "armor": { "value": 10 @@ -131,10 +131,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.4", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493961284, - "modifiedTime": 1684819088103, + "modifiedTime": 1686621161850, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/deploymentfeatures/Coordinator/inspiring-display.json b/packs/deploymentfeatures/Coordinator/inspiring-display.json index e90059a32..1631227ba 100644 --- a/packs/deploymentfeatures/Coordinator/inspiring-display.json +++ b/packs/deploymentfeatures/Coordinator/inspiring-display.json @@ -9,7 +9,7 @@ "flags": {}, "system": { "description": { - "value": "

Also at 2nd rank, you can inspire others through stirring words. You spend the next minute rallying your allies by giving an inspiring speech. You grant a number of ships up to your proficiency bonus temporary hull points equal to your Charisma modifier. You also grant to a number of crew members up to your proficiency bonus from those ships one Inspiring Display die, a d6. Once within the next 10 minutes, the creature can roll the die and add the number rolled to one ability check, attack roll, or saving throw it makes. The creature can wait until after it rolls the d20 before deciding to use the Inspiring Display die, but must decide before the GM says whether the roll succeeds or fails. Once the Inspiring Display die is rolled, it is lost. A creature can have only one Inspiring Display die at a time.

Once you've used this feature, you can't use it again until you finish a long rest.

Your Inspiring Display die changes when you reach certain ranks in this deployment. The die becomes a d8 at 3rd rank, a d10 at 4th rank, and a d12 at 5th rank.

", + "value": "

Also at 2nd rank, you can inspire others through stirring words. You spend the next minute rallying your allies by giving an inspiring speech. You grant a number of ships up to your proficiency bonus temporary hull points equal to your Charisma modifier. You also grant to a number of crew members up to your proficiency bonus from those ships one Inspiring Display die, a [[/r d6]]. Once within the next 10 minutes, the creature can roll the die and add the number rolled to one ability check, attack roll, or saving throw it makes. The creature can wait until after it rolls the d20 before deciding to use the Inspiring Display die, but must decide before the GM says whether the roll succeeds or fails. Once the Inspiring Display die is rolled, it is lost. A creature can have only one Inspiring Display die at a time.

Once you've used this feature, you can't use it again until you finish a long rest.

Your Inspiring Display die changes when you reach certain ranks in this deployment. The die becomes a [[/r d8]] at 3rd rank, a [[/r d10]] at 4th rank, and a [[/r d12]] at 5th rank.

", "chat": "", "unidentified": "" }, diff --git a/packs/deploymentfeatures/Coordinator/paragon-coordinator.json b/packs/deploymentfeatures/Coordinator/paragon-coordinator.json index c3f4356e6..615be6aed 100644 --- a/packs/deploymentfeatures/Coordinator/paragon-coordinator.json +++ b/packs/deploymentfeatures/Coordinator/paragon-coordinator.json @@ -7,7 +7,7 @@ "effects": [], "system": { "description": { - "value": "

As of 5th tier, you are a paragon of your deployment. When you would expend a Power die or an Inspiring Display die, you can use a d4 instead of expending a die. You can only use this feature once per round.

", + "value": "

As of 5th tier, you are a paragon of your deployment. When you would expend a Power die or an Inspiring Display die, you can use a [[/r d4]] instead of expending a die. You can only use this feature once per round.

", "chat": "", "unidentified": "" }, diff --git a/packs/deploymentfeatures/Gunner/dependable-gunner.json b/packs/deploymentfeatures/Gunner/dependable-gunner.json index a87cbdf56..3a4883db6 100644 --- a/packs/deploymentfeatures/Gunner/dependable-gunner.json +++ b/packs/deploymentfeatures/Gunner/dependable-gunner.json @@ -37,8 +37,8 @@ "units": "" }, "uses": { - "value": 1, - "max": "1", + "value": 3, + "max": "@deployments.gunner.rank", "per": "lr", "recovery": "" }, diff --git a/packs/deploymentfeatures/Gunner/gunning-mastery.json b/packs/deploymentfeatures/Gunner/gunning-mastery.json index b07655a68..6b0e21cf7 100644 --- a/packs/deploymentfeatures/Gunner/gunning-mastery.json +++ b/packs/deploymentfeatures/Gunner/gunning-mastery.json @@ -7,7 +7,7 @@ "effects": [], "system": { "description": { - "value": "

At 4th rank, you master a particular style of gunning. Choose one of the Gunning Mastery options, detailed in Chapter 6. You can't take a Gunning Mastery option more than once, even if you later get to choose again.

", + "value": "

At 4th rank, you master a particular style of gunning. Choose one of the Gunning Mastery options, detailed in Chapter 6. You can't take a Gunning Mastery option more than once, even if you later get to choose again.

CANNON MASTERY

HEAVY GUN MASTERY

PAYLOAD MASTERY

", "chat": "", "unidentified": "" }, diff --git a/packs/deploymentfeatures/Gunner/gunning-style.json b/packs/deploymentfeatures/Gunner/gunning-style.json index 9606998fc..dc1743cc8 100644 --- a/packs/deploymentfeatures/Gunner/gunning-style.json +++ b/packs/deploymentfeatures/Gunner/gunning-style.json @@ -7,7 +7,7 @@ "effects": [], "system": { "description": { - "value": "

At 2nd rank, you adopt a particular style of gunning as your specialty. Choose one of the Gunning Style options, detailed in Chapter 6. You can't take a Gunning Style option more than once, even if you later get to choose again.

", + "value": "

At 2nd rank, you adopt a particular style of gunning as your specialty. Choose one of the Gunning Style options, detailed in Chapter 6. You can't take a Gunning Style option more than once, even if you later get to choose again.

CANNONEER

HEAVY GUNNER

PAYLOAD DELIVERY

", "chat": "", "unidentified": "" }, diff --git a/packs/deploymentfeatures/Gunner/paragon-gunner.json b/packs/deploymentfeatures/Gunner/paragon-gunner.json index f1bceb6b3..953608b46 100644 --- a/packs/deploymentfeatures/Gunner/paragon-gunner.json +++ b/packs/deploymentfeatures/Gunner/paragon-gunner.json @@ -9,7 +9,7 @@ "flags": {}, "system": { "description": { - "value": "

At 5th rank, when you would expend a power die, you can use a d4 instead of expending a die. You can only use this feature once per round.

Additionally, when you make an attack roll while deployed as a gunner, you can choose to make the roll a critical hit. You can use this feature before or after making the roll, but before any effects of the roll are determined. Once you've used this feature, you must complete a short or long rest before you can use it again.

", + "value": "

At 5th rank, when you would expend a power die, you can use a [[/r d4]] instead of expending a die. You can only use this feature once per round.

Additionally, when you make an attack roll while deployed as a gunner, you can choose to make the roll a critical hit. You can use this feature before or after making the roll, but before any effects of the roll are determined. Once you've used this feature, you must complete a short or long rest before you can use it again.

", "chat": "", "unidentified": "" }, diff --git a/packs/deploymentfeatures/Operator/paragon-operator.json b/packs/deploymentfeatures/Operator/paragon-operator.json index 7f767e9fd..598121275 100644 --- a/packs/deploymentfeatures/Operator/paragon-operator.json +++ b/packs/deploymentfeatures/Operator/paragon-operator.json @@ -9,7 +9,7 @@ "flags": {}, "system": { "description": { - "value": "

As of 5th rank, you are a paragon of your deployment. When you would expend a Power die or a System Disturbance die, you can use a d4 instead of expending a die. You can only use this feature once per round.

\n

Additionally, you regain all expended uses of your System Disturbance feature when you finish a short or long rest.

\n

Lastly, when you would make an Interfere, Scan, or Probe check while deployed as an operator, you can take the maximum instead of rolling. You can use this feature before or after making the roll, but before any effects of the roll are determined. Once you've used this feature, you must complete a short or long rest before you can use it again.

", + "value": "

As of 5th rank, you are a paragon of your deployment. When you would expend a Power die or a System Disturbance die, you can use a [[/r d4]] instead of expending a die. You can only use this feature once per round.

Additionally, you regain all expended uses of your System Disturbance feature when you finish a short or long rest.

Lastly, when you would make an Interfere, Scan, or Probe check, you can take the maximum instead of rolling. You can use this feature before or after making the roll, but before any effects of the roll are determined. Once you've used this feature, you must complete a short or long rest before you can use it again.

", "chat": "", "unidentified": "" }, diff --git a/packs/deploymentfeatures/Operator/reactor-vulnerability.json b/packs/deploymentfeatures/Operator/reactor-vulnerability.json index 6ec65f863..09db5f2c5 100644 --- a/packs/deploymentfeatures/Operator/reactor-vulnerability.json +++ b/packs/deploymentfeatures/Operator/reactor-vulnerability.json @@ -9,7 +9,7 @@ "flags": {}, "system": { "description": { - "value": "

Power Die Location: Comms
When a friendly ship, including your own, hits a ship with a weapon attack, you can expend a superiority die as a reaction to temporarily destabilize the ship's reactor. Add the number rolled to the damage of the weapon attack and the ship must succeed on a Constitution saving throw or be shocked until the end of its next turn.

", + "value": "

Power Die Location: Comms
When a friendly ship, including your own, hits a ship with a weapon attack, you can expend a power die as a reaction to temporarily destabilize the ship's reactor. Add the number rolled to the damage of the weapon attack and the ship must succeed on a Constitution saving throw or be shocked until the end of its next turn.

", "chat": "", "unidentified": "" }, diff --git a/packs/deploymentfeatures/Operator/system-disturbance.json b/packs/deploymentfeatures/Operator/system-disturbance.json index 10f9d6cd7..a5941355d 100644 --- a/packs/deploymentfeatures/Operator/system-disturbance.json +++ b/packs/deploymentfeatures/Operator/system-disturbance.json @@ -9,7 +9,7 @@ "flags": {}, "system": { "description": { - "value": "

At 2nd rank, as a bonus action while deployed as an operator, you can choose a ship that you can see within 1,000 feet and target its systems for disturbance. For the next minute, or until you disturb another target, you have advantage on any Wisdom (Scan) or Intelligence (Probe) check you make to find it.

\n

Additionally, when the ship makes an ability check, attack roll, or saving throw, you can use your reaction to disturb the ship's functions. Roll a System Disturbance die, which is a d6, and subtract it from the ability check, attack roll, or saving throw. You can choose to use this feature after the ship makes its roll, but before the GM says whether the roll succeeds or fails. You can use this feature twice. You gain another use of this feature at 3rd, 4th, and 5th rank in this deployment. You regain any expended uses when you finish a long rest.

\n

Your System Disturbance die changes when you reach certain ranks in this deployment. The die becomes a d8 at 3rd rank, a d10 at 4th rank, and a d12 at 5th rank.

", + "value": "

At 2nd rank, as a bonus action while deployed as an operator, you can choose a ship that you can see within 1,000 feet and target its systems for disturbance. For the next minute, or until you disturb another target, you have advantage on any Wisdom (Scan) or Intelligence (Probe) check you make to find it.

Additionally, when the ship makes an ability check, attack roll, or saving throw, you can use your reaction to disturb the ship's functions. Roll a System Disturbance die, which is a [[/r d6]], and subtract it from the ability check, attack roll, or saving throw. You can choose to use this feature after the ship makes its roll, but before the GM says whether the roll succeeds or fails. You can use this feature twice. You gain another use of this feature at 3rd, 4th, and 5th rank in this deployment. You regain any expended uses when you finish a long rest.

Your System Disturbance die changes when you reach certain ranks in this deployment. The die becomes a [[/r d8]] at 3rd rank, a [[/r d10]] at 4th rank, and a [[/r d12]] at 5th rank.

", "chat": "", "unidentified": "" }, @@ -37,9 +37,9 @@ "units": "" }, "uses": { - "value": null, - "max": "", - "per": "", + "value": 2, + "max": "@deployments.operator.rank", + "per": "lr", "recovery": "" }, "consume": { diff --git a/packs/deploymentfeatures/Pilot/koiogran-turn.json b/packs/deploymentfeatures/Pilot/barrel-roll.json similarity index 98% rename from packs/deploymentfeatures/Pilot/koiogran-turn.json rename to packs/deploymentfeatures/Pilot/barrel-roll.json index 98d0591a9..4ca68d3c1 100644 --- a/packs/deploymentfeatures/Pilot/koiogran-turn.json +++ b/packs/deploymentfeatures/Pilot/barrel-roll.json @@ -1,6 +1,6 @@ { "_id": "5PaDhVwt5qs6DQob", - "name": "Koiogran Turn", + "name": "Barrel Roll", "type": "feat", "img": "systems/sw5e/packs/Icons/Deployments/Pilot.webp", "effects": [], diff --git a/packs/deploymentfeatures/Pilot/paragon-pilot.json b/packs/deploymentfeatures/Pilot/paragon-pilot.json index 8fbb14655..61f4bc195 100644 --- a/packs/deploymentfeatures/Pilot/paragon-pilot.json +++ b/packs/deploymentfeatures/Pilot/paragon-pilot.json @@ -7,7 +7,7 @@ "effects": [], "system": { "description": { - "value": "

As of 5th tier, you are a paragon of your deployment. When you would expend a power die, you can use a d4 instead of expending a die. You can only use this feature once per round.

", + "value": "

As of 5th tier, you are a paragon of your deployment. When you would expend a power die, you can use a [[/r d4]] instead of expending a die. You can only use this feature once per round.

", "chat": "", "unidentified": "" }, diff --git a/packs/deploymentfeatures/Technician/dependable-damage-control.json b/packs/deploymentfeatures/Technician/dependable-damage-control.json index caefec24a..d72724423 100644 --- a/packs/deploymentfeatures/Technician/dependable-damage-control.json +++ b/packs/deploymentfeatures/Technician/dependable-damage-control.json @@ -9,7 +9,7 @@ "flags": {}, "system": { "description": { - "value": "

Starting at 3rd rank, when your ship would make a Constitution Saving throw, you can take take the maximum instead of rolling. You can use this feature before or after making the roll, but before any effects of the roll are determined. You may use this feature once before completing a short or long rest.

", + "value": "

Starting at 3rd rank, when your ship would make a Constitution Saving throw, you can take the maximum instead of rolling. You can use this feature before or after making the roll, but before any effects of the roll are determined. You may use this feature once before completing a short or long rest.

", "chat": "", "unidentified": "" }, diff --git a/packs/deploymentfeatures/Technician/paragon-of-defense.json b/packs/deploymentfeatures/Technician/paragon-of-defense.json index d5daa029c..1f5509b16 100644 --- a/packs/deploymentfeatures/Technician/paragon-of-defense.json +++ b/packs/deploymentfeatures/Technician/paragon-of-defense.json @@ -9,7 +9,7 @@ "flags": {}, "system": { "description": { - "value": "

As of 5th rank, you are a paragon of your deployment. When you would expend a Power die, you can use a d4 instead of expending a die. You can only use this feature once per round.

\n

Additionally, when you take the Boost Shields or Patch action, when you would roll to restore hull points or shield points, you can take the maximum instead of rolling. You can use this feature before or after making the roll. Once you've used this feature, you must complete a short or long rest before you can use it again.

", + "value": "

As of 5th rank, you are a paragon of your deployment. When you would expend a Power die, you can use a [[/r d4]] instead of expending a die. You can only use this feature once per round.

Additionally, when you take the Boost Shields or Patch action, when you would roll to restore hull points or shield points, you can take the maximum instead of rolling. You can use this feature before or after making the roll. Once you've used this feature, you must complete a short or long rest before you can use it again.

", "chat": "", "unidentified": "" }, diff --git a/packs/enhanceditems/consumable/adrenal/andris-fine.json b/packs/enhanceditems/consumable/adrenal/andris-fine.json index 9284e294d..d6906c993 100644 --- a/packs/enhanceditems/consumable/adrenal/andris-fine.json +++ b/packs/enhanceditems/consumable/adrenal/andris-fine.json @@ -115,7 +115,7 @@ }, "duration": { "value": 1, - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "wis", - "dc": null, - "scaling": "none" + "dc": 16, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964993, - "modifiedTime": 1685833928445, + "modifiedTime": 1686621163040, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/andris-high-quality.json b/packs/enhanceditems/consumable/adrenal/andris-high-quality.json index c94917126..180d3813f 100644 --- a/packs/enhanceditems/consumable/adrenal/andris-high-quality.json +++ b/packs/enhanceditems/consumable/adrenal/andris-high-quality.json @@ -115,7 +115,7 @@ }, "duration": { "value": "10", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "wis", - "dc": null, - "scaling": "none" + "dc": 20, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964764, - "modifiedTime": 1685833928410, + "modifiedTime": 1686621162981, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/andris-potent.json b/packs/enhanceditems/consumable/adrenal/andris-potent.json index 615bcf38a..c8110ded3 100644 --- a/packs/enhanceditems/consumable/adrenal/andris-potent.json +++ b/packs/enhanceditems/consumable/adrenal/andris-potent.json @@ -115,7 +115,7 @@ }, "duration": { "value": 1, - "units": "" + "units": "hour" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "wis", - "dc": null, - "scaling": "none" + "dc": 22, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964435, - "modifiedTime": 1685833928332, + "modifiedTime": 1686621162898, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/andris-pure.json b/packs/enhanceditems/consumable/adrenal/andris-pure.json index 0a379682f..ca5fca7b0 100644 --- a/packs/enhanceditems/consumable/adrenal/andris-pure.json +++ b/packs/enhanceditems/consumable/adrenal/andris-pure.json @@ -115,7 +115,7 @@ }, "duration": { "value": 1, - "units": "" + "units": "hour" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "wis", - "dc": null, - "scaling": "none" + "dc": 24, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964987, - "modifiedTime": 1685833928444, + "modifiedTime": 1686621163039, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/andris-uncut.json b/packs/enhanceditems/consumable/adrenal/andris-uncut.json index 9e1837755..c2185c9c8 100644 --- a/packs/enhanceditems/consumable/adrenal/andris-uncut.json +++ b/packs/enhanceditems/consumable/adrenal/andris-uncut.json @@ -115,7 +115,7 @@ }, "duration": { "value": "10", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "wis", - "dc": null, - "scaling": "none" + "dc": 18, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964541, - "modifiedTime": 1685833928360, + "modifiedTime": 1686621162933, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/cilona-fine.json b/packs/enhanceditems/consumable/adrenal/cilona-fine.json index 32d083105..4b34c2bbc 100644 --- a/packs/enhanceditems/consumable/adrenal/cilona-fine.json +++ b/packs/enhanceditems/consumable/adrenal/cilona-fine.json @@ -115,7 +115,7 @@ }, "duration": { "value": 1, - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "wis", - "dc": null, - "scaling": "none" + "dc": 16, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964631, - "modifiedTime": 1685833928378, + "modifiedTime": 1686621162948, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/cilona-high-quality.json b/packs/enhanceditems/consumable/adrenal/cilona-high-quality.json index b4b8cd8b7..93bee2787 100644 --- a/packs/enhanceditems/consumable/adrenal/cilona-high-quality.json +++ b/packs/enhanceditems/consumable/adrenal/cilona-high-quality.json @@ -115,7 +115,7 @@ }, "duration": { "value": "10", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "wis", - "dc": null, - "scaling": "none" + "dc": 20, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964445, - "modifiedTime": 1685833928334, + "modifiedTime": 1686621162899, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/cilona-potent.json b/packs/enhanceditems/consumable/adrenal/cilona-potent.json index acd917ff3..738f8430e 100644 --- a/packs/enhanceditems/consumable/adrenal/cilona-potent.json +++ b/packs/enhanceditems/consumable/adrenal/cilona-potent.json @@ -115,7 +115,7 @@ }, "duration": { "value": 1, - "units": "" + "units": "hour" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "wis", - "dc": null, - "scaling": "none" + "dc": 22, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493965062, - "modifiedTime": 1685833928450, + "modifiedTime": 1686621163047, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/cilona-pure.json b/packs/enhanceditems/consumable/adrenal/cilona-pure.json index 0a3cf83e8..28d628517 100644 --- a/packs/enhanceditems/consumable/adrenal/cilona-pure.json +++ b/packs/enhanceditems/consumable/adrenal/cilona-pure.json @@ -115,7 +115,7 @@ }, "duration": { "value": 1, - "units": "" + "units": "hour" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "wis", - "dc": null, - "scaling": "none" + "dc": 24, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964523, - "modifiedTime": 1685833928354, + "modifiedTime": 1686621162927, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/cilona-uncut.json b/packs/enhanceditems/consumable/adrenal/cilona-uncut.json index 589484c3b..50395c17a 100644 --- a/packs/enhanceditems/consumable/adrenal/cilona-uncut.json +++ b/packs/enhanceditems/consumable/adrenal/cilona-uncut.json @@ -115,7 +115,7 @@ }, "duration": { "value": "10", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "wis", - "dc": null, - "scaling": "none" + "dc": 18, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964897, - "modifiedTime": 1685833928427, + "modifiedTime": 1686621163002, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/deuterium-pyro-aged.json b/packs/enhanceditems/consumable/adrenal/deuterium-pyro-aged.json index accbf55b6..e67c85129 100644 --- a/packs/enhanceditems/consumable/adrenal/deuterium-pyro-aged.json +++ b/packs/enhanceditems/consumable/adrenal/deuterium-pyro-aged.json @@ -115,7 +115,7 @@ }, "duration": { "value": "10", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 20, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493965086, - "modifiedTime": 1685833928459, + "modifiedTime": 1686621163054, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/deuterium-pyro-fine.json b/packs/enhanceditems/consumable/adrenal/deuterium-pyro-fine.json index c43659ee4..846ad46ae 100644 --- a/packs/enhanceditems/consumable/adrenal/deuterium-pyro-fine.json +++ b/packs/enhanceditems/consumable/adrenal/deuterium-pyro-fine.json @@ -115,7 +115,7 @@ }, "duration": { "value": 1, - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 16, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964678, - "modifiedTime": 1685833928388, + "modifiedTime": 1686621162960, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/deuterium-pyro-matured.json b/packs/enhanceditems/consumable/adrenal/deuterium-pyro-matured.json index 36ac78aee..1886f7c46 100644 --- a/packs/enhanceditems/consumable/adrenal/deuterium-pyro-matured.json +++ b/packs/enhanceditems/consumable/adrenal/deuterium-pyro-matured.json @@ -115,7 +115,7 @@ }, "duration": { "value": "10", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 18, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964898, - "modifiedTime": 1685833928427, + "modifiedTime": 1686621163003, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/deuterium-pyro-reserve.json b/packs/enhanceditems/consumable/adrenal/deuterium-pyro-reserve.json index 400afc0d9..420b44a27 100644 --- a/packs/enhanceditems/consumable/adrenal/deuterium-pyro-reserve.json +++ b/packs/enhanceditems/consumable/adrenal/deuterium-pyro-reserve.json @@ -115,7 +115,7 @@ }, "duration": { "value": 1, - "units": "" + "units": "hour" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 22, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964529, - "modifiedTime": 1685833928356, + "modifiedTime": 1686621162929, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/deuterium-pyro-special.json b/packs/enhanceditems/consumable/adrenal/deuterium-pyro-special.json index 039901f44..470acfab7 100644 --- a/packs/enhanceditems/consumable/adrenal/deuterium-pyro-special.json +++ b/packs/enhanceditems/consumable/adrenal/deuterium-pyro-special.json @@ -115,7 +115,7 @@ }, "duration": { "value": 1, - "units": "" + "units": "hour" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 24, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964492, - "modifiedTime": 1685833928348, + "modifiedTime": 1686621162916, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/giggledust-fine.json b/packs/enhanceditems/consumable/adrenal/giggledust-fine.json index b68ff3e1a..15e90c05f 100644 --- a/packs/enhanceditems/consumable/adrenal/giggledust-fine.json +++ b/packs/enhanceditems/consumable/adrenal/giggledust-fine.json @@ -115,7 +115,7 @@ }, "duration": { "value": 1, - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "wis", - "dc": null, - "scaling": "none" + "dc": 16, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964374, - "modifiedTime": 1685833928318, + "modifiedTime": 1686621162877, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/giggledust-high-quality.json b/packs/enhanceditems/consumable/adrenal/giggledust-high-quality.json index 19e8ac961..b2ad76302 100644 --- a/packs/enhanceditems/consumable/adrenal/giggledust-high-quality.json +++ b/packs/enhanceditems/consumable/adrenal/giggledust-high-quality.json @@ -115,7 +115,7 @@ }, "duration": { "value": "10", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "wis", - "dc": null, - "scaling": "none" + "dc": 20, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964840, - "modifiedTime": 1685833928416, + "modifiedTime": 1686621162988, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/giggledust-potent.json b/packs/enhanceditems/consumable/adrenal/giggledust-potent.json index b4861b0fd..9dc8f0787 100644 --- a/packs/enhanceditems/consumable/adrenal/giggledust-potent.json +++ b/packs/enhanceditems/consumable/adrenal/giggledust-potent.json @@ -115,7 +115,7 @@ }, "duration": { "value": 1, - "units": "" + "units": "hour" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "wis", - "dc": null, - "scaling": "none" + "dc": 22, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964676, - "modifiedTime": 1685833928387, + "modifiedTime": 1686621162959, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/giggledust-pure.json b/packs/enhanceditems/consumable/adrenal/giggledust-pure.json index a0df79438..d78e37944 100644 --- a/packs/enhanceditems/consumable/adrenal/giggledust-pure.json +++ b/packs/enhanceditems/consumable/adrenal/giggledust-pure.json @@ -115,7 +115,7 @@ }, "duration": { "value": 1, - "units": "" + "units": "hour" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "wis", - "dc": null, - "scaling": "none" + "dc": 24, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964452, - "modifiedTime": 1685833928336, + "modifiedTime": 1686621162901, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/giggledust-uncut.json b/packs/enhanceditems/consumable/adrenal/giggledust-uncut.json index c085e8586..a0aaff4f0 100644 --- a/packs/enhanceditems/consumable/adrenal/giggledust-uncut.json +++ b/packs/enhanceditems/consumable/adrenal/giggledust-uncut.json @@ -115,7 +115,7 @@ }, "duration": { "value": "10", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "wis", - "dc": null, - "scaling": "none" + "dc": 18, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964769, - "modifiedTime": 1685833928411, + "modifiedTime": 1686621162983, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/glitterstim-fine.json b/packs/enhanceditems/consumable/adrenal/glitterstim-fine.json index 757e41329..e6d7151f5 100644 --- a/packs/enhanceditems/consumable/adrenal/glitterstim-fine.json +++ b/packs/enhanceditems/consumable/adrenal/glitterstim-fine.json @@ -115,7 +115,7 @@ }, "duration": { "value": 1, - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "wis", - "dc": null, - "scaling": "none" + "dc": 16, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964516, - "modifiedTime": 1685833928352, + "modifiedTime": 1686621162923, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/glitterstim-high-quality.json b/packs/enhanceditems/consumable/adrenal/glitterstim-high-quality.json index b0f0fe83a..97263a7bf 100644 --- a/packs/enhanceditems/consumable/adrenal/glitterstim-high-quality.json +++ b/packs/enhanceditems/consumable/adrenal/glitterstim-high-quality.json @@ -115,7 +115,7 @@ }, "duration": { "value": "10", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "wis", - "dc": null, - "scaling": "none" + "dc": 20, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964859, - "modifiedTime": 1685833928419, + "modifiedTime": 1686621162991, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/glitterstim-potent.json b/packs/enhanceditems/consumable/adrenal/glitterstim-potent.json index adf4f9ff9..bc61e455b 100644 --- a/packs/enhanceditems/consumable/adrenal/glitterstim-potent.json +++ b/packs/enhanceditems/consumable/adrenal/glitterstim-potent.json @@ -115,7 +115,7 @@ }, "duration": { "value": 1, - "units": "" + "units": "hour" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "wis", - "dc": null, - "scaling": "none" + "dc": 22, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964888, - "modifiedTime": 1685833928425, + "modifiedTime": 1686621162997, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/glitterstim-pure.json b/packs/enhanceditems/consumable/adrenal/glitterstim-pure.json index ba98a34dd..226729a9f 100644 --- a/packs/enhanceditems/consumable/adrenal/glitterstim-pure.json +++ b/packs/enhanceditems/consumable/adrenal/glitterstim-pure.json @@ -115,7 +115,7 @@ }, "duration": { "value": 1, - "units": "" + "units": "hour" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "wis", - "dc": null, - "scaling": "none" + "dc": 24, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964727, - "modifiedTime": 1685833928401, + "modifiedTime": 1686621162973, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/glitterstim-uncut.json b/packs/enhanceditems/consumable/adrenal/glitterstim-uncut.json index a50e834f6..b0eabc5a9 100644 --- a/packs/enhanceditems/consumable/adrenal/glitterstim-uncut.json +++ b/packs/enhanceditems/consumable/adrenal/glitterstim-uncut.json @@ -115,7 +115,7 @@ }, "duration": { "value": "10", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "wis", - "dc": null, - "scaling": "none" + "dc": 18, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964854, - "modifiedTime": 1685833928418, + "modifiedTime": 1686621162990, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/karrak-fine.json b/packs/enhanceditems/consumable/adrenal/karrak-fine.json index c9414adca..d8ad37950 100644 --- a/packs/enhanceditems/consumable/adrenal/karrak-fine.json +++ b/packs/enhanceditems/consumable/adrenal/karrak-fine.json @@ -119,7 +119,7 @@ }, "duration": { "value": 1, - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -146,7 +146,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -177,8 +177,8 @@ "formula": "", "save": { "ability": "wis", - "dc": null, - "scaling": "none" + "dc": 16, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -189,10 +189,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964675, - "modifiedTime": 1685833928387, + "modifiedTime": 1686621162959, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/karrak-high-quality.json b/packs/enhanceditems/consumable/adrenal/karrak-high-quality.json index bde97f5a5..e4553a8a0 100644 --- a/packs/enhanceditems/consumable/adrenal/karrak-high-quality.json +++ b/packs/enhanceditems/consumable/adrenal/karrak-high-quality.json @@ -119,7 +119,7 @@ }, "duration": { "value": "10", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -146,7 +146,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -177,8 +177,8 @@ "formula": "", "save": { "ability": "wis", - "dc": null, - "scaling": "none" + "dc": 20, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -189,10 +189,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964766, - "modifiedTime": 1685833928411, + "modifiedTime": 1686621162982, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/karrak-potent.json b/packs/enhanceditems/consumable/adrenal/karrak-potent.json index ccbc6affd..e6fcbf6de 100644 --- a/packs/enhanceditems/consumable/adrenal/karrak-potent.json +++ b/packs/enhanceditems/consumable/adrenal/karrak-potent.json @@ -119,7 +119,7 @@ }, "duration": { "value": 1, - "units": "" + "units": "hour" }, "cover": null, "target": { @@ -146,7 +146,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -177,8 +177,8 @@ "formula": "", "save": { "ability": "wis", - "dc": null, - "scaling": "none" + "dc": 22, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -189,10 +189,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964737, - "modifiedTime": 1685833928404, + "modifiedTime": 1686621162975, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/karrak-pure.json b/packs/enhanceditems/consumable/adrenal/karrak-pure.json index 27e34c0bf..bd94228a4 100644 --- a/packs/enhanceditems/consumable/adrenal/karrak-pure.json +++ b/packs/enhanceditems/consumable/adrenal/karrak-pure.json @@ -119,7 +119,7 @@ }, "duration": { "value": 1, - "units": "" + "units": "hour" }, "cover": null, "target": { @@ -146,7 +146,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -177,8 +177,8 @@ "formula": "", "save": { "ability": "wis", - "dc": null, - "scaling": "none" + "dc": 24, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -189,10 +189,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964980, - "modifiedTime": 1685833928442, + "modifiedTime": 1686621163036, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/karrak-uncut.json b/packs/enhanceditems/consumable/adrenal/karrak-uncut.json index 0cc237da4..7eaefd918 100644 --- a/packs/enhanceditems/consumable/adrenal/karrak-uncut.json +++ b/packs/enhanceditems/consumable/adrenal/karrak-uncut.json @@ -119,7 +119,7 @@ }, "duration": { "value": "10", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -146,7 +146,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -177,8 +177,8 @@ "formula": "", "save": { "ability": "wis", - "dc": null, - "scaling": "none" + "dc": 18, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -189,10 +189,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964707, - "modifiedTime": 1685833928395, + "modifiedTime": 1686621162968, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/mummergy-aged.json b/packs/enhanceditems/consumable/adrenal/mummergy-aged.json index bf3fe9dce..490db6334 100644 --- a/packs/enhanceditems/consumable/adrenal/mummergy-aged.json +++ b/packs/enhanceditems/consumable/adrenal/mummergy-aged.json @@ -115,7 +115,7 @@ }, "duration": { "value": "10", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 20, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964470, - "modifiedTime": 1685833928342, + "modifiedTime": 1686621162910, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/mummergy-fine.json b/packs/enhanceditems/consumable/adrenal/mummergy-fine.json index f5aedf8d7..dfe425aa1 100644 --- a/packs/enhanceditems/consumable/adrenal/mummergy-fine.json +++ b/packs/enhanceditems/consumable/adrenal/mummergy-fine.json @@ -115,7 +115,7 @@ }, "duration": { "value": 1, - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 16, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493965011, - "modifiedTime": 1685833928448, + "modifiedTime": 1686621163046, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/mummergy-matured.json b/packs/enhanceditems/consumable/adrenal/mummergy-matured.json index dd6efcee2..261f3f1b8 100644 --- a/packs/enhanceditems/consumable/adrenal/mummergy-matured.json +++ b/packs/enhanceditems/consumable/adrenal/mummergy-matured.json @@ -115,7 +115,7 @@ }, "duration": { "value": "10", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 18, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493965006, - "modifiedTime": 1685833928447, + "modifiedTime": 1686621163045, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/mummergy-reserve.json b/packs/enhanceditems/consumable/adrenal/mummergy-reserve.json index 81c85df06..eebccfb8d 100644 --- a/packs/enhanceditems/consumable/adrenal/mummergy-reserve.json +++ b/packs/enhanceditems/consumable/adrenal/mummergy-reserve.json @@ -115,7 +115,7 @@ }, "duration": { "value": 1, - "units": "" + "units": "hour" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 22, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964626, - "modifiedTime": 1685833928377, + "modifiedTime": 1686621162948, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/mummergy-special.json b/packs/enhanceditems/consumable/adrenal/mummergy-special.json index de8bfbb48..1ab9d5f21 100644 --- a/packs/enhanceditems/consumable/adrenal/mummergy-special.json +++ b/packs/enhanceditems/consumable/adrenal/mummergy-special.json @@ -115,7 +115,7 @@ }, "duration": { "value": 1, - "units": "" + "units": "hour" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 24, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493965002, - "modifiedTime": 1685833928446, + "modifiedTime": 1686621163042, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/muon-gold-fine.json b/packs/enhanceditems/consumable/adrenal/muon-gold-fine.json index 3b0fd7b4f..ac963745c 100644 --- a/packs/enhanceditems/consumable/adrenal/muon-gold-fine.json +++ b/packs/enhanceditems/consumable/adrenal/muon-gold-fine.json @@ -115,7 +115,7 @@ }, "duration": { "value": 1, - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "wis", - "dc": null, - "scaling": "none" + "dc": 16, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964889, - "modifiedTime": 1685833928425, + "modifiedTime": 1686621162998, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/muon-gold-high-quality.json b/packs/enhanceditems/consumable/adrenal/muon-gold-high-quality.json index 90b6eb318..12ebe1ac9 100644 --- a/packs/enhanceditems/consumable/adrenal/muon-gold-high-quality.json +++ b/packs/enhanceditems/consumable/adrenal/muon-gold-high-quality.json @@ -115,7 +115,7 @@ }, "duration": { "value": "10", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "wis", - "dc": null, - "scaling": "none" + "dc": 20, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964471, - "modifiedTime": 1685833928342, + "modifiedTime": 1686621162911, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/muon-gold-potent.json b/packs/enhanceditems/consumable/adrenal/muon-gold-potent.json index bae8f7015..c1c807cd1 100644 --- a/packs/enhanceditems/consumable/adrenal/muon-gold-potent.json +++ b/packs/enhanceditems/consumable/adrenal/muon-gold-potent.json @@ -115,7 +115,7 @@ }, "duration": { "value": 1, - "units": "" + "units": "hour" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "wis", - "dc": null, - "scaling": "none" + "dc": 22, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964480, - "modifiedTime": 1685833928343, + "modifiedTime": 1686621162912, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/muon-gold-pure.json b/packs/enhanceditems/consumable/adrenal/muon-gold-pure.json index 1ccd0b886..9fb09921c 100644 --- a/packs/enhanceditems/consumable/adrenal/muon-gold-pure.json +++ b/packs/enhanceditems/consumable/adrenal/muon-gold-pure.json @@ -115,7 +115,7 @@ }, "duration": { "value": 1, - "units": "" + "units": "hour" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "wis", - "dc": null, - "scaling": "none" + "dc": 24, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493965009, - "modifiedTime": 1685833928448, + "modifiedTime": 1686621163046, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/muon-gold-uncut.json b/packs/enhanceditems/consumable/adrenal/muon-gold-uncut.json index 1a2d23d9d..51bba0c7d 100644 --- a/packs/enhanceditems/consumable/adrenal/muon-gold-uncut.json +++ b/packs/enhanceditems/consumable/adrenal/muon-gold-uncut.json @@ -115,7 +115,7 @@ }, "duration": { "value": "10", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "wis", - "dc": null, - "scaling": "none" + "dc": 18, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964767, - "modifiedTime": 1685833928411, + "modifiedTime": 1686621162983, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/novanian-grog-aged.json b/packs/enhanceditems/consumable/adrenal/novanian-grog-aged.json index cb7ce6186..7f6940a1f 100644 --- a/packs/enhanceditems/consumable/adrenal/novanian-grog-aged.json +++ b/packs/enhanceditems/consumable/adrenal/novanian-grog-aged.json @@ -115,7 +115,7 @@ }, "duration": { "value": "10", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 20, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964983, - "modifiedTime": 1685833928443, + "modifiedTime": 1686621163037, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/novanian-grog-fine.json b/packs/enhanceditems/consumable/adrenal/novanian-grog-fine.json index f963cb22b..9358c4455 100644 --- a/packs/enhanceditems/consumable/adrenal/novanian-grog-fine.json +++ b/packs/enhanceditems/consumable/adrenal/novanian-grog-fine.json @@ -115,7 +115,7 @@ }, "duration": { "value": 1, - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 16, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964875, - "modifiedTime": 1685833928422, + "modifiedTime": 1686621162994, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/novanian-grog-matured.json b/packs/enhanceditems/consumable/adrenal/novanian-grog-matured.json index 452ad6bf0..e3b03e67e 100644 --- a/packs/enhanceditems/consumable/adrenal/novanian-grog-matured.json +++ b/packs/enhanceditems/consumable/adrenal/novanian-grog-matured.json @@ -115,7 +115,7 @@ }, "duration": { "value": "10", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 18, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964979, - "modifiedTime": 1685833928442, + "modifiedTime": 1686621163036, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/novanian-grog-reserve.json b/packs/enhanceditems/consumable/adrenal/novanian-grog-reserve.json index c58c5def3..cf7fa8e6c 100644 --- a/packs/enhanceditems/consumable/adrenal/novanian-grog-reserve.json +++ b/packs/enhanceditems/consumable/adrenal/novanian-grog-reserve.json @@ -115,7 +115,7 @@ }, "duration": { "value": 1, - "units": "" + "units": "hour" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 22, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964525, - "modifiedTime": 1685833928355, + "modifiedTime": 1686621162928, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/novanian-grog-special.json b/packs/enhanceditems/consumable/adrenal/novanian-grog-special.json index 9f11af959..a47effe23 100644 --- a/packs/enhanceditems/consumable/adrenal/novanian-grog-special.json +++ b/packs/enhanceditems/consumable/adrenal/novanian-grog-special.json @@ -115,7 +115,7 @@ }, "duration": { "value": 1, - "units": "" + "units": "hour" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 24, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964523, - "modifiedTime": 1685833928354, + "modifiedTime": 1686621162927, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/raava-aged.json b/packs/enhanceditems/consumable/adrenal/raava-aged.json index f2178f049..7f07e7335 100644 --- a/packs/enhanceditems/consumable/adrenal/raava-aged.json +++ b/packs/enhanceditems/consumable/adrenal/raava-aged.json @@ -115,7 +115,7 @@ }, "duration": { "value": "10", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 20, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964837, - "modifiedTime": 1685833928415, + "modifiedTime": 1686621162988, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/raava-fine.json b/packs/enhanceditems/consumable/adrenal/raava-fine.json index 892823bcb..380a7c659 100644 --- a/packs/enhanceditems/consumable/adrenal/raava-fine.json +++ b/packs/enhanceditems/consumable/adrenal/raava-fine.json @@ -115,7 +115,7 @@ }, "duration": { "value": 1, - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 16, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964732, - "modifiedTime": 1685833928402, + "modifiedTime": 1686621162974, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/raava-matured.json b/packs/enhanceditems/consumable/adrenal/raava-matured.json index 8b71144c0..647c8a86a 100644 --- a/packs/enhanceditems/consumable/adrenal/raava-matured.json +++ b/packs/enhanceditems/consumable/adrenal/raava-matured.json @@ -115,7 +115,7 @@ }, "duration": { "value": "10", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 18, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964680, - "modifiedTime": 1685833928389, + "modifiedTime": 1686621162961, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/raava-reserve.json b/packs/enhanceditems/consumable/adrenal/raava-reserve.json index d95af12e4..9105b5070 100644 --- a/packs/enhanceditems/consumable/adrenal/raava-reserve.json +++ b/packs/enhanceditems/consumable/adrenal/raava-reserve.json @@ -115,7 +115,7 @@ }, "duration": { "value": 1, - "units": "" + "units": "hour" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 22, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964931, - "modifiedTime": 1685833928433, + "modifiedTime": 1686621163016, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/raava-special.json b/packs/enhanceditems/consumable/adrenal/raava-special.json index ff6ca7ae2..f0b1d036f 100644 --- a/packs/enhanceditems/consumable/adrenal/raava-special.json +++ b/packs/enhanceditems/consumable/adrenal/raava-special.json @@ -115,7 +115,7 @@ }, "duration": { "value": 1, - "units": "" + "units": "hour" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 24, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964395, - "modifiedTime": 1685833928327, + "modifiedTime": 1686621162888, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/spicebrew-aged.json b/packs/enhanceditems/consumable/adrenal/spicebrew-aged.json index 9ede6fe41..aafe5c01c 100644 --- a/packs/enhanceditems/consumable/adrenal/spicebrew-aged.json +++ b/packs/enhanceditems/consumable/adrenal/spicebrew-aged.json @@ -115,7 +115,7 @@ }, "duration": { "value": "10", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 20, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964870, - "modifiedTime": 1685833928422, + "modifiedTime": 1686621162993, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/spicebrew-fine.json b/packs/enhanceditems/consumable/adrenal/spicebrew-fine.json index 535938a8c..54a5cd8ec 100644 --- a/packs/enhanceditems/consumable/adrenal/spicebrew-fine.json +++ b/packs/enhanceditems/consumable/adrenal/spicebrew-fine.json @@ -115,7 +115,7 @@ }, "duration": { "value": 1, - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 16, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964528, - "modifiedTime": 1685833928355, + "modifiedTime": 1686621162928, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/spicebrew-matured.json b/packs/enhanceditems/consumable/adrenal/spicebrew-matured.json index fc9dee6ef..8b1297380 100644 --- a/packs/enhanceditems/consumable/adrenal/spicebrew-matured.json +++ b/packs/enhanceditems/consumable/adrenal/spicebrew-matured.json @@ -115,7 +115,7 @@ }, "duration": { "value": "10", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 18, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964553, - "modifiedTime": 1685833928366, + "modifiedTime": 1686621162937, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/spicebrew-reserve.json b/packs/enhanceditems/consumable/adrenal/spicebrew-reserve.json index 27fa649cc..b36482a99 100644 --- a/packs/enhanceditems/consumable/adrenal/spicebrew-reserve.json +++ b/packs/enhanceditems/consumable/adrenal/spicebrew-reserve.json @@ -115,7 +115,7 @@ }, "duration": { "value": 1, - "units": "" + "units": "hour" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 22, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493965069, - "modifiedTime": 1685833928453, + "modifiedTime": 1686621163049, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/spicebrew-special.json b/packs/enhanceditems/consumable/adrenal/spicebrew-special.json index b5e959cc2..d74d2d173 100644 --- a/packs/enhanceditems/consumable/adrenal/spicebrew-special.json +++ b/packs/enhanceditems/consumable/adrenal/spicebrew-special.json @@ -115,7 +115,7 @@ }, "duration": { "value": 1, - "units": "" + "units": "hour" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 24, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964783, - "modifiedTime": 1685833928413, + "modifiedTime": 1686621162986, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/tihaar-aged.json b/packs/enhanceditems/consumable/adrenal/tihaar-aged.json index f283d64ef..e8ffe5610 100644 --- a/packs/enhanceditems/consumable/adrenal/tihaar-aged.json +++ b/packs/enhanceditems/consumable/adrenal/tihaar-aged.json @@ -119,7 +119,7 @@ }, "duration": { "value": "10", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -146,7 +146,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -177,8 +177,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 20, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -189,10 +189,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964868, - "modifiedTime": 1685833928421, + "modifiedTime": 1686621162993, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/tihaar-fine.json b/packs/enhanceditems/consumable/adrenal/tihaar-fine.json index e0f5a946f..90338a034 100644 --- a/packs/enhanceditems/consumable/adrenal/tihaar-fine.json +++ b/packs/enhanceditems/consumable/adrenal/tihaar-fine.json @@ -119,7 +119,7 @@ }, "duration": { "value": 1, - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -146,7 +146,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -177,8 +177,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 16, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -189,10 +189,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964431, - "modifiedTime": 1685833928331, + "modifiedTime": 1686621162896, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/tihaar-matured.json b/packs/enhanceditems/consumable/adrenal/tihaar-matured.json index 9383e7e57..0979fa04a 100644 --- a/packs/enhanceditems/consumable/adrenal/tihaar-matured.json +++ b/packs/enhanceditems/consumable/adrenal/tihaar-matured.json @@ -119,7 +119,7 @@ }, "duration": { "value": "10", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -146,7 +146,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -177,8 +177,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 18, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -189,10 +189,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964970, - "modifiedTime": 1685833928441, + "modifiedTime": 1686621163033, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/tihaar-reserve.json b/packs/enhanceditems/consumable/adrenal/tihaar-reserve.json index 583dc3fce..6b9d86afc 100644 --- a/packs/enhanceditems/consumable/adrenal/tihaar-reserve.json +++ b/packs/enhanceditems/consumable/adrenal/tihaar-reserve.json @@ -119,7 +119,7 @@ }, "duration": { "value": 1, - "units": "" + "units": "hour" }, "cover": null, "target": { @@ -146,7 +146,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -177,8 +177,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 22, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -189,10 +189,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964728, - "modifiedTime": 1685833928401, + "modifiedTime": 1686621162973, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/tihaar-special.json b/packs/enhanceditems/consumable/adrenal/tihaar-special.json index b6f01e2c2..7b6a8516e 100644 --- a/packs/enhanceditems/consumable/adrenal/tihaar-special.json +++ b/packs/enhanceditems/consumable/adrenal/tihaar-special.json @@ -119,7 +119,7 @@ }, "duration": { "value": 1, - "units": "" + "units": "hour" }, "cover": null, "target": { @@ -146,7 +146,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -177,8 +177,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 24, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -189,10 +189,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964651, - "modifiedTime": 1685833928381, + "modifiedTime": 1686621162954, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/tsiraki-aged.json b/packs/enhanceditems/consumable/adrenal/tsiraki-aged.json index d278c8192..0c69f72d2 100644 --- a/packs/enhanceditems/consumable/adrenal/tsiraki-aged.json +++ b/packs/enhanceditems/consumable/adrenal/tsiraki-aged.json @@ -115,7 +115,7 @@ }, "duration": { "value": "10", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 20, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964976, - "modifiedTime": 1685833928441, + "modifiedTime": 1686621163034, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/tsiraki-fine.json b/packs/enhanceditems/consumable/adrenal/tsiraki-fine.json index f5bf34156..e49366f05 100644 --- a/packs/enhanceditems/consumable/adrenal/tsiraki-fine.json +++ b/packs/enhanceditems/consumable/adrenal/tsiraki-fine.json @@ -115,7 +115,7 @@ }, "duration": { "value": 1, - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 16, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964534, - "modifiedTime": 1685833928357, + "modifiedTime": 1686621162930, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/tsiraki-matured.json b/packs/enhanceditems/consumable/adrenal/tsiraki-matured.json index 925447b86..76e2f4b5d 100644 --- a/packs/enhanceditems/consumable/adrenal/tsiraki-matured.json +++ b/packs/enhanceditems/consumable/adrenal/tsiraki-matured.json @@ -115,7 +115,7 @@ }, "duration": { "value": "10", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 18, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964704, - "modifiedTime": 1685833928395, + "modifiedTime": 1686621162967, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/tsiraki-reserve.json b/packs/enhanceditems/consumable/adrenal/tsiraki-reserve.json index df408747f..2fb4f4de4 100644 --- a/packs/enhanceditems/consumable/adrenal/tsiraki-reserve.json +++ b/packs/enhanceditems/consumable/adrenal/tsiraki-reserve.json @@ -115,7 +115,7 @@ }, "duration": { "value": 1, - "units": "" + "units": "hour" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 22, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964549, - "modifiedTime": 1685833928364, + "modifiedTime": 1686621162935, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/tsiraki-special.json b/packs/enhanceditems/consumable/adrenal/tsiraki-special.json index b79474ad2..ad6d751ca 100644 --- a/packs/enhanceditems/consumable/adrenal/tsiraki-special.json +++ b/packs/enhanceditems/consumable/adrenal/tsiraki-special.json @@ -115,7 +115,7 @@ }, "duration": { "value": 1, - "units": "" + "units": "hour" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 24, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964948, - "modifiedTime": 1685833928436, + "modifiedTime": 1686621163022, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/vayerbok-aged.json b/packs/enhanceditems/consumable/adrenal/vayerbok-aged.json index ad6de80d4..e13b8ef53 100644 --- a/packs/enhanceditems/consumable/adrenal/vayerbok-aged.json +++ b/packs/enhanceditems/consumable/adrenal/vayerbok-aged.json @@ -115,7 +115,7 @@ }, "duration": { "value": "10", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 20, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964865, - "modifiedTime": 1685833928421, + "modifiedTime": 1686621162992, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/vayerbok-fine.json b/packs/enhanceditems/consumable/adrenal/vayerbok-fine.json index 4c1f095ee..354d76702 100644 --- a/packs/enhanceditems/consumable/adrenal/vayerbok-fine.json +++ b/packs/enhanceditems/consumable/adrenal/vayerbok-fine.json @@ -115,7 +115,7 @@ }, "duration": { "value": 1, - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 16, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964690, - "modifiedTime": 1685833928392, + "modifiedTime": 1686621162963, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/vayerbok-matured.json b/packs/enhanceditems/consumable/adrenal/vayerbok-matured.json index 4c885e961..a4ad707af 100644 --- a/packs/enhanceditems/consumable/adrenal/vayerbok-matured.json +++ b/packs/enhanceditems/consumable/adrenal/vayerbok-matured.json @@ -115,7 +115,7 @@ }, "duration": { "value": "10", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 18, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493965011, - "modifiedTime": 1685833928448, + "modifiedTime": 1686621163046, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/vayerbok-reserve.json b/packs/enhanceditems/consumable/adrenal/vayerbok-reserve.json index b96876a43..296d9c291 100644 --- a/packs/enhanceditems/consumable/adrenal/vayerbok-reserve.json +++ b/packs/enhanceditems/consumable/adrenal/vayerbok-reserve.json @@ -115,7 +115,7 @@ }, "duration": { "value": 1, - "units": "" + "units": "hour" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 22, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964750, - "modifiedTime": 1685833928407, + "modifiedTime": 1686621162977, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/vayerbok-special.json b/packs/enhanceditems/consumable/adrenal/vayerbok-special.json index de5951bc5..844750fca 100644 --- a/packs/enhanceditems/consumable/adrenal/vayerbok-special.json +++ b/packs/enhanceditems/consumable/adrenal/vayerbok-special.json @@ -115,7 +115,7 @@ }, "duration": { "value": 1, - "units": "" + "units": "hour" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 24, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964554, - "modifiedTime": 1685833928366, + "modifiedTime": 1686621162937, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/yaladai-fine.json b/packs/enhanceditems/consumable/adrenal/yaladai-fine.json index a21e3d0e1..22832456f 100644 --- a/packs/enhanceditems/consumable/adrenal/yaladai-fine.json +++ b/packs/enhanceditems/consumable/adrenal/yaladai-fine.json @@ -115,7 +115,7 @@ }, "duration": { "value": 1, - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "wis", - "dc": null, - "scaling": "none" + "dc": 16, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964430, - "modifiedTime": 1685833928330, + "modifiedTime": 1686621162896, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/yaladai-high-quality.json b/packs/enhanceditems/consumable/adrenal/yaladai-high-quality.json index 9c282507b..763684a70 100644 --- a/packs/enhanceditems/consumable/adrenal/yaladai-high-quality.json +++ b/packs/enhanceditems/consumable/adrenal/yaladai-high-quality.json @@ -115,7 +115,7 @@ }, "duration": { "value": "10", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "wis", - "dc": null, - "scaling": "none" + "dc": 20, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964662, - "modifiedTime": 1685833928383, + "modifiedTime": 1686621162956, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/yaladai-potent.json b/packs/enhanceditems/consumable/adrenal/yaladai-potent.json index 393eb0554..6be003204 100644 --- a/packs/enhanceditems/consumable/adrenal/yaladai-potent.json +++ b/packs/enhanceditems/consumable/adrenal/yaladai-potent.json @@ -115,7 +115,7 @@ }, "duration": { "value": 1, - "units": "" + "units": "hour" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "wis", - "dc": null, - "scaling": "none" + "dc": 22, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964680, - "modifiedTime": 1685833928389, + "modifiedTime": 1686621162961, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/yaladai-pure.json b/packs/enhanceditems/consumable/adrenal/yaladai-pure.json index a31842680..ad898fc16 100644 --- a/packs/enhanceditems/consumable/adrenal/yaladai-pure.json +++ b/packs/enhanceditems/consumable/adrenal/yaladai-pure.json @@ -115,7 +115,7 @@ }, "duration": { "value": 1, - "units": "" + "units": "hour" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "wis", - "dc": null, - "scaling": "none" + "dc": 24, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964614, - "modifiedTime": 1685833928374, + "modifiedTime": 1686621162943, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/yaladai-uncut.json b/packs/enhanceditems/consumable/adrenal/yaladai-uncut.json index 217bd1ffe..b706231cd 100644 --- a/packs/enhanceditems/consumable/adrenal/yaladai-uncut.json +++ b/packs/enhanceditems/consumable/adrenal/yaladai-uncut.json @@ -115,7 +115,7 @@ }, "duration": { "value": "10", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "wis", - "dc": null, - "scaling": "none" + "dc": 18, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964981, - "modifiedTime": 1685833928443, + "modifiedTime": 1686621163037, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/yarrock-fine.json b/packs/enhanceditems/consumable/adrenal/yarrock-fine.json index 76b048959..334eec456 100644 --- a/packs/enhanceditems/consumable/adrenal/yarrock-fine.json +++ b/packs/enhanceditems/consumable/adrenal/yarrock-fine.json @@ -115,7 +115,7 @@ }, "duration": { "value": 1, - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "wis", - "dc": null, - "scaling": "none" + "dc": 16, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964631, - "modifiedTime": 1685833928378, + "modifiedTime": 1686621162948, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/yarrock-high-quality.json b/packs/enhanceditems/consumable/adrenal/yarrock-high-quality.json index 9563b6dc2..ea29e0b25 100644 --- a/packs/enhanceditems/consumable/adrenal/yarrock-high-quality.json +++ b/packs/enhanceditems/consumable/adrenal/yarrock-high-quality.json @@ -115,7 +115,7 @@ }, "duration": { "value": "10", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "wis", - "dc": null, - "scaling": "none" + "dc": 20, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964988, - "modifiedTime": 1685833928444, + "modifiedTime": 1686621163039, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/yarrock-potent.json b/packs/enhanceditems/consumable/adrenal/yarrock-potent.json index c9dec0b18..22f11fdc2 100644 --- a/packs/enhanceditems/consumable/adrenal/yarrock-potent.json +++ b/packs/enhanceditems/consumable/adrenal/yarrock-potent.json @@ -115,7 +115,7 @@ }, "duration": { "value": 1, - "units": "" + "units": "hour" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "wis", - "dc": null, - "scaling": "none" + "dc": 22, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964474, - "modifiedTime": 1685833928343, + "modifiedTime": 1686621162912, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/yarrock-pure.json b/packs/enhanceditems/consumable/adrenal/yarrock-pure.json index 763a6a928..fe881f227 100644 --- a/packs/enhanceditems/consumable/adrenal/yarrock-pure.json +++ b/packs/enhanceditems/consumable/adrenal/yarrock-pure.json @@ -115,7 +115,7 @@ }, "duration": { "value": 1, - "units": "" + "units": "hour" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "wis", - "dc": null, - "scaling": "none" + "dc": 24, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964426, - "modifiedTime": 1685833928329, + "modifiedTime": 1686621162891, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/adrenal/yarrock-uncut.json b/packs/enhanceditems/consumable/adrenal/yarrock-uncut.json index e6ad85ff3..78c20c535 100644 --- a/packs/enhanceditems/consumable/adrenal/yarrock-uncut.json +++ b/packs/enhanceditems/consumable/adrenal/yarrock-uncut.json @@ -115,7 +115,7 @@ }, "duration": { "value": "10", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "wis", - "dc": null, - "scaling": "none" + "dc": 18, + "scaling": "flat" }, "consumableType": "adrenal", "ammoType": null, @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964614, - "modifiedTime": 1685833928374, + "modifiedTime": 1686621162943, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/cartridge/corrosive-cartridge-average.json b/packs/enhanceditems/consumable/ammo/cartridge/corrosive-cartridge-average.json index f25321855..c5a4802c5 100644 --- a/packs/enhanceditems/consumable/ammo/cartridge/corrosive-cartridge-average.json +++ b/packs/enhanceditems/consumable/ammo/cartridge/corrosive-cartridge-average.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": "1", "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 16, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "cartridge", @@ -172,10 +172,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964521, - "modifiedTime": 1685833928354, + "modifiedTime": 1686621162927, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/cartridge/corrosive-cartridge-deadly.json b/packs/enhanceditems/consumable/ammo/cartridge/corrosive-cartridge-deadly.json index 5288bbe39..547da4281 100644 --- a/packs/enhanceditems/consumable/ammo/cartridge/corrosive-cartridge-deadly.json +++ b/packs/enhanceditems/consumable/ammo/cartridge/corrosive-cartridge-deadly.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": "3", "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 20, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "cartridge", @@ -172,10 +172,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964898, - "modifiedTime": 1685833928427, + "modifiedTime": 1686621163002, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/cartridge/corrosive-cartridge-devastating.json b/packs/enhanceditems/consumable/ammo/cartridge/corrosive-cartridge-devastating.json index 956f99bc6..e677d561f 100644 --- a/packs/enhanceditems/consumable/ammo/cartridge/corrosive-cartridge-devastating.json +++ b/packs/enhanceditems/consumable/ammo/cartridge/corrosive-cartridge-devastating.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": "3", "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 24, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "cartridge", @@ -172,10 +172,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964705, - "modifiedTime": 1685833928395, + "modifiedTime": 1686621162968, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/cartridge/corrosive-cartridge-lethal.json b/packs/enhanceditems/consumable/ammo/cartridge/corrosive-cartridge-lethal.json index 9a167b076..68aed6879 100644 --- a/packs/enhanceditems/consumable/ammo/cartridge/corrosive-cartridge-lethal.json +++ b/packs/enhanceditems/consumable/ammo/cartridge/corrosive-cartridge-lethal.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": "3", "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 22, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "cartridge", @@ -172,10 +172,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964427, - "modifiedTime": 1685833928330, + "modifiedTime": 1686621162893, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/cartridge/corrosive-cartridge-major.json b/packs/enhanceditems/consumable/ammo/cartridge/corrosive-cartridge-major.json index 9ce34b888..9b6aee27e 100644 --- a/packs/enhanceditems/consumable/ammo/cartridge/corrosive-cartridge-major.json +++ b/packs/enhanceditems/consumable/ammo/cartridge/corrosive-cartridge-major.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": "2", "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 18, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "cartridge", @@ -172,10 +172,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964540, - "modifiedTime": 1685833928359, + "modifiedTime": 1686621162933, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/cartridge/electrifying-cartridge-average.json b/packs/enhanceditems/consumable/ammo/cartridge/electrifying-cartridge-average.json index 295bdf9fd..f08f9ac74 100644 --- a/packs/enhanceditems/consumable/ammo/cartridge/electrifying-cartridge-average.json +++ b/packs/enhanceditems/consumable/ammo/cartridge/electrifying-cartridge-average.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": "1", "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 16, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "cartridge", @@ -172,10 +172,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964960, - "modifiedTime": 1685833928439, + "modifiedTime": 1686621163031, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/cartridge/electrifying-cartridge-deadly.json b/packs/enhanceditems/consumable/ammo/cartridge/electrifying-cartridge-deadly.json index 3dd05b572..a0f18d99a 100644 --- a/packs/enhanceditems/consumable/ammo/cartridge/electrifying-cartridge-deadly.json +++ b/packs/enhanceditems/consumable/ammo/cartridge/electrifying-cartridge-deadly.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": "3", "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 20, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "cartridge", @@ -172,10 +172,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964997, - "modifiedTime": 1685833928445, + "modifiedTime": 1686621163041, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/cartridge/electrifying-cartridge-devastating.json b/packs/enhanceditems/consumable/ammo/cartridge/electrifying-cartridge-devastating.json index ecc99aa61..9f26fdd0c 100644 --- a/packs/enhanceditems/consumable/ammo/cartridge/electrifying-cartridge-devastating.json +++ b/packs/enhanceditems/consumable/ammo/cartridge/electrifying-cartridge-devastating.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": "3", "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 24, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "cartridge", @@ -172,10 +172,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493965016, - "modifiedTime": 1685833928449, + "modifiedTime": 1686621163047, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/cartridge/electrifying-cartridge-lethal.json b/packs/enhanceditems/consumable/ammo/cartridge/electrifying-cartridge-lethal.json index 23f64f74b..4ac71b019 100644 --- a/packs/enhanceditems/consumable/ammo/cartridge/electrifying-cartridge-lethal.json +++ b/packs/enhanceditems/consumable/ammo/cartridge/electrifying-cartridge-lethal.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": "3", "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 22, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "cartridge", @@ -172,10 +172,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493965070, - "modifiedTime": 1685833928453, + "modifiedTime": 1686621163049, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/cartridge/electrifying-cartridge-major.json b/packs/enhanceditems/consumable/ammo/cartridge/electrifying-cartridge-major.json index 0ac86b3e3..bf1f25dc6 100644 --- a/packs/enhanceditems/consumable/ammo/cartridge/electrifying-cartridge-major.json +++ b/packs/enhanceditems/consumable/ammo/cartridge/electrifying-cartridge-major.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": "2", "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 18, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "cartridge", @@ -172,10 +172,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964511, - "modifiedTime": 1685833928351, + "modifiedTime": 1686621162922, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/cartridge/gas-cartridge-average.json b/packs/enhanceditems/consumable/ammo/cartridge/gas-cartridge-average.json index 6a66a1fa9..a70b0a721 100644 --- a/packs/enhanceditems/consumable/ammo/cartridge/gas-cartridge-average.json +++ b/packs/enhanceditems/consumable/ammo/cartridge/gas-cartridge-average.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": "1", "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 16, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "cartridge", @@ -172,10 +172,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493965072, - "modifiedTime": 1685833928454, + "modifiedTime": 1686621163050, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/cartridge/gas-cartridge-deadly.json b/packs/enhanceditems/consumable/ammo/cartridge/gas-cartridge-deadly.json index a6a714bf9..15fa1ecd7 100644 --- a/packs/enhanceditems/consumable/ammo/cartridge/gas-cartridge-deadly.json +++ b/packs/enhanceditems/consumable/ammo/cartridge/gas-cartridge-deadly.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": "3", "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 20, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "cartridge", @@ -172,10 +172,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964611, - "modifiedTime": 1685833928372, + "modifiedTime": 1686621162943, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/cartridge/gas-cartridge-devastating.json b/packs/enhanceditems/consumable/ammo/cartridge/gas-cartridge-devastating.json index 9625ae6d5..9d71bf684 100644 --- a/packs/enhanceditems/consumable/ammo/cartridge/gas-cartridge-devastating.json +++ b/packs/enhanceditems/consumable/ammo/cartridge/gas-cartridge-devastating.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": "3", "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 24, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "cartridge", @@ -172,10 +172,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964715, - "modifiedTime": 1685833928398, + "modifiedTime": 1686621162970, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/cartridge/gas-cartridge-lethal.json b/packs/enhanceditems/consumable/ammo/cartridge/gas-cartridge-lethal.json index 5c9052ffe..4efa77d9b 100644 --- a/packs/enhanceditems/consumable/ammo/cartridge/gas-cartridge-lethal.json +++ b/packs/enhanceditems/consumable/ammo/cartridge/gas-cartridge-lethal.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": "3", "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 22, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "cartridge", @@ -172,10 +172,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964966, - "modifiedTime": 1685833928440, + "modifiedTime": 1686621163032, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/cartridge/gas-cartridge-major.json b/packs/enhanceditems/consumable/ammo/cartridge/gas-cartridge-major.json index d5a5a4183..6ace71abf 100644 --- a/packs/enhanceditems/consumable/ammo/cartridge/gas-cartridge-major.json +++ b/packs/enhanceditems/consumable/ammo/cartridge/gas-cartridge-major.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": "2", "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 18, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "cartridge", @@ -172,10 +172,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964857, - "modifiedTime": 1685833928418, + "modifiedTime": 1686621162991, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/cartridge/slug-cartridge-average.json b/packs/enhanceditems/consumable/ammo/cartridge/slug-cartridge-average.json index c327200c6..19282428e 100644 --- a/packs/enhanceditems/consumable/ammo/cartridge/slug-cartridge-average.json +++ b/packs/enhanceditems/consumable/ammo/cartridge/slug-cartridge-average.json @@ -144,7 +144,12 @@ "damage": "" }, "damage": { - "parts": [], + "parts": [ + [ + "1", + "" + ] + ], "versatile": "" }, "formula": "", @@ -163,10 +168,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964848, - "modifiedTime": 1685833928417, + "modifiedTime": 1686621162989, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/cartridge/slug-cartridge-deadly.json b/packs/enhanceditems/consumable/ammo/cartridge/slug-cartridge-deadly.json index 3119e9c56..052c722b3 100644 --- a/packs/enhanceditems/consumable/ammo/cartridge/slug-cartridge-deadly.json +++ b/packs/enhanceditems/consumable/ammo/cartridge/slug-cartridge-deadly.json @@ -144,7 +144,12 @@ "damage": "" }, "damage": { - "parts": [], + "parts": [ + [ + "3", + "" + ] + ], "versatile": "" }, "formula": "", @@ -163,10 +168,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964493, - "modifiedTime": 1685833928348, + "modifiedTime": 1686621162916, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/cartridge/slug-cartridge-major.json b/packs/enhanceditems/consumable/ammo/cartridge/slug-cartridge-major.json index 668a872c8..d6fa33caa 100644 --- a/packs/enhanceditems/consumable/ammo/cartridge/slug-cartridge-major.json +++ b/packs/enhanceditems/consumable/ammo/cartridge/slug-cartridge-major.json @@ -144,7 +144,12 @@ "damage": "" }, "damage": { - "parts": [], + "parts": [ + [ + "2", + "" + ] + ], "versatile": "" }, "formula": "", @@ -163,10 +168,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964546, - "modifiedTime": 1685833928363, + "modifiedTime": 1686621162934, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/dart/deafening-dart-average.json b/packs/enhanceditems/consumable/ammo/dart/deafening-dart-average.json index 525c8b723..f9b1d65cf 100644 --- a/packs/enhanceditems/consumable/ammo/dart/deafening-dart-average.json +++ b/packs/enhanceditems/consumable/ammo/dart/deafening-dart-average.json @@ -115,7 +115,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": "1", "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 16, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "dart", @@ -178,10 +178,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964453, - "modifiedTime": 1685833928336, + "modifiedTime": 1686621162901, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/dart/deafening-dart-deadly.json b/packs/enhanceditems/consumable/ammo/dart/deafening-dart-deadly.json index 9dcc0b63d..4be0625b0 100644 --- a/packs/enhanceditems/consumable/ammo/dart/deafening-dart-deadly.json +++ b/packs/enhanceditems/consumable/ammo/dart/deafening-dart-deadly.json @@ -115,7 +115,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": "3", "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 20, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "dart", @@ -178,10 +178,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964514, - "modifiedTime": 1685833928352, + "modifiedTime": 1686621162922, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/dart/deafening-dart-devastating.json b/packs/enhanceditems/consumable/ammo/dart/deafening-dart-devastating.json index 85bb59e62..5770cedfd 100644 --- a/packs/enhanceditems/consumable/ammo/dart/deafening-dart-devastating.json +++ b/packs/enhanceditems/consumable/ammo/dart/deafening-dart-devastating.json @@ -115,7 +115,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": "3", "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 24, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "dart", @@ -178,10 +178,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964645, - "modifiedTime": 1685833928380, + "modifiedTime": 1686621162953, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/dart/deafening-dart-lethal.json b/packs/enhanceditems/consumable/ammo/dart/deafening-dart-lethal.json index adac869d2..29cce6048 100644 --- a/packs/enhanceditems/consumable/ammo/dart/deafening-dart-lethal.json +++ b/packs/enhanceditems/consumable/ammo/dart/deafening-dart-lethal.json @@ -115,7 +115,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": "3", "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 22, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "dart", @@ -178,10 +178,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964393, - "modifiedTime": 1685833928327, + "modifiedTime": 1686621162887, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/dart/deafening-dart-major.json b/packs/enhanceditems/consumable/ammo/dart/deafening-dart-major.json index de40a48a4..8715cd98c 100644 --- a/packs/enhanceditems/consumable/ammo/dart/deafening-dart-major.json +++ b/packs/enhanceditems/consumable/ammo/dart/deafening-dart-major.json @@ -115,7 +115,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": "2", "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 18, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "dart", @@ -178,10 +178,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964487, - "modifiedTime": 1685833928345, + "modifiedTime": 1686621162914, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/dart/electrifying-dart-average.json b/packs/enhanceditems/consumable/ammo/dart/electrifying-dart-average.json index 20a3b82ab..eccff5f22 100644 --- a/packs/enhanceditems/consumable/ammo/dart/electrifying-dart-average.json +++ b/packs/enhanceditems/consumable/ammo/dart/electrifying-dart-average.json @@ -115,7 +115,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": "1", "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 16, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "dart", @@ -178,10 +178,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964696, - "modifiedTime": 1685833928393, + "modifiedTime": 1686621162964, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/dart/electrifying-dart-deadly.json b/packs/enhanceditems/consumable/ammo/dart/electrifying-dart-deadly.json index 3ba047c6f..f8538a9f8 100644 --- a/packs/enhanceditems/consumable/ammo/dart/electrifying-dart-deadly.json +++ b/packs/enhanceditems/consumable/ammo/dart/electrifying-dart-deadly.json @@ -115,7 +115,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": "3", "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 20, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "dart", @@ -178,10 +178,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964668, - "modifiedTime": 1685833928386, + "modifiedTime": 1686621162957, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/dart/electrifying-dart-devastating.json b/packs/enhanceditems/consumable/ammo/dart/electrifying-dart-devastating.json index c3b750c48..c80da99d0 100644 --- a/packs/enhanceditems/consumable/ammo/dart/electrifying-dart-devastating.json +++ b/packs/enhanceditems/consumable/ammo/dart/electrifying-dart-devastating.json @@ -115,7 +115,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": "3", "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 24, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "dart", @@ -178,10 +178,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964460, - "modifiedTime": 1685833928339, + "modifiedTime": 1686621162907, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/dart/electrifying-dart-lethal.json b/packs/enhanceditems/consumable/ammo/dart/electrifying-dart-lethal.json index 267c8d20a..2818c8537 100644 --- a/packs/enhanceditems/consumable/ammo/dart/electrifying-dart-lethal.json +++ b/packs/enhanceditems/consumable/ammo/dart/electrifying-dart-lethal.json @@ -115,7 +115,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": "3", "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 22, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "dart", @@ -178,10 +178,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964526, - "modifiedTime": 1685833928355, + "modifiedTime": 1686621162928, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/dart/electrifying-dart-major.json b/packs/enhanceditems/consumable/ammo/dart/electrifying-dart-major.json index 8ec824d5f..fd0502569 100644 --- a/packs/enhanceditems/consumable/ammo/dart/electrifying-dart-major.json +++ b/packs/enhanceditems/consumable/ammo/dart/electrifying-dart-major.json @@ -115,7 +115,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": "2", "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 18, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "dart", @@ -178,10 +178,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964676, - "modifiedTime": 1685833928388, + "modifiedTime": 1686621162960, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/dart/panic-dart-average.json b/packs/enhanceditems/consumable/ammo/dart/panic-dart-average.json index 660acaf7a..bc9087e3b 100644 --- a/packs/enhanceditems/consumable/ammo/dart/panic-dart-average.json +++ b/packs/enhanceditems/consumable/ammo/dart/panic-dart-average.json @@ -115,7 +115,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": "1", "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "wis", - "dc": null, - "scaling": "none" + "dc": 16, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "dart", @@ -178,10 +178,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964495, - "modifiedTime": 1685833928348, + "modifiedTime": 1686621162916, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/dart/panic-dart-deadly.json b/packs/enhanceditems/consumable/ammo/dart/panic-dart-deadly.json index d78119869..4d7d55d90 100644 --- a/packs/enhanceditems/consumable/ammo/dart/panic-dart-deadly.json +++ b/packs/enhanceditems/consumable/ammo/dart/panic-dart-deadly.json @@ -115,7 +115,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": "3", "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "wis", - "dc": null, - "scaling": "none" + "dc": 20, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "dart", @@ -178,10 +178,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964740, - "modifiedTime": 1685833928405, + "modifiedTime": 1686621162975, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/dart/panic-dart-devastating.json b/packs/enhanceditems/consumable/ammo/dart/panic-dart-devastating.json index 5a168f62b..377d8a594 100644 --- a/packs/enhanceditems/consumable/ammo/dart/panic-dart-devastating.json +++ b/packs/enhanceditems/consumable/ammo/dart/panic-dart-devastating.json @@ -115,7 +115,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": "3", "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "wis", - "dc": null, - "scaling": "none" + "dc": 24, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "dart", @@ -178,10 +178,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964959, - "modifiedTime": 1685833928438, + "modifiedTime": 1686621163031, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/dart/panic-dart-lethal.json b/packs/enhanceditems/consumable/ammo/dart/panic-dart-lethal.json index 15d96fc0f..5495d1522 100644 --- a/packs/enhanceditems/consumable/ammo/dart/panic-dart-lethal.json +++ b/packs/enhanceditems/consumable/ammo/dart/panic-dart-lethal.json @@ -115,7 +115,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": "3", "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "wis", - "dc": null, - "scaling": "none" + "dc": 22, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "dart", @@ -178,10 +178,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964877, - "modifiedTime": 1685833928423, + "modifiedTime": 1686621162994, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/dart/panic-dart-major.json b/packs/enhanceditems/consumable/ammo/dart/panic-dart-major.json index 98c22a567..2336afdaa 100644 --- a/packs/enhanceditems/consumable/ammo/dart/panic-dart-major.json +++ b/packs/enhanceditems/consumable/ammo/dart/panic-dart-major.json @@ -115,7 +115,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": "2", "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "wis", - "dc": null, - "scaling": "none" + "dc": 18, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "dart", @@ -178,10 +178,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964537, - "modifiedTime": 1685833928358, + "modifiedTime": 1686621162932, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/deafening-calibrator-average.json b/packs/enhanceditems/consumable/ammo/deafening-calibrator-average.json index e669a6246..9ee23bd68 100644 --- a/packs/enhanceditems/consumable/ammo/deafening-calibrator-average.json +++ b/packs/enhanceditems/consumable/ammo/deafening-calibrator-average.json @@ -109,7 +109,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -162,10 +162,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964524, - "modifiedTime": 1685833928355, + "modifiedTime": 1686621162927, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/deafening-calibrator-deadly.json b/packs/enhanceditems/consumable/ammo/deafening-calibrator-deadly.json index 9f59d870e..c717258ed 100644 --- a/packs/enhanceditems/consumable/ammo/deafening-calibrator-deadly.json +++ b/packs/enhanceditems/consumable/ammo/deafening-calibrator-deadly.json @@ -109,7 +109,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -162,10 +162,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964785, - "modifiedTime": 1685833928414, + "modifiedTime": 1686621162986, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/deafening-calibrator-devastating.json b/packs/enhanceditems/consumable/ammo/deafening-calibrator-devastating.json index abfe628e0..240f14632 100644 --- a/packs/enhanceditems/consumable/ammo/deafening-calibrator-devastating.json +++ b/packs/enhanceditems/consumable/ammo/deafening-calibrator-devastating.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964893, - "modifiedTime": 1685833928426, + "modifiedTime": 1686621162999, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/deafening-calibrator-lethal.json b/packs/enhanceditems/consumable/ammo/deafening-calibrator-lethal.json index 2c560565f..302f8f370 100644 --- a/packs/enhanceditems/consumable/ammo/deafening-calibrator-lethal.json +++ b/packs/enhanceditems/consumable/ammo/deafening-calibrator-lethal.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964780, - "modifiedTime": 1685833928413, + "modifiedTime": 1686621162985, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/deafening-calibrator-major.json b/packs/enhanceditems/consumable/ammo/deafening-calibrator-major.json index 34b0104ef..e15531842 100644 --- a/packs/enhanceditems/consumable/ammo/deafening-calibrator-major.json +++ b/packs/enhanceditems/consumable/ammo/deafening-calibrator-major.json @@ -109,7 +109,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -162,10 +162,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964911, - "modifiedTime": 1685833928429, + "modifiedTime": 1686621163007, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/deafening-collimator-average.json b/packs/enhanceditems/consumable/ammo/deafening-collimator-average.json index d96d6bec7..b28f42b0a 100644 --- a/packs/enhanceditems/consumable/ammo/deafening-collimator-average.json +++ b/packs/enhanceditems/consumable/ammo/deafening-collimator-average.json @@ -109,7 +109,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -162,10 +162,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964845, - "modifiedTime": 1685833928416, + "modifiedTime": 1686621162989, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/deafening-collimator-deadly.json b/packs/enhanceditems/consumable/ammo/deafening-collimator-deadly.json index 8b091170a..e649134f2 100644 --- a/packs/enhanceditems/consumable/ammo/deafening-collimator-deadly.json +++ b/packs/enhanceditems/consumable/ammo/deafening-collimator-deadly.json @@ -109,7 +109,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -162,10 +162,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964894, - "modifiedTime": 1685833928426, + "modifiedTime": 1686621163000, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/deafening-collimator-devastating.json b/packs/enhanceditems/consumable/ammo/deafening-collimator-devastating.json index 7a6243e85..9f24d0f8c 100644 --- a/packs/enhanceditems/consumable/ammo/deafening-collimator-devastating.json +++ b/packs/enhanceditems/consumable/ammo/deafening-collimator-devastating.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964450, - "modifiedTime": 1685833928336, + "modifiedTime": 1686621162901, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/deafening-collimator-lethal.json b/packs/enhanceditems/consumable/ammo/deafening-collimator-lethal.json index 3bb15697c..949e1547e 100644 --- a/packs/enhanceditems/consumable/ammo/deafening-collimator-lethal.json +++ b/packs/enhanceditems/consumable/ammo/deafening-collimator-lethal.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964770, - "modifiedTime": 1685833928411, + "modifiedTime": 1686621162983, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/deafening-collimator-major.json b/packs/enhanceditems/consumable/ammo/deafening-collimator-major.json index 94e14803d..0607d862c 100644 --- a/packs/enhanceditems/consumable/ammo/deafening-collimator-major.json +++ b/packs/enhanceditems/consumable/ammo/deafening-collimator-major.json @@ -109,7 +109,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -162,10 +162,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964967, - "modifiedTime": 1685833928440, + "modifiedTime": 1686621163032, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/electrifying-calibrator-average.json b/packs/enhanceditems/consumable/ammo/electrifying-calibrator-average.json index 86ac3a01c..636606e8e 100644 --- a/packs/enhanceditems/consumable/ammo/electrifying-calibrator-average.json +++ b/packs/enhanceditems/consumable/ammo/electrifying-calibrator-average.json @@ -109,7 +109,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -162,10 +162,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964380, - "modifiedTime": 1685833928320, + "modifiedTime": 1686621162879, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/electrifying-calibrator-deadly.json b/packs/enhanceditems/consumable/ammo/electrifying-calibrator-deadly.json index 9c3a767b5..d66eefb4b 100644 --- a/packs/enhanceditems/consumable/ammo/electrifying-calibrator-deadly.json +++ b/packs/enhanceditems/consumable/ammo/electrifying-calibrator-deadly.json @@ -109,7 +109,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -162,10 +162,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493965013, - "modifiedTime": 1685833928448, + "modifiedTime": 1686621163047, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/electrifying-calibrator-devastating.json b/packs/enhanceditems/consumable/ammo/electrifying-calibrator-devastating.json index d8e71953a..ffaab6355 100644 --- a/packs/enhanceditems/consumable/ammo/electrifying-calibrator-devastating.json +++ b/packs/enhanceditems/consumable/ammo/electrifying-calibrator-devastating.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964402, - "modifiedTime": 1685833928328, + "modifiedTime": 1686621162889, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/electrifying-calibrator-lethal.json b/packs/enhanceditems/consumable/ammo/electrifying-calibrator-lethal.json index 8941d87d8..0e99e2675 100644 --- a/packs/enhanceditems/consumable/ammo/electrifying-calibrator-lethal.json +++ b/packs/enhanceditems/consumable/ammo/electrifying-calibrator-lethal.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964712, - "modifiedTime": 1685833928397, + "modifiedTime": 1686621162969, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/electrifying-calibrator-major.json b/packs/enhanceditems/consumable/ammo/electrifying-calibrator-major.json index 50a78e7fc..0fa375500 100644 --- a/packs/enhanceditems/consumable/ammo/electrifying-calibrator-major.json +++ b/packs/enhanceditems/consumable/ammo/electrifying-calibrator-major.json @@ -109,7 +109,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -162,10 +162,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964708, - "modifiedTime": 1685833928396, + "modifiedTime": 1686621162968, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/electrifying-collimator-average.json b/packs/enhanceditems/consumable/ammo/electrifying-collimator-average.json index 66c9790c7..8a1a36a4c 100644 --- a/packs/enhanceditems/consumable/ammo/electrifying-collimator-average.json +++ b/packs/enhanceditems/consumable/ammo/electrifying-collimator-average.json @@ -109,7 +109,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -162,10 +162,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964651, - "modifiedTime": 1685833928381, + "modifiedTime": 1686621162954, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/electrifying-collimator-deadly.json b/packs/enhanceditems/consumable/ammo/electrifying-collimator-deadly.json index f6aaf4a0e..40f711981 100644 --- a/packs/enhanceditems/consumable/ammo/electrifying-collimator-deadly.json +++ b/packs/enhanceditems/consumable/ammo/electrifying-collimator-deadly.json @@ -109,7 +109,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -162,10 +162,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964354, - "modifiedTime": 1685833928306, + "modifiedTime": 1686621162863, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/electrifying-collimator-devastating.json b/packs/enhanceditems/consumable/ammo/electrifying-collimator-devastating.json index c2c6d436b..51e80fc4e 100644 --- a/packs/enhanceditems/consumable/ammo/electrifying-collimator-devastating.json +++ b/packs/enhanceditems/consumable/ammo/electrifying-collimator-devastating.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493965097, - "modifiedTime": 1685833928464, + "modifiedTime": 1686621163056, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/electrifying-collimator-lethal.json b/packs/enhanceditems/consumable/ammo/electrifying-collimator-lethal.json index a24cb44d4..99b6b08a2 100644 --- a/packs/enhanceditems/consumable/ammo/electrifying-collimator-lethal.json +++ b/packs/enhanceditems/consumable/ammo/electrifying-collimator-lethal.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493965097, - "modifiedTime": 1685833928463, + "modifiedTime": 1686621163056, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/electrifying-collimator-major.json b/packs/enhanceditems/consumable/ammo/electrifying-collimator-major.json index 363ceb4a9..b823eca66 100644 --- a/packs/enhanceditems/consumable/ammo/electrifying-collimator-major.json +++ b/packs/enhanceditems/consumable/ammo/electrifying-collimator-major.json @@ -109,7 +109,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -162,10 +162,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964887, - "modifiedTime": 1685833928425, + "modifiedTime": 1686621162996, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/flechetteClip/flechette-clip-fragmentation-average.json b/packs/enhanceditems/consumable/ammo/flechetteClip/flechette-clip-fragmentation-average.json index 3177886df..8843debbd 100644 --- a/packs/enhanceditems/consumable/ammo/flechetteClip/flechette-clip-fragmentation-average.json +++ b/packs/enhanceditems/consumable/ammo/flechetteClip/flechette-clip-fragmentation-average.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 16, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "flechetteClip", @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964868, - "modifiedTime": 1685833928421, + "modifiedTime": 1686621162993, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/flechetteClip/flechette-clip-fragmentation-deadly.json b/packs/enhanceditems/consumable/ammo/flechetteClip/flechette-clip-fragmentation-deadly.json index b1cd2eb08..1d883129d 100644 --- a/packs/enhanceditems/consumable/ammo/flechetteClip/flechette-clip-fragmentation-deadly.json +++ b/packs/enhanceditems/consumable/ammo/flechetteClip/flechette-clip-fragmentation-deadly.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 20, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "flechetteClip", @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493965084, - "modifiedTime": 1685833928459, + "modifiedTime": 1686621163052, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/flechetteClip/flechette-clip-fragmentation-devastating.json b/packs/enhanceditems/consumable/ammo/flechetteClip/flechette-clip-fragmentation-devastating.json index 4aaa69493..55d37d144 100644 --- a/packs/enhanceditems/consumable/ammo/flechetteClip/flechette-clip-fragmentation-devastating.json +++ b/packs/enhanceditems/consumable/ammo/flechetteClip/flechette-clip-fragmentation-devastating.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 24, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "flechetteClip", @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964383, - "modifiedTime": 1685833928322, + "modifiedTime": 1686621162883, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/flechetteClip/flechette-clip-fragmentation-lethal.json b/packs/enhanceditems/consumable/ammo/flechetteClip/flechette-clip-fragmentation-lethal.json index e68be2dc7..623f0b887 100644 --- a/packs/enhanceditems/consumable/ammo/flechetteClip/flechette-clip-fragmentation-lethal.json +++ b/packs/enhanceditems/consumable/ammo/flechetteClip/flechette-clip-fragmentation-lethal.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 22, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "flechetteClip", @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964782, - "modifiedTime": 1685833928413, + "modifiedTime": 1686621162986, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/flechetteClip/flechette-clip-fragmentation-major.json b/packs/enhanceditems/consumable/ammo/flechetteClip/flechette-clip-fragmentation-major.json index 20d0ced38..1ffa7245c 100644 --- a/packs/enhanceditems/consumable/ammo/flechetteClip/flechette-clip-fragmentation-major.json +++ b/packs/enhanceditems/consumable/ammo/flechetteClip/flechette-clip-fragmentation-major.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 18, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "flechetteClip", @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964542, - "modifiedTime": 1685833928361, + "modifiedTime": 1686621162933, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/flechetteClip/flechette-clip-ion-average.json b/packs/enhanceditems/consumable/ammo/flechetteClip/flechette-clip-ion-average.json index ebe90c2d8..f4fe9728a 100644 --- a/packs/enhanceditems/consumable/ammo/flechetteClip/flechette-clip-ion-average.json +++ b/packs/enhanceditems/consumable/ammo/flechetteClip/flechette-clip-ion-average.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 16, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "flechetteClip", @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964882, - "modifiedTime": 1685833928424, + "modifiedTime": 1686621162995, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/flechetteClip/flechette-clip-ion-deadly.json b/packs/enhanceditems/consumable/ammo/flechetteClip/flechette-clip-ion-deadly.json index 5d0b4e5ef..a2d9e210b 100644 --- a/packs/enhanceditems/consumable/ammo/flechetteClip/flechette-clip-ion-deadly.json +++ b/packs/enhanceditems/consumable/ammo/flechetteClip/flechette-clip-ion-deadly.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 20, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "flechetteClip", @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964836, - "modifiedTime": 1685833928415, + "modifiedTime": 1686621162987, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/flechetteClip/flechette-clip-ion-devastating.json b/packs/enhanceditems/consumable/ammo/flechetteClip/flechette-clip-ion-devastating.json index a1aa93f5c..5dfe7c6be 100644 --- a/packs/enhanceditems/consumable/ammo/flechetteClip/flechette-clip-ion-devastating.json +++ b/packs/enhanceditems/consumable/ammo/flechetteClip/flechette-clip-ion-devastating.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 24, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "flechetteClip", @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964565, - "modifiedTime": 1685833928371, + "modifiedTime": 1686621162941, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/flechetteClip/flechette-clip-ion-lethal.json b/packs/enhanceditems/consumable/ammo/flechetteClip/flechette-clip-ion-lethal.json index a9e32dad9..fd54b4f2b 100644 --- a/packs/enhanceditems/consumable/ammo/flechetteClip/flechette-clip-ion-lethal.json +++ b/packs/enhanceditems/consumable/ammo/flechetteClip/flechette-clip-ion-lethal.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 22, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "flechetteClip", @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964880, - "modifiedTime": 1685833928423, + "modifiedTime": 1686621162995, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/flechetteClip/flechette-clip-ion-major.json b/packs/enhanceditems/consumable/ammo/flechetteClip/flechette-clip-ion-major.json index aa7fbf97f..7bbe3ea8b 100644 --- a/packs/enhanceditems/consumable/ammo/flechetteClip/flechette-clip-ion-major.json +++ b/packs/enhanceditems/consumable/ammo/flechetteClip/flechette-clip-ion-major.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 18, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "flechetteClip", @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964735, - "modifiedTime": 1685833928403, + "modifiedTime": 1686621162974, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/flechetteClip/flechette-clip-plasma-average.json b/packs/enhanceditems/consumable/ammo/flechetteClip/flechette-clip-plasma-average.json index a53cddb5f..de737610e 100644 --- a/packs/enhanceditems/consumable/ammo/flechetteClip/flechette-clip-plasma-average.json +++ b/packs/enhanceditems/consumable/ammo/flechetteClip/flechette-clip-plasma-average.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 16, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "flechetteClip", @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964844, - "modifiedTime": 1685833928416, + "modifiedTime": 1686621162989, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/flechetteClip/flechette-clip-plasma-deadly.json b/packs/enhanceditems/consumable/ammo/flechetteClip/flechette-clip-plasma-deadly.json index 5255850b8..721d3a2ad 100644 --- a/packs/enhanceditems/consumable/ammo/flechetteClip/flechette-clip-plasma-deadly.json +++ b/packs/enhanceditems/consumable/ammo/flechetteClip/flechette-clip-plasma-deadly.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 20, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "flechetteClip", @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964559, - "modifiedTime": 1685833928367, + "modifiedTime": 1686621162939, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/flechetteClip/flechette-clip-plasma-devastating.json b/packs/enhanceditems/consumable/ammo/flechetteClip/flechette-clip-plasma-devastating.json index c2d63852b..cdb049c8e 100644 --- a/packs/enhanceditems/consumable/ammo/flechetteClip/flechette-clip-plasma-devastating.json +++ b/packs/enhanceditems/consumable/ammo/flechetteClip/flechette-clip-plasma-devastating.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 24, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "flechetteClip", @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964784, - "modifiedTime": 1685833928414, + "modifiedTime": 1686621162986, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/flechetteClip/flechette-clip-plasma-lethal.json b/packs/enhanceditems/consumable/ammo/flechetteClip/flechette-clip-plasma-lethal.json index 505de3967..587832a74 100644 --- a/packs/enhanceditems/consumable/ammo/flechetteClip/flechette-clip-plasma-lethal.json +++ b/packs/enhanceditems/consumable/ammo/flechetteClip/flechette-clip-plasma-lethal.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 22, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "flechetteClip", @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964715, - "modifiedTime": 1685833928399, + "modifiedTime": 1686621162970, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/flechetteClip/flechette-clip-plasma-major.json b/packs/enhanceditems/consumable/ammo/flechetteClip/flechette-clip-plasma-major.json index bdb354885..118d3e396 100644 --- a/packs/enhanceditems/consumable/ammo/flechetteClip/flechette-clip-plasma-major.json +++ b/packs/enhanceditems/consumable/ammo/flechetteClip/flechette-clip-plasma-major.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 18, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "flechetteClip", @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964553, - "modifiedTime": 1685833928366, + "modifiedTime": 1686621162937, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/flechetteMag/flechette-mag-fragmentation-average.json b/packs/enhanceditems/consumable/ammo/flechetteMag/flechette-mag-fragmentation-average.json index 5938ec7f9..2a271b5ac 100644 --- a/packs/enhanceditems/consumable/ammo/flechetteMag/flechette-mag-fragmentation-average.json +++ b/packs/enhanceditems/consumable/ammo/flechetteMag/flechette-mag-fragmentation-average.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 16, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "flechetteMag", @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964788, - "modifiedTime": 1685833928414, + "modifiedTime": 1686621162986, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/flechetteMag/flechette-mag-fragmentation-deadly.json b/packs/enhanceditems/consumable/ammo/flechetteMag/flechette-mag-fragmentation-deadly.json index 7e5a82b4d..a71faf7fb 100644 --- a/packs/enhanceditems/consumable/ammo/flechetteMag/flechette-mag-fragmentation-deadly.json +++ b/packs/enhanceditems/consumable/ammo/flechetteMag/flechette-mag-fragmentation-deadly.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 20, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "flechetteMag", @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964513, - "modifiedTime": 1685833928351, + "modifiedTime": 1686621162922, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/flechetteMag/flechette-mag-fragmentation-devastating.json b/packs/enhanceditems/consumable/ammo/flechetteMag/flechette-mag-fragmentation-devastating.json index a239cc9b1..d7ec8851d 100644 --- a/packs/enhanceditems/consumable/ammo/flechetteMag/flechette-mag-fragmentation-devastating.json +++ b/packs/enhanceditems/consumable/ammo/flechetteMag/flechette-mag-fragmentation-devastating.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 24, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "flechetteMag", @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964963, - "modifiedTime": 1685833928439, + "modifiedTime": 1686621163031, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/flechetteMag/flechette-mag-fragmentation-lethal.json b/packs/enhanceditems/consumable/ammo/flechetteMag/flechette-mag-fragmentation-lethal.json index 31d10902a..38aa6c146 100644 --- a/packs/enhanceditems/consumable/ammo/flechetteMag/flechette-mag-fragmentation-lethal.json +++ b/packs/enhanceditems/consumable/ammo/flechetteMag/flechette-mag-fragmentation-lethal.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 22, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "flechetteMag", @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493965065, - "modifiedTime": 1685833928452, + "modifiedTime": 1686621163048, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/flechetteMag/flechette-mag-fragmentation-major.json b/packs/enhanceditems/consumable/ammo/flechetteMag/flechette-mag-fragmentation-major.json index a2ba5d1c2..001361a49 100644 --- a/packs/enhanceditems/consumable/ammo/flechetteMag/flechette-mag-fragmentation-major.json +++ b/packs/enhanceditems/consumable/ammo/flechetteMag/flechette-mag-fragmentation-major.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 18, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "flechetteMag", @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964564, - "modifiedTime": 1685833928370, + "modifiedTime": 1686621162941, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/flechetteMag/flechette-mag-ion-average.json b/packs/enhanceditems/consumable/ammo/flechetteMag/flechette-mag-ion-average.json index 5fca24020..0e313e708 100644 --- a/packs/enhanceditems/consumable/ammo/flechetteMag/flechette-mag-ion-average.json +++ b/packs/enhanceditems/consumable/ammo/flechetteMag/flechette-mag-ion-average.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 16, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "flechetteMag", @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964550, - "modifiedTime": 1685833928365, + "modifiedTime": 1686621162935, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/flechetteMag/flechette-mag-ion-deadly.json b/packs/enhanceditems/consumable/ammo/flechetteMag/flechette-mag-ion-deadly.json index b1e1990bc..2cbdb3430 100644 --- a/packs/enhanceditems/consumable/ammo/flechetteMag/flechette-mag-ion-deadly.json +++ b/packs/enhanceditems/consumable/ammo/flechetteMag/flechette-mag-ion-deadly.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 20, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "flechetteMag", @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964779, - "modifiedTime": 1685833928413, + "modifiedTime": 1686621162985, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/flechetteMag/flechette-mag-ion-devastating.json b/packs/enhanceditems/consumable/ammo/flechetteMag/flechette-mag-ion-devastating.json index 8be85fbf3..cdf2478f8 100644 --- a/packs/enhanceditems/consumable/ammo/flechetteMag/flechette-mag-ion-devastating.json +++ b/packs/enhanceditems/consumable/ammo/flechetteMag/flechette-mag-ion-devastating.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 24, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "flechetteMag", @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964671, - "modifiedTime": 1685833928386, + "modifiedTime": 1686621162958, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/flechetteMag/flechette-mag-ion-lethal.json b/packs/enhanceditems/consumable/ammo/flechetteMag/flechette-mag-ion-lethal.json index 700175af7..a85c8daa6 100644 --- a/packs/enhanceditems/consumable/ammo/flechetteMag/flechette-mag-ion-lethal.json +++ b/packs/enhanceditems/consumable/ammo/flechetteMag/flechette-mag-ion-lethal.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 22, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "flechetteMag", @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964388, - "modifiedTime": 1685833928325, + "modifiedTime": 1686621162886, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/flechetteMag/flechette-mag-ion-major.json b/packs/enhanceditems/consumable/ammo/flechetteMag/flechette-mag-ion-major.json index c3ed17baa..292abea5f 100644 --- a/packs/enhanceditems/consumable/ammo/flechetteMag/flechette-mag-ion-major.json +++ b/packs/enhanceditems/consumable/ammo/flechetteMag/flechette-mag-ion-major.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 18, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "flechetteMag", @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964905, - "modifiedTime": 1685833928428, + "modifiedTime": 1686621163004, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/flechetteMag/flechette-mag-plasma-average.json b/packs/enhanceditems/consumable/ammo/flechetteMag/flechette-mag-plasma-average.json index d862242ef..7b6b36102 100644 --- a/packs/enhanceditems/consumable/ammo/flechetteMag/flechette-mag-plasma-average.json +++ b/packs/enhanceditems/consumable/ammo/flechetteMag/flechette-mag-plasma-average.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 16, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "flechetteMag", @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964948, - "modifiedTime": 1685833928436, + "modifiedTime": 1686621163022, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/flechetteMag/flechette-mag-plasma-deadly.json b/packs/enhanceditems/consumable/ammo/flechetteMag/flechette-mag-plasma-deadly.json index 3112aec49..3355de0c8 100644 --- a/packs/enhanceditems/consumable/ammo/flechetteMag/flechette-mag-plasma-deadly.json +++ b/packs/enhanceditems/consumable/ammo/flechetteMag/flechette-mag-plasma-deadly.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 20, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "flechetteMag", @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964754, - "modifiedTime": 1685833928408, + "modifiedTime": 1686621162978, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/flechetteMag/flechette-mag-plasma-devastating.json b/packs/enhanceditems/consumable/ammo/flechetteMag/flechette-mag-plasma-devastating.json index 842d3de22..75d211126 100644 --- a/packs/enhanceditems/consumable/ammo/flechetteMag/flechette-mag-plasma-devastating.json +++ b/packs/enhanceditems/consumable/ammo/flechetteMag/flechette-mag-plasma-devastating.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 24, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "flechetteMag", @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964677, - "modifiedTime": 1685833928388, + "modifiedTime": 1686621162960, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/flechetteMag/flechette-mag-plasma-lethal.json b/packs/enhanceditems/consumable/ammo/flechetteMag/flechette-mag-plasma-lethal.json index 38efd479e..2ec9603b3 100644 --- a/packs/enhanceditems/consumable/ammo/flechetteMag/flechette-mag-plasma-lethal.json +++ b/packs/enhanceditems/consumable/ammo/flechetteMag/flechette-mag-plasma-lethal.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 22, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "flechetteMag", @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964935, - "modifiedTime": 1685833928434, + "modifiedTime": 1686621163017, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/flechetteMag/flechette-mag-plasma-major.json b/packs/enhanceditems/consumable/ammo/flechetteMag/flechette-mag-plasma-major.json index 73fce0145..134161fcf 100644 --- a/packs/enhanceditems/consumable/ammo/flechetteMag/flechette-mag-plasma-major.json +++ b/packs/enhanceditems/consumable/ammo/flechetteMag/flechette-mag-plasma-major.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 18, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "flechetteMag", @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964738, - "modifiedTime": 1685833928404, + "modifiedTime": 1686621162975, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/flux-collimator-average.json b/packs/enhanceditems/consumable/ammo/flux-collimator-average.json index 1823f3590..7288c4e6e 100644 --- a/packs/enhanceditems/consumable/ammo/flux-collimator-average.json +++ b/packs/enhanceditems/consumable/ammo/flux-collimator-average.json @@ -109,7 +109,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -162,10 +162,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964774, - "modifiedTime": 1685833928412, + "modifiedTime": 1686621162984, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/flux-collimator-deadly.json b/packs/enhanceditems/consumable/ammo/flux-collimator-deadly.json index a89c4fde1..de596a182 100644 --- a/packs/enhanceditems/consumable/ammo/flux-collimator-deadly.json +++ b/packs/enhanceditems/consumable/ammo/flux-collimator-deadly.json @@ -109,7 +109,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -162,10 +162,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964473, - "modifiedTime": 1685833928342, + "modifiedTime": 1686621162911, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/flux-collimator-devastating.json b/packs/enhanceditems/consumable/ammo/flux-collimator-devastating.json index 8221514d0..972280c6d 100644 --- a/packs/enhanceditems/consumable/ammo/flux-collimator-devastating.json +++ b/packs/enhanceditems/consumable/ammo/flux-collimator-devastating.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964955, - "modifiedTime": 1685833928438, + "modifiedTime": 1686621163025, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/flux-collimator-lethal.json b/packs/enhanceditems/consumable/ammo/flux-collimator-lethal.json index 9eb378655..725d26b3f 100644 --- a/packs/enhanceditems/consumable/ammo/flux-collimator-lethal.json +++ b/packs/enhanceditems/consumable/ammo/flux-collimator-lethal.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964619, - "modifiedTime": 1685833928376, + "modifiedTime": 1686621162945, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/flux-collimator-major.json b/packs/enhanceditems/consumable/ammo/flux-collimator-major.json index 250b4bd53..628aaff4b 100644 --- a/packs/enhanceditems/consumable/ammo/flux-collimator-major.json +++ b/packs/enhanceditems/consumable/ammo/flux-collimator-major.json @@ -109,7 +109,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -162,10 +162,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964878, - "modifiedTime": 1685833928423, + "modifiedTime": 1686621162995, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/missile/missile-fragmentation-average.json b/packs/enhanceditems/consumable/ammo/missile/missile-fragmentation-average.json index b720d1c6b..7629e11b5 100644 --- a/packs/enhanceditems/consumable/ammo/missile/missile-fragmentation-average.json +++ b/packs/enhanceditems/consumable/ammo/missile/missile-fragmentation-average.json @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": "1", "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 16, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "missile", @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964772, - "modifiedTime": 1685833928412, + "modifiedTime": 1686621162984, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/missile/missile-fragmentation-deadly.json b/packs/enhanceditems/consumable/ammo/missile/missile-fragmentation-deadly.json index ecf9956d7..86cbfbd05 100644 --- a/packs/enhanceditems/consumable/ammo/missile/missile-fragmentation-deadly.json +++ b/packs/enhanceditems/consumable/ammo/missile/missile-fragmentation-deadly.json @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": "3", "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 20, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "missile", @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493965091, - "modifiedTime": 1685833928461, + "modifiedTime": 1686621163055, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/missile/missile-fragmentation-devastating.json b/packs/enhanceditems/consumable/ammo/missile/missile-fragmentation-devastating.json index 53bb62e2f..4a39a9620 100644 --- a/packs/enhanceditems/consumable/ammo/missile/missile-fragmentation-devastating.json +++ b/packs/enhanceditems/consumable/ammo/missile/missile-fragmentation-devastating.json @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": "3", "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 24, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "missile", @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964919, - "modifiedTime": 1685833928431, + "modifiedTime": 1686621163011, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/missile/missile-fragmentation-lethal.json b/packs/enhanceditems/consumable/ammo/missile/missile-fragmentation-lethal.json index 54ba22bd0..d34ef5f66 100644 --- a/packs/enhanceditems/consumable/ammo/missile/missile-fragmentation-lethal.json +++ b/packs/enhanceditems/consumable/ammo/missile/missile-fragmentation-lethal.json @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": "3", "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 22, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "missile", @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964909, - "modifiedTime": 1685833928429, + "modifiedTime": 1686621163006, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/missile/missile-fragmentation-major.json b/packs/enhanceditems/consumable/ammo/missile/missile-fragmentation-major.json index e2c82e8dc..a541cd202 100644 --- a/packs/enhanceditems/consumable/ammo/missile/missile-fragmentation-major.json +++ b/packs/enhanceditems/consumable/ammo/missile/missile-fragmentation-major.json @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": "2", "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 18, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "missile", @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964461, - "modifiedTime": 1685833928340, + "modifiedTime": 1686621162907, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/missile/missile-incendiary-average.json b/packs/enhanceditems/consumable/ammo/missile/missile-incendiary-average.json index 6881dd5f6..cc669a45d 100644 --- a/packs/enhanceditems/consumable/ammo/missile/missile-incendiary-average.json +++ b/packs/enhanceditems/consumable/ammo/missile/missile-incendiary-average.json @@ -115,7 +115,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": "1", "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 16, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "missile", @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964386, - "modifiedTime": 1685833928324, + "modifiedTime": 1686621162885, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/missile/missile-incendiary-deadly.json b/packs/enhanceditems/consumable/ammo/missile/missile-incendiary-deadly.json index a922c2840..2a08f3889 100644 --- a/packs/enhanceditems/consumable/ammo/missile/missile-incendiary-deadly.json +++ b/packs/enhanceditems/consumable/ammo/missile/missile-incendiary-deadly.json @@ -115,7 +115,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": "3", "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 20, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "missile", @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964774, - "modifiedTime": 1685833928412, + "modifiedTime": 1686621162984, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/missile/missile-incendiary-devastating.json b/packs/enhanceditems/consumable/ammo/missile/missile-incendiary-devastating.json index c3287ec68..57695c34c 100644 --- a/packs/enhanceditems/consumable/ammo/missile/missile-incendiary-devastating.json +++ b/packs/enhanceditems/consumable/ammo/missile/missile-incendiary-devastating.json @@ -115,7 +115,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": "3", "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 24, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "missile", @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964883, - "modifiedTime": 1685833928424, + "modifiedTime": 1686621162996, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/missile/missile-incendiary-lethal.json b/packs/enhanceditems/consumable/ammo/missile/missile-incendiary-lethal.json index b8338c68d..015fb4156 100644 --- a/packs/enhanceditems/consumable/ammo/missile/missile-incendiary-lethal.json +++ b/packs/enhanceditems/consumable/ammo/missile/missile-incendiary-lethal.json @@ -115,7 +115,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": "3", "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 22, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "missile", @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964741, - "modifiedTime": 1685833928405, + "modifiedTime": 1686621162975, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/missile/missile-incendiary-major.json b/packs/enhanceditems/consumable/ammo/missile/missile-incendiary-major.json index da1859459..a5e859203 100644 --- a/packs/enhanceditems/consumable/ammo/missile/missile-incendiary-major.json +++ b/packs/enhanceditems/consumable/ammo/missile/missile-incendiary-major.json @@ -115,7 +115,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": "2", "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 18, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "missile", @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964552, - "modifiedTime": 1685833928365, + "modifiedTime": 1686621162936, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/missile/missile-ion-average.json b/packs/enhanceditems/consumable/ammo/missile/missile-ion-average.json index 0d69d3787..a786e4ade 100644 --- a/packs/enhanceditems/consumable/ammo/missile/missile-ion-average.json +++ b/packs/enhanceditems/consumable/ammo/missile/missile-ion-average.json @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": "1", "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 16, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "missile", @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964559, - "modifiedTime": 1685833928367, + "modifiedTime": 1686621162938, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/missile/missile-ion-deadly.json b/packs/enhanceditems/consumable/ammo/missile/missile-ion-deadly.json index 422506af7..ddd8658d7 100644 --- a/packs/enhanceditems/consumable/ammo/missile/missile-ion-deadly.json +++ b/packs/enhanceditems/consumable/ammo/missile/missile-ion-deadly.json @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": "3", "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 20, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "missile", @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964392, - "modifiedTime": 1685833928326, + "modifiedTime": 1686621162887, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/missile/missile-ion-devastating.json b/packs/enhanceditems/consumable/ammo/missile/missile-ion-devastating.json index a72e0ea9d..deaed464e 100644 --- a/packs/enhanceditems/consumable/ammo/missile/missile-ion-devastating.json +++ b/packs/enhanceditems/consumable/ammo/missile/missile-ion-devastating.json @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": "3", "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 24, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "missile", @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964862, - "modifiedTime": 1685833928420, + "modifiedTime": 1686621162992, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/missile/missile-ion-lethal.json b/packs/enhanceditems/consumable/ammo/missile/missile-ion-lethal.json index d77d63634..1a1d7ea81 100644 --- a/packs/enhanceditems/consumable/ammo/missile/missile-ion-lethal.json +++ b/packs/enhanceditems/consumable/ammo/missile/missile-ion-lethal.json @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": "3", "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 22, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "missile", @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964869, - "modifiedTime": 1685833928421, + "modifiedTime": 1686621162993, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/missile/missile-ion-major.json b/packs/enhanceditems/consumable/ammo/missile/missile-ion-major.json index d4d448645..d7210c40c 100644 --- a/packs/enhanceditems/consumable/ammo/missile/missile-ion-major.json +++ b/packs/enhanceditems/consumable/ammo/missile/missile-ion-major.json @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": "2", "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 18, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "missile", @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964923, - "modifiedTime": 1685833928432, + "modifiedTime": 1686621163013, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/oscillation-calibrator-average.json b/packs/enhanceditems/consumable/ammo/oscillation-calibrator-average.json index 55a28710f..37ba19ec7 100644 --- a/packs/enhanceditems/consumable/ammo/oscillation-calibrator-average.json +++ b/packs/enhanceditems/consumable/ammo/oscillation-calibrator-average.json @@ -109,7 +109,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -162,10 +162,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493965012, - "modifiedTime": 1685833928448, + "modifiedTime": 1686621163047, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/oscillation-calibrator-deadly.json b/packs/enhanceditems/consumable/ammo/oscillation-calibrator-deadly.json index 46b5d3870..a6e631080 100644 --- a/packs/enhanceditems/consumable/ammo/oscillation-calibrator-deadly.json +++ b/packs/enhanceditems/consumable/ammo/oscillation-calibrator-deadly.json @@ -109,7 +109,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -162,10 +162,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493965092, - "modifiedTime": 1685833928461, + "modifiedTime": 1686621163055, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/oscillation-calibrator-devastating.json b/packs/enhanceditems/consumable/ammo/oscillation-calibrator-devastating.json index cc9caefc6..cec0361ed 100644 --- a/packs/enhanceditems/consumable/ammo/oscillation-calibrator-devastating.json +++ b/packs/enhanceditems/consumable/ammo/oscillation-calibrator-devastating.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964422, - "modifiedTime": 1685833928328, + "modifiedTime": 1686621162889, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/oscillation-calibrator-lethal.json b/packs/enhanceditems/consumable/ammo/oscillation-calibrator-lethal.json index 5d311f689..048fc9ad1 100644 --- a/packs/enhanceditems/consumable/ammo/oscillation-calibrator-lethal.json +++ b/packs/enhanceditems/consumable/ammo/oscillation-calibrator-lethal.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964657, - "modifiedTime": 1685833928382, + "modifiedTime": 1686621162956, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/oscillation-calibrator-major.json b/packs/enhanceditems/consumable/ammo/oscillation-calibrator-major.json index adfd2778c..1d52fbe49 100644 --- a/packs/enhanceditems/consumable/ammo/oscillation-calibrator-major.json +++ b/packs/enhanceditems/consumable/ammo/oscillation-calibrator-major.json @@ -109,7 +109,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -162,10 +162,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964498, - "modifiedTime": 1685833928349, + "modifiedTime": 1686621162917, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/panic-calibrator-average.json b/packs/enhanceditems/consumable/ammo/panic-calibrator-average.json index 2831b0680..f483eeee8 100644 --- a/packs/enhanceditems/consumable/ammo/panic-calibrator-average.json +++ b/packs/enhanceditems/consumable/ammo/panic-calibrator-average.json @@ -109,7 +109,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -162,10 +162,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964879, - "modifiedTime": 1685833928423, + "modifiedTime": 1686621162995, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/panic-calibrator-deadly.json b/packs/enhanceditems/consumable/ammo/panic-calibrator-deadly.json index edc7fbcb4..3ad7e29cf 100644 --- a/packs/enhanceditems/consumable/ammo/panic-calibrator-deadly.json +++ b/packs/enhanceditems/consumable/ammo/panic-calibrator-deadly.json @@ -109,7 +109,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -162,10 +162,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964499, - "modifiedTime": 1685833928349, + "modifiedTime": 1686621162918, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/panic-calibrator-devastating.json b/packs/enhanceditems/consumable/ammo/panic-calibrator-devastating.json index df309d5c5..e3b616fe8 100644 --- a/packs/enhanceditems/consumable/ammo/panic-calibrator-devastating.json +++ b/packs/enhanceditems/consumable/ammo/panic-calibrator-devastating.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964873, - "modifiedTime": 1685833928422, + "modifiedTime": 1686621162994, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/panic-calibrator-lethal.json b/packs/enhanceditems/consumable/ammo/panic-calibrator-lethal.json index f45bb35b9..6239b6d6d 100644 --- a/packs/enhanceditems/consumable/ammo/panic-calibrator-lethal.json +++ b/packs/enhanceditems/consumable/ammo/panic-calibrator-lethal.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964609, - "modifiedTime": 1685833928372, + "modifiedTime": 1686621162942, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/panic-calibrator-major.json b/packs/enhanceditems/consumable/ammo/panic-calibrator-major.json index f7c305da9..6c4239a24 100644 --- a/packs/enhanceditems/consumable/ammo/panic-calibrator-major.json +++ b/packs/enhanceditems/consumable/ammo/panic-calibrator-major.json @@ -109,7 +109,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -162,10 +162,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964361, - "modifiedTime": 1685833928310, + "modifiedTime": 1686621162868, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/panic-collimator-average.json b/packs/enhanceditems/consumable/ammo/panic-collimator-average.json index 8bacdc24c..6748f57c6 100644 --- a/packs/enhanceditems/consumable/ammo/panic-collimator-average.json +++ b/packs/enhanceditems/consumable/ammo/panic-collimator-average.json @@ -109,7 +109,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -162,10 +162,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964624, - "modifiedTime": 1685833928377, + "modifiedTime": 1686621162947, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/panic-collimator-deadly.json b/packs/enhanceditems/consumable/ammo/panic-collimator-deadly.json index ad9cb3142..13f785357 100644 --- a/packs/enhanceditems/consumable/ammo/panic-collimator-deadly.json +++ b/packs/enhanceditems/consumable/ammo/panic-collimator-deadly.json @@ -109,7 +109,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -162,10 +162,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964543, - "modifiedTime": 1685833928363, + "modifiedTime": 1686621162933, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/panic-collimator-devastating.json b/packs/enhanceditems/consumable/ammo/panic-collimator-devastating.json index 550330689..58ef51aa4 100644 --- a/packs/enhanceditems/consumable/ammo/panic-collimator-devastating.json +++ b/packs/enhanceditems/consumable/ammo/panic-collimator-devastating.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964373, - "modifiedTime": 1685833928317, + "modifiedTime": 1686621162877, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/panic-collimator-lethal.json b/packs/enhanceditems/consumable/ammo/panic-collimator-lethal.json index d2b995e32..60bd09c41 100644 --- a/packs/enhanceditems/consumable/ammo/panic-collimator-lethal.json +++ b/packs/enhanceditems/consumable/ammo/panic-collimator-lethal.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964454, - "modifiedTime": 1685833928336, + "modifiedTime": 1686621162902, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/panic-collimator-major.json b/packs/enhanceditems/consumable/ammo/panic-collimator-major.json index 52422262c..bef3fd264 100644 --- a/packs/enhanceditems/consumable/ammo/panic-collimator-major.json +++ b/packs/enhanceditems/consumable/ammo/panic-collimator-major.json @@ -109,7 +109,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -162,10 +162,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964947, - "modifiedTime": 1685833928436, + "modifiedTime": 1686621163021, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/powerCell/cryo-cell-average.json b/packs/enhanceditems/consumable/ammo/powerCell/cryo-cell-average.json index 5b82d953c..a8a680366 100644 --- a/packs/enhanceditems/consumable/ammo/powerCell/cryo-cell-average.json +++ b/packs/enhanceditems/consumable/ammo/powerCell/cryo-cell-average.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "hour" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": "1", "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 16, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "powerCell", @@ -172,10 +172,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964729, - "modifiedTime": 1685833928401, + "modifiedTime": 1686621162973, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/powerCell/cryo-cell-deadly.json b/packs/enhanceditems/consumable/ammo/powerCell/cryo-cell-deadly.json index 25501233d..eb8ddc363 100644 --- a/packs/enhanceditems/consumable/ammo/powerCell/cryo-cell-deadly.json +++ b/packs/enhanceditems/consumable/ammo/powerCell/cryo-cell-deadly.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "hour" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": "3", "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 20, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "powerCell", @@ -172,10 +172,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493965082, - "modifiedTime": 1685833928458, + "modifiedTime": 1686621163052, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/powerCell/cryo-cell-devastating.json b/packs/enhanceditems/consumable/ammo/powerCell/cryo-cell-devastating.json index b835a237a..b0132d383 100644 --- a/packs/enhanceditems/consumable/ammo/powerCell/cryo-cell-devastating.json +++ b/packs/enhanceditems/consumable/ammo/powerCell/cryo-cell-devastating.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "hour" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": "3", "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 24, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "powerCell", @@ -172,10 +172,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964726, - "modifiedTime": 1685833928400, + "modifiedTime": 1686621162972, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/powerCell/cryo-cell-lethal.json b/packs/enhanceditems/consumable/ammo/powerCell/cryo-cell-lethal.json index e6aef4249..ad0425457 100644 --- a/packs/enhanceditems/consumable/ammo/powerCell/cryo-cell-lethal.json +++ b/packs/enhanceditems/consumable/ammo/powerCell/cryo-cell-lethal.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "hour" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": "3", "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 22, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "powerCell", @@ -172,10 +172,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964505, - "modifiedTime": 1685833928350, + "modifiedTime": 1686621162921, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/powerCell/cryo-cell-major.json b/packs/enhanceditems/consumable/ammo/powerCell/cryo-cell-major.json index 0cbfb0511..a559a9789 100644 --- a/packs/enhanceditems/consumable/ammo/powerCell/cryo-cell-major.json +++ b/packs/enhanceditems/consumable/ammo/powerCell/cryo-cell-major.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "hour" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": "2", "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 18, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "powerCell", @@ -172,10 +172,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964608, - "modifiedTime": 1685833928371, + "modifiedTime": 1686621162942, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/powerCell/deafening-cell-average.json b/packs/enhanceditems/consumable/ammo/powerCell/deafening-cell-average.json index c46973f7e..c4ef57978 100644 --- a/packs/enhanceditems/consumable/ammo/powerCell/deafening-cell-average.json +++ b/packs/enhanceditems/consumable/ammo/powerCell/deafening-cell-average.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": "1", "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 16, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "powerCell", @@ -172,10 +172,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964447, - "modifiedTime": 1685833928334, + "modifiedTime": 1686621162900, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/powerCell/deafening-cell-deadly.json b/packs/enhanceditems/consumable/ammo/powerCell/deafening-cell-deadly.json index e808f2825..7a38135af 100644 --- a/packs/enhanceditems/consumable/ammo/powerCell/deafening-cell-deadly.json +++ b/packs/enhanceditems/consumable/ammo/powerCell/deafening-cell-deadly.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": "3", "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 20, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "powerCell", @@ -172,10 +172,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964957, - "modifiedTime": 1685833928438, + "modifiedTime": 1686621163030, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/powerCell/deafening-cell-devastating.json b/packs/enhanceditems/consumable/ammo/powerCell/deafening-cell-devastating.json index a03d631ad..e1868f1b4 100644 --- a/packs/enhanceditems/consumable/ammo/powerCell/deafening-cell-devastating.json +++ b/packs/enhanceditems/consumable/ammo/powerCell/deafening-cell-devastating.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": "3", "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 24, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "powerCell", @@ -172,10 +172,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964714, - "modifiedTime": 1685833928398, + "modifiedTime": 1686621162970, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/powerCell/deafening-cell-lethal.json b/packs/enhanceditems/consumable/ammo/powerCell/deafening-cell-lethal.json index 33a3d2761..258f65708 100644 --- a/packs/enhanceditems/consumable/ammo/powerCell/deafening-cell-lethal.json +++ b/packs/enhanceditems/consumable/ammo/powerCell/deafening-cell-lethal.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": "3", "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 22, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "powerCell", @@ -172,10 +172,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964767, - "modifiedTime": 1685833928411, + "modifiedTime": 1686621162983, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/powerCell/deafening-cell-major.json b/packs/enhanceditems/consumable/ammo/powerCell/deafening-cell-major.json index ad95ccadb..548dc0bb1 100644 --- a/packs/enhanceditems/consumable/ammo/powerCell/deafening-cell-major.json +++ b/packs/enhanceditems/consumable/ammo/powerCell/deafening-cell-major.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": "2", "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 18, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "powerCell", @@ -172,10 +172,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964731, - "modifiedTime": 1685833928402, + "modifiedTime": 1686621162974, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/powerCell/incendiary-cell-average.json b/packs/enhanceditems/consumable/ammo/powerCell/incendiary-cell-average.json index defb6e08b..4119894db 100644 --- a/packs/enhanceditems/consumable/ammo/powerCell/incendiary-cell-average.json +++ b/packs/enhanceditems/consumable/ammo/powerCell/incendiary-cell-average.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": "1", "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 16, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "powerCell", @@ -172,10 +172,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964398, - "modifiedTime": 1685833928328, + "modifiedTime": 1686621162888, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/powerCell/incendiary-cell-deadly.json b/packs/enhanceditems/consumable/ammo/powerCell/incendiary-cell-deadly.json index 6c69a1444..2085e3071 100644 --- a/packs/enhanceditems/consumable/ammo/powerCell/incendiary-cell-deadly.json +++ b/packs/enhanceditems/consumable/ammo/powerCell/incendiary-cell-deadly.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": "3", "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 20, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "powerCell", @@ -172,10 +172,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964613, - "modifiedTime": 1685833928372, + "modifiedTime": 1686621162943, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/powerCell/incendiary-cell-devastating.json b/packs/enhanceditems/consumable/ammo/powerCell/incendiary-cell-devastating.json index 2ace89433..c9c476018 100644 --- a/packs/enhanceditems/consumable/ammo/powerCell/incendiary-cell-devastating.json +++ b/packs/enhanceditems/consumable/ammo/powerCell/incendiary-cell-devastating.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": "3", "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 24, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "powerCell", @@ -172,10 +172,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964891, - "modifiedTime": 1685833928426, + "modifiedTime": 1686621162999, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/powerCell/incendiary-cell-lethal.json b/packs/enhanceditems/consumable/ammo/powerCell/incendiary-cell-lethal.json index 64903f0f8..9d4afc5b4 100644 --- a/packs/enhanceditems/consumable/ammo/powerCell/incendiary-cell-lethal.json +++ b/packs/enhanceditems/consumable/ammo/powerCell/incendiary-cell-lethal.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": "3", "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 22, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "powerCell", @@ -172,10 +172,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964755, - "modifiedTime": 1685833928408, + "modifiedTime": 1686621162978, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/powerCell/incendiary-cell-major.json b/packs/enhanceditems/consumable/ammo/powerCell/incendiary-cell-major.json index 1808080db..9a5af51a4 100644 --- a/packs/enhanceditems/consumable/ammo/powerCell/incendiary-cell-major.json +++ b/packs/enhanceditems/consumable/ammo/powerCell/incendiary-cell-major.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": "2", "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 18, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "powerCell", @@ -172,10 +172,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964674, - "modifiedTime": 1685833928387, + "modifiedTime": 1686621162959, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/powerCell/power-cell-average.json b/packs/enhanceditems/consumable/ammo/powerCell/power-cell-average.json index 94c2db133..2a78f97bc 100644 --- a/packs/enhanceditems/consumable/ammo/powerCell/power-cell-average.json +++ b/packs/enhanceditems/consumable/ammo/powerCell/power-cell-average.json @@ -144,7 +144,12 @@ "damage": "" }, "damage": { - "parts": [], + "parts": [ + [ + "1", + "" + ] + ], "versatile": "" }, "formula": "", @@ -163,10 +168,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964771, - "modifiedTime": 1685833928412, + "modifiedTime": 1686621162984, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/powerCell/power-cell-deadly.json b/packs/enhanceditems/consumable/ammo/powerCell/power-cell-deadly.json index 83da3316a..f661e5436 100644 --- a/packs/enhanceditems/consumable/ammo/powerCell/power-cell-deadly.json +++ b/packs/enhanceditems/consumable/ammo/powerCell/power-cell-deadly.json @@ -144,7 +144,12 @@ "damage": "" }, "damage": { - "parts": [], + "parts": [ + [ + "3", + "" + ] + ], "versatile": "" }, "formula": "", @@ -163,10 +168,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964943, - "modifiedTime": 1685833928436, + "modifiedTime": 1686621163020, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/powerCell/power-cell-major.json b/packs/enhanceditems/consumable/ammo/powerCell/power-cell-major.json index 96de6c65a..380acae0d 100644 --- a/packs/enhanceditems/consumable/ammo/powerCell/power-cell-major.json +++ b/packs/enhanceditems/consumable/ammo/powerCell/power-cell-major.json @@ -144,7 +144,12 @@ "damage": "" }, "damage": { - "parts": [], + "parts": [ + [ + "2", + "" + ] + ], "versatile": "" }, "formula": "", @@ -163,10 +168,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964463, - "modifiedTime": 1685833928340, + "modifiedTime": 1686621162907, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/powerGenerator/power-generator-average.json b/packs/enhanceditems/consumable/ammo/powerGenerator/power-generator-average.json index 7dd3989e8..bc6a0c0b4 100644 --- a/packs/enhanceditems/consumable/ammo/powerGenerator/power-generator-average.json +++ b/packs/enhanceditems/consumable/ammo/powerGenerator/power-generator-average.json @@ -144,7 +144,12 @@ "damage": "" }, "damage": { - "parts": [], + "parts": [ + [ + "1", + "" + ] + ], "versatile": "" }, "formula": "", @@ -163,10 +168,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964430, - "modifiedTime": 1685833928330, + "modifiedTime": 1686621162895, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/powerGenerator/power-generator-deadly.json b/packs/enhanceditems/consumable/ammo/powerGenerator/power-generator-deadly.json index fa7f00316..c9fe6f454 100644 --- a/packs/enhanceditems/consumable/ammo/powerGenerator/power-generator-deadly.json +++ b/packs/enhanceditems/consumable/ammo/powerGenerator/power-generator-deadly.json @@ -144,7 +144,12 @@ "damage": "" }, "damage": { - "parts": [], + "parts": [ + [ + "3", + "" + ] + ], "versatile": "" }, "formula": "", @@ -163,10 +168,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964407, - "modifiedTime": 1685833928328, + "modifiedTime": 1686621162889, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/powerGenerator/power-generator-major.json b/packs/enhanceditems/consumable/ammo/powerGenerator/power-generator-major.json index 06f377b47..901fdff59 100644 --- a/packs/enhanceditems/consumable/ammo/powerGenerator/power-generator-major.json +++ b/packs/enhanceditems/consumable/ammo/powerGenerator/power-generator-major.json @@ -144,7 +144,12 @@ "damage": "" }, "damage": { - "parts": [], + "parts": [ + [ + "2", + "" + ] + ], "versatile": "" }, "formula": "", @@ -163,10 +168,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964659, - "modifiedTime": 1685833928383, + "modifiedTime": 1686621162956, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/projectorCanister/projector-canister-corrosive-average.json b/packs/enhanceditems/consumable/ammo/projectorCanister/projector-canister-corrosive-average.json index 2fc2d5714..f8952038b 100644 --- a/packs/enhanceditems/consumable/ammo/projectorCanister/projector-canister-corrosive-average.json +++ b/packs/enhanceditems/consumable/ammo/projectorCanister/projector-canister-corrosive-average.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 16, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "projectorCanister", @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964462, - "modifiedTime": 1685833928340, + "modifiedTime": 1686621162907, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/projectorCanister/projector-canister-corrosive-deadly.json b/packs/enhanceditems/consumable/ammo/projectorCanister/projector-canister-corrosive-deadly.json index 58213d68e..d7cc57948 100644 --- a/packs/enhanceditems/consumable/ammo/projectorCanister/projector-canister-corrosive-deadly.json +++ b/packs/enhanceditems/consumable/ammo/projectorCanister/projector-canister-corrosive-deadly.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 20, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "projectorCanister", @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964700, - "modifiedTime": 1685833928394, + "modifiedTime": 1686621162966, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/projectorCanister/projector-canister-corrosive-devastating.json b/packs/enhanceditems/consumable/ammo/projectorCanister/projector-canister-corrosive-devastating.json index b37389a28..817bd23e1 100644 --- a/packs/enhanceditems/consumable/ammo/projectorCanister/projector-canister-corrosive-devastating.json +++ b/packs/enhanceditems/consumable/ammo/projectorCanister/projector-canister-corrosive-devastating.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 24, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "projectorCanister", @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964375, - "modifiedTime": 1685833928318, + "modifiedTime": 1686621162878, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/projectorCanister/projector-canister-corrosive-lethal.json b/packs/enhanceditems/consumable/ammo/projectorCanister/projector-canister-corrosive-lethal.json index 254c3fffc..6b15b0c40 100644 --- a/packs/enhanceditems/consumable/ammo/projectorCanister/projector-canister-corrosive-lethal.json +++ b/packs/enhanceditems/consumable/ammo/projectorCanister/projector-canister-corrosive-lethal.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 22, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "projectorCanister", @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964744, - "modifiedTime": 1685833928406, + "modifiedTime": 1686621162976, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/projectorCanister/projector-canister-corrosive-major.json b/packs/enhanceditems/consumable/ammo/projectorCanister/projector-canister-corrosive-major.json index 7bb3fcb9a..616db30b2 100644 --- a/packs/enhanceditems/consumable/ammo/projectorCanister/projector-canister-corrosive-major.json +++ b/packs/enhanceditems/consumable/ammo/projectorCanister/projector-canister-corrosive-major.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 18, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "projectorCanister", @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493965085, - "modifiedTime": 1685833928459, + "modifiedTime": 1686621163054, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/projectorCanister/projector-canister-cryo-average.json b/packs/enhanceditems/consumable/ammo/projectorCanister/projector-canister-cryo-average.json index 254b1a750..ed7c44c9a 100644 --- a/packs/enhanceditems/consumable/ammo/projectorCanister/projector-canister-cryo-average.json +++ b/packs/enhanceditems/consumable/ammo/projectorCanister/projector-canister-cryo-average.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "hour" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 16, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "projectorCanister", @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964761, - "modifiedTime": 1685833928409, + "modifiedTime": 1686621162980, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/projectorCanister/projector-canister-cryo-deadly.json b/packs/enhanceditems/consumable/ammo/projectorCanister/projector-canister-cryo-deadly.json index 6ec9dd0bd..af9fb37be 100644 --- a/packs/enhanceditems/consumable/ammo/projectorCanister/projector-canister-cryo-deadly.json +++ b/packs/enhanceditems/consumable/ammo/projectorCanister/projector-canister-cryo-deadly.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "hour" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 20, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "projectorCanister", @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964944, - "modifiedTime": 1685833928436, + "modifiedTime": 1686621163021, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/projectorCanister/projector-canister-cryo-devastating.json b/packs/enhanceditems/consumable/ammo/projectorCanister/projector-canister-cryo-devastating.json index d3b6e36f8..385d6c2db 100644 --- a/packs/enhanceditems/consumable/ammo/projectorCanister/projector-canister-cryo-devastating.json +++ b/packs/enhanceditems/consumable/ammo/projectorCanister/projector-canister-cryo-devastating.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "hour" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 24, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "projectorCanister", @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964362, - "modifiedTime": 1685833928312, + "modifiedTime": 1686621162869, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/projectorCanister/projector-canister-cryo-lethal.json b/packs/enhanceditems/consumable/ammo/projectorCanister/projector-canister-cryo-lethal.json index df3ce4062..3fcaf62b4 100644 --- a/packs/enhanceditems/consumable/ammo/projectorCanister/projector-canister-cryo-lethal.json +++ b/packs/enhanceditems/consumable/ammo/projectorCanister/projector-canister-cryo-lethal.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "hour" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 22, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "projectorCanister", @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964934, - "modifiedTime": 1685833928433, + "modifiedTime": 1686621163017, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/projectorCanister/projector-canister-cryo-major.json b/packs/enhanceditems/consumable/ammo/projectorCanister/projector-canister-cryo-major.json index 02cae3dfe..270275106 100644 --- a/packs/enhanceditems/consumable/ammo/projectorCanister/projector-canister-cryo-major.json +++ b/packs/enhanceditems/consumable/ammo/projectorCanister/projector-canister-cryo-major.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "hour" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 18, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "projectorCanister", @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493965087, - "modifiedTime": 1685833928460, + "modifiedTime": 1686621163055, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/projectorCanister/projector-canister-incendiary-average.json b/packs/enhanceditems/consumable/ammo/projectorCanister/projector-canister-incendiary-average.json index ec197320f..dc6e84f87 100644 --- a/packs/enhanceditems/consumable/ammo/projectorCanister/projector-canister-incendiary-average.json +++ b/packs/enhanceditems/consumable/ammo/projectorCanister/projector-canister-incendiary-average.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 16, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "projectorCanister", @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964971, - "modifiedTime": 1685833928441, + "modifiedTime": 1686621163034, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/projectorCanister/projector-canister-incendiary-deadly.json b/packs/enhanceditems/consumable/ammo/projectorCanister/projector-canister-incendiary-deadly.json index ebdeb7d86..954b5a79c 100644 --- a/packs/enhanceditems/consumable/ammo/projectorCanister/projector-canister-incendiary-deadly.json +++ b/packs/enhanceditems/consumable/ammo/projectorCanister/projector-canister-incendiary-deadly.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 20, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "projectorCanister", @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964887, - "modifiedTime": 1685833928425, + "modifiedTime": 1686621162996, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/projectorCanister/projector-canister-incendiary-devastating.json b/packs/enhanceditems/consumable/ammo/projectorCanister/projector-canister-incendiary-devastating.json index 8be0e62d3..af855a1e2 100644 --- a/packs/enhanceditems/consumable/ammo/projectorCanister/projector-canister-incendiary-devastating.json +++ b/packs/enhanceditems/consumable/ammo/projectorCanister/projector-canister-incendiary-devastating.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 24, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "projectorCanister", @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493965081, - "modifiedTime": 1685833928457, + "modifiedTime": 1686621163052, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/projectorCanister/projector-canister-incendiary-lethal.json b/packs/enhanceditems/consumable/ammo/projectorCanister/projector-canister-incendiary-lethal.json index 24e0ceb7f..46b389f4d 100644 --- a/packs/enhanceditems/consumable/ammo/projectorCanister/projector-canister-incendiary-lethal.json +++ b/packs/enhanceditems/consumable/ammo/projectorCanister/projector-canister-incendiary-lethal.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 22, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "projectorCanister", @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964747, - "modifiedTime": 1685833928407, + "modifiedTime": 1686621162977, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/projectorCanister/projector-canister-incendiary-major.json b/packs/enhanceditems/consumable/ammo/projectorCanister/projector-canister-incendiary-major.json index 59f0841cc..7cebe529e 100644 --- a/packs/enhanceditems/consumable/ammo/projectorCanister/projector-canister-incendiary-major.json +++ b/packs/enhanceditems/consumable/ammo/projectorCanister/projector-canister-incendiary-major.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 18, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "projectorCanister", @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964645, - "modifiedTime": 1685833928380, + "modifiedTime": 1686621162950, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/projectorTank/projector-tank-corrosive-average.json b/packs/enhanceditems/consumable/ammo/projectorTank/projector-tank-corrosive-average.json index 3aa027025..231ac9c0d 100644 --- a/packs/enhanceditems/consumable/ammo/projectorTank/projector-tank-corrosive-average.json +++ b/packs/enhanceditems/consumable/ammo/projectorTank/projector-tank-corrosive-average.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 16, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "projectorTank", @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964476, - "modifiedTime": 1685833928343, + "modifiedTime": 1686621162912, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/projectorTank/projector-tank-corrosive-deadly.json b/packs/enhanceditems/consumable/ammo/projectorTank/projector-tank-corrosive-deadly.json index 906024d9c..1fa17a2fc 100644 --- a/packs/enhanceditems/consumable/ammo/projectorTank/projector-tank-corrosive-deadly.json +++ b/packs/enhanceditems/consumable/ammo/projectorTank/projector-tank-corrosive-deadly.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 20, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "projectorTank", @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964449, - "modifiedTime": 1685833928335, + "modifiedTime": 1686621162900, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/projectorTank/projector-tank-corrosive-devastating.json b/packs/enhanceditems/consumable/ammo/projectorTank/projector-tank-corrosive-devastating.json index 85763be42..245760cde 100644 --- a/packs/enhanceditems/consumable/ammo/projectorTank/projector-tank-corrosive-devastating.json +++ b/packs/enhanceditems/consumable/ammo/projectorTank/projector-tank-corrosive-devastating.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 24, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "projectorTank", @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964872, - "modifiedTime": 1685833928422, + "modifiedTime": 1686621162994, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/projectorTank/projector-tank-corrosive-lethal.json b/packs/enhanceditems/consumable/ammo/projectorTank/projector-tank-corrosive-lethal.json index 0e43bbcf6..b786bdca5 100644 --- a/packs/enhanceditems/consumable/ammo/projectorTank/projector-tank-corrosive-lethal.json +++ b/packs/enhanceditems/consumable/ammo/projectorTank/projector-tank-corrosive-lethal.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 22, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "projectorTank", @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964903, - "modifiedTime": 1685833928428, + "modifiedTime": 1686621163004, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/projectorTank/projector-tank-corrosive-major.json b/packs/enhanceditems/consumable/ammo/projectorTank/projector-tank-corrosive-major.json index 2041aaca3..6857064a9 100644 --- a/packs/enhanceditems/consumable/ammo/projectorTank/projector-tank-corrosive-major.json +++ b/packs/enhanceditems/consumable/ammo/projectorTank/projector-tank-corrosive-major.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 18, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "projectorTank", @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964930, - "modifiedTime": 1685833928433, + "modifiedTime": 1686621163015, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/projectorTank/projector-tank-cryo-average.json b/packs/enhanceditems/consumable/ammo/projectorTank/projector-tank-cryo-average.json index 43255d2f9..0985d493f 100644 --- a/packs/enhanceditems/consumable/ammo/projectorTank/projector-tank-cryo-average.json +++ b/packs/enhanceditems/consumable/ammo/projectorTank/projector-tank-cryo-average.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "hour" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 16, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "projectorTank", @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964502, - "modifiedTime": 1685833928350, + "modifiedTime": 1686621162919, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/projectorTank/projector-tank-cryo-deadly.json b/packs/enhanceditems/consumable/ammo/projectorTank/projector-tank-cryo-deadly.json index d64f56b35..f3e48ab68 100644 --- a/packs/enhanceditems/consumable/ammo/projectorTank/projector-tank-cryo-deadly.json +++ b/packs/enhanceditems/consumable/ammo/projectorTank/projector-tank-cryo-deadly.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "hour" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 20, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "projectorTank", @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964513, - "modifiedTime": 1685833928352, + "modifiedTime": 1686621162922, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/projectorTank/projector-tank-cryo-devastating.json b/packs/enhanceditems/consumable/ammo/projectorTank/projector-tank-cryo-devastating.json index 4e5e7e593..c99d0788e 100644 --- a/packs/enhanceditems/consumable/ammo/projectorTank/projector-tank-cryo-devastating.json +++ b/packs/enhanceditems/consumable/ammo/projectorTank/projector-tank-cryo-devastating.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "hour" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 24, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "projectorTank", @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964423, - "modifiedTime": 1685833928329, + "modifiedTime": 1686621162890, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/projectorTank/projector-tank-cryo-lethal.json b/packs/enhanceditems/consumable/ammo/projectorTank/projector-tank-cryo-lethal.json index 5b3caef48..53d5df247 100644 --- a/packs/enhanceditems/consumable/ammo/projectorTank/projector-tank-cryo-lethal.json +++ b/packs/enhanceditems/consumable/ammo/projectorTank/projector-tank-cryo-lethal.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "hour" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 22, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "projectorTank", @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964609, - "modifiedTime": 1685833928372, + "modifiedTime": 1686621162942, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/projectorTank/projector-tank-cryo-major.json b/packs/enhanceditems/consumable/ammo/projectorTank/projector-tank-cryo-major.json index ffe3fdd74..1da2ab3a8 100644 --- a/packs/enhanceditems/consumable/ammo/projectorTank/projector-tank-cryo-major.json +++ b/packs/enhanceditems/consumable/ammo/projectorTank/projector-tank-cryo-major.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "hour" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 18, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "projectorTank", @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964995, - "modifiedTime": 1685833928445, + "modifiedTime": 1686621163041, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/projectorTank/projector-tank-incendiary-average.json b/packs/enhanceditems/consumable/ammo/projectorTank/projector-tank-incendiary-average.json index a5b700580..c15f37493 100644 --- a/packs/enhanceditems/consumable/ammo/projectorTank/projector-tank-incendiary-average.json +++ b/packs/enhanceditems/consumable/ammo/projectorTank/projector-tank-incendiary-average.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 16, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "projectorTank", @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964424, - "modifiedTime": 1685833928329, + "modifiedTime": 1686621162891, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/projectorTank/projector-tank-incendiary-deadly.json b/packs/enhanceditems/consumable/ammo/projectorTank/projector-tank-incendiary-deadly.json index 9798e1ab1..a1ba569a9 100644 --- a/packs/enhanceditems/consumable/ammo/projectorTank/projector-tank-incendiary-deadly.json +++ b/packs/enhanceditems/consumable/ammo/projectorTank/projector-tank-incendiary-deadly.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 20, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "projectorTank", @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964395, - "modifiedTime": 1685833928327, + "modifiedTime": 1686621162888, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/projectorTank/projector-tank-incendiary-devastating.json b/packs/enhanceditems/consumable/ammo/projectorTank/projector-tank-incendiary-devastating.json index 6caa035e0..1cea556c6 100644 --- a/packs/enhanceditems/consumable/ammo/projectorTank/projector-tank-incendiary-devastating.json +++ b/packs/enhanceditems/consumable/ammo/projectorTank/projector-tank-incendiary-devastating.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 24, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "projectorTank", @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964930, - "modifiedTime": 1685833928433, + "modifiedTime": 1686621163015, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/projectorTank/projector-tank-incendiary-lethal.json b/packs/enhanceditems/consumable/ammo/projectorTank/projector-tank-incendiary-lethal.json index 175471d3b..495759239 100644 --- a/packs/enhanceditems/consumable/ammo/projectorTank/projector-tank-incendiary-lethal.json +++ b/packs/enhanceditems/consumable/ammo/projectorTank/projector-tank-incendiary-lethal.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 22, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "projectorTank", @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964982, - "modifiedTime": 1685833928443, + "modifiedTime": 1686621163037, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/projectorTank/projector-tank-incendiary-major.json b/packs/enhanceditems/consumable/ammo/projectorTank/projector-tank-incendiary-major.json index 791015278..e2b022d65 100644 --- a/packs/enhanceditems/consumable/ammo/projectorTank/projector-tank-incendiary-major.json +++ b/packs/enhanceditems/consumable/ammo/projectorTank/projector-tank-incendiary-major.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 18, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "projectorTank", @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964515, - "modifiedTime": 1685833928352, + "modifiedTime": 1686621162923, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/rocket/rocket-fragmentation-average.json b/packs/enhanceditems/consumable/ammo/rocket/rocket-fragmentation-average.json index 398433b56..18fa8ee65 100644 --- a/packs/enhanceditems/consumable/ammo/rocket/rocket-fragmentation-average.json +++ b/packs/enhanceditems/consumable/ammo/rocket/rocket-fragmentation-average.json @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": "1", "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 16, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "rocket", @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964387, - "modifiedTime": 1685833928324, + "modifiedTime": 1686621162885, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/rocket/rocket-fragmentation-deadly.json b/packs/enhanceditems/consumable/ammo/rocket/rocket-fragmentation-deadly.json index db71720be..f011f18f8 100644 --- a/packs/enhanceditems/consumable/ammo/rocket/rocket-fragmentation-deadly.json +++ b/packs/enhanceditems/consumable/ammo/rocket/rocket-fragmentation-deadly.json @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": "3", "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 20, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "rocket", @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964667, - "modifiedTime": 1685833928385, + "modifiedTime": 1686621162957, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/rocket/rocket-fragmentation-devastating.json b/packs/enhanceditems/consumable/ammo/rocket/rocket-fragmentation-devastating.json index 9acbe9440..8bea40447 100644 --- a/packs/enhanceditems/consumable/ammo/rocket/rocket-fragmentation-devastating.json +++ b/packs/enhanceditems/consumable/ammo/rocket/rocket-fragmentation-devastating.json @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": "3", "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 24, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "rocket", @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964622, - "modifiedTime": 1685833928376, + "modifiedTime": 1686621162947, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/rocket/rocket-fragmentation-lethal.json b/packs/enhanceditems/consumable/ammo/rocket/rocket-fragmentation-lethal.json index a318327df..577060fbf 100644 --- a/packs/enhanceditems/consumable/ammo/rocket/rocket-fragmentation-lethal.json +++ b/packs/enhanceditems/consumable/ammo/rocket/rocket-fragmentation-lethal.json @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": "3", "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 22, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "rocket", @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964703, - "modifiedTime": 1685833928394, + "modifiedTime": 1686621162967, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/rocket/rocket-fragmentation-major.json b/packs/enhanceditems/consumable/ammo/rocket/rocket-fragmentation-major.json index 55a6566cd..786546944 100644 --- a/packs/enhanceditems/consumable/ammo/rocket/rocket-fragmentation-major.json +++ b/packs/enhanceditems/consumable/ammo/rocket/rocket-fragmentation-major.json @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": "2", "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 18, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "rocket", @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964555, - "modifiedTime": 1685833928366, + "modifiedTime": 1686621162938, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/rocket/rocket-incendiary-average.json b/packs/enhanceditems/consumable/ammo/rocket/rocket-incendiary-average.json index 2b8263b07..7e77ddf33 100644 --- a/packs/enhanceditems/consumable/ammo/rocket/rocket-incendiary-average.json +++ b/packs/enhanceditems/consumable/ammo/rocket/rocket-incendiary-average.json @@ -115,7 +115,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": "1", "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 16, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "rocket", @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964634, - "modifiedTime": 1685833928378, + "modifiedTime": 1686621162949, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/rocket/rocket-incendiary-deadly.json b/packs/enhanceditems/consumable/ammo/rocket/rocket-incendiary-deadly.json index 1b2523bec..1fcce2640 100644 --- a/packs/enhanceditems/consumable/ammo/rocket/rocket-incendiary-deadly.json +++ b/packs/enhanceditems/consumable/ammo/rocket/rocket-incendiary-deadly.json @@ -115,7 +115,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": "3", "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 20, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "rocket", @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964747, - "modifiedTime": 1685833928406, + "modifiedTime": 1686621162977, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/rocket/rocket-incendiary-devastating.json b/packs/enhanceditems/consumable/ammo/rocket/rocket-incendiary-devastating.json index 02986b23a..c6dd77361 100644 --- a/packs/enhanceditems/consumable/ammo/rocket/rocket-incendiary-devastating.json +++ b/packs/enhanceditems/consumable/ammo/rocket/rocket-incendiary-devastating.json @@ -115,7 +115,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": "3", "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 24, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "rocket", @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493965080, - "modifiedTime": 1685833928457, + "modifiedTime": 1686621163051, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/rocket/rocket-incendiary-lethal.json b/packs/enhanceditems/consumable/ammo/rocket/rocket-incendiary-lethal.json index 30715683f..046f53e99 100644 --- a/packs/enhanceditems/consumable/ammo/rocket/rocket-incendiary-lethal.json +++ b/packs/enhanceditems/consumable/ammo/rocket/rocket-incendiary-lethal.json @@ -115,7 +115,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": "3", "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 22, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "rocket", @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964761, - "modifiedTime": 1685833928409, + "modifiedTime": 1686621162981, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/rocket/rocket-incendiary-major.json b/packs/enhanceditems/consumable/ammo/rocket/rocket-incendiary-major.json index 3a1b71acc..504bfee63 100644 --- a/packs/enhanceditems/consumable/ammo/rocket/rocket-incendiary-major.json +++ b/packs/enhanceditems/consumable/ammo/rocket/rocket-incendiary-major.json @@ -115,7 +115,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": "2", "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 18, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "rocket", @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493965005, - "modifiedTime": 1685833928447, + "modifiedTime": 1686621163045, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/rocket/rocket-ion-average.json b/packs/enhanceditems/consumable/ammo/rocket/rocket-ion-average.json index 022ea3072..b25369d8b 100644 --- a/packs/enhanceditems/consumable/ammo/rocket/rocket-ion-average.json +++ b/packs/enhanceditems/consumable/ammo/rocket/rocket-ion-average.json @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": "1", "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 16, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "rocket", @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964871, - "modifiedTime": 1685833928422, + "modifiedTime": 1686621162993, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/rocket/rocket-ion-deadly.json b/packs/enhanceditems/consumable/ammo/rocket/rocket-ion-deadly.json index c4db8cb92..b155dac73 100644 --- a/packs/enhanceditems/consumable/ammo/rocket/rocket-ion-deadly.json +++ b/packs/enhanceditems/consumable/ammo/rocket/rocket-ion-deadly.json @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": "3", "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 20, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "rocket", @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964926, - "modifiedTime": 1685833928432, + "modifiedTime": 1686621163014, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/rocket/rocket-ion-devastating.json b/packs/enhanceditems/consumable/ammo/rocket/rocket-ion-devastating.json index eac2ffd1d..ca72a73f6 100644 --- a/packs/enhanceditems/consumable/ammo/rocket/rocket-ion-devastating.json +++ b/packs/enhanceditems/consumable/ammo/rocket/rocket-ion-devastating.json @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": "3", "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 24, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "rocket", @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493965095, - "modifiedTime": 1685833928463, + "modifiedTime": 1686621163056, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/rocket/rocket-ion-lethal.json b/packs/enhanceditems/consumable/ammo/rocket/rocket-ion-lethal.json index e0e7a7ad7..9a189e23b 100644 --- a/packs/enhanceditems/consumable/ammo/rocket/rocket-ion-lethal.json +++ b/packs/enhanceditems/consumable/ammo/rocket/rocket-ion-lethal.json @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": "3", "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 22, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "rocket", @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964392, - "modifiedTime": 1685833928326, + "modifiedTime": 1686621162887, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/ammo/rocket/rocket-ion-major.json b/packs/enhanceditems/consumable/ammo/rocket/rocket-ion-major.json index 2155659d4..3dc8f74ac 100644 --- a/packs/enhanceditems/consumable/ammo/rocket/rocket-ion-major.json +++ b/packs/enhanceditems/consumable/ammo/rocket/rocket-ion-major.json @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": "2", "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 18, + "scaling": "flat" }, "consumableType": "ammo", "ammoType": "rocket", @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493965008, - "modifiedTime": 1685833928447, + "modifiedTime": 1686621163046, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/charge-fragmentation-average.json b/packs/enhanceditems/consumable/explosive/charge-fragmentation-average.json index 81639e5fa..28f422584 100644 --- a/packs/enhanceditems/consumable/explosive/charge-fragmentation-average.json +++ b/packs/enhanceditems/consumable/explosive/charge-fragmentation-average.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 16, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964764, - "modifiedTime": 1685833928410, + "modifiedTime": 1686621162981, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/charge-fragmentation-deadly.json b/packs/enhanceditems/consumable/explosive/charge-fragmentation-deadly.json index 12acae155..59dae73da 100644 --- a/packs/enhanceditems/consumable/explosive/charge-fragmentation-deadly.json +++ b/packs/enhanceditems/consumable/explosive/charge-fragmentation-deadly.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 20, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964384, - "modifiedTime": 1685833928323, + "modifiedTime": 1686621162884, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/charge-fragmentation-devastating.json b/packs/enhanceditems/consumable/explosive/charge-fragmentation-devastating.json index 6d777777f..ac86f4781 100644 --- a/packs/enhanceditems/consumable/explosive/charge-fragmentation-devastating.json +++ b/packs/enhanceditems/consumable/explosive/charge-fragmentation-devastating.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 24, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964949, - "modifiedTime": 1685833928437, + "modifiedTime": 1686621163023, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/charge-fragmentation-lethal.json b/packs/enhanceditems/consumable/explosive/charge-fragmentation-lethal.json index c933e9be6..d2ca7ea0a 100644 --- a/packs/enhanceditems/consumable/explosive/charge-fragmentation-lethal.json +++ b/packs/enhanceditems/consumable/explosive/charge-fragmentation-lethal.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 22, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964862, - "modifiedTime": 1685833928420, + "modifiedTime": 1686621162992, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/charge-fragmentation-major.json b/packs/enhanceditems/consumable/explosive/charge-fragmentation-major.json index e9a862f26..4774ff119 100644 --- a/packs/enhanceditems/consumable/explosive/charge-fragmentation-major.json +++ b/packs/enhanceditems/consumable/explosive/charge-fragmentation-major.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 18, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964368, - "modifiedTime": 1685833928316, + "modifiedTime": 1686621162873, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/charge-plasma-average.json b/packs/enhanceditems/consumable/explosive/charge-plasma-average.json index 1bfea885f..3f4ecc93a 100644 --- a/packs/enhanceditems/consumable/explosive/charge-plasma-average.json +++ b/packs/enhanceditems/consumable/explosive/charge-plasma-average.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 16, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964646, - "modifiedTime": 1685833928380, + "modifiedTime": 1686621162953, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/charge-plasma-deadly.json b/packs/enhanceditems/consumable/explosive/charge-plasma-deadly.json index e71fe9d4b..3359cc360 100644 --- a/packs/enhanceditems/consumable/explosive/charge-plasma-deadly.json +++ b/packs/enhanceditems/consumable/explosive/charge-plasma-deadly.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 20, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964984, - "modifiedTime": 1685833928443, + "modifiedTime": 1686621163038, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/charge-plasma-devastating.json b/packs/enhanceditems/consumable/explosive/charge-plasma-devastating.json index 7017e981a..a6674e740 100644 --- a/packs/enhanceditems/consumable/explosive/charge-plasma-devastating.json +++ b/packs/enhanceditems/consumable/explosive/charge-plasma-devastating.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 24, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493965006, - "modifiedTime": 1685833928447, + "modifiedTime": 1686621163045, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/charge-plasma-lethal.json b/packs/enhanceditems/consumable/explosive/charge-plasma-lethal.json index 904592897..d3584fe47 100644 --- a/packs/enhanceditems/consumable/explosive/charge-plasma-lethal.json +++ b/packs/enhanceditems/consumable/explosive/charge-plasma-lethal.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 22, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964558, - "modifiedTime": 1685833928367, + "modifiedTime": 1686621162938, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/charge-plasma-major.json b/packs/enhanceditems/consumable/explosive/charge-plasma-major.json index daaf5bd96..d20698a54 100644 --- a/packs/enhanceditems/consumable/explosive/charge-plasma-major.json +++ b/packs/enhanceditems/consumable/explosive/charge-plasma-major.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 18, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964503, - "modifiedTime": 1685833928350, + "modifiedTime": 1686621162920, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/grenade-corrosive-average.json b/packs/enhanceditems/consumable/explosive/grenade-corrosive-average.json index 373d0d56a..082d75208 100644 --- a/packs/enhanceditems/consumable/explosive/grenade-corrosive-average.json +++ b/packs/enhanceditems/consumable/explosive/grenade-corrosive-average.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 16, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964878, - "modifiedTime": 1685833928423, + "modifiedTime": 1686621162995, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/grenade-corrosive-deadly.json b/packs/enhanceditems/consumable/explosive/grenade-corrosive-deadly.json index ac8338278..edf793527 100644 --- a/packs/enhanceditems/consumable/explosive/grenade-corrosive-deadly.json +++ b/packs/enhanceditems/consumable/explosive/grenade-corrosive-deadly.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 20, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964529, - "modifiedTime": 1685833928356, + "modifiedTime": 1686621162928, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/grenade-corrosive-devastating.json b/packs/enhanceditems/consumable/explosive/grenade-corrosive-devastating.json index 485f4bae8..b8ec3279d 100644 --- a/packs/enhanceditems/consumable/explosive/grenade-corrosive-devastating.json +++ b/packs/enhanceditems/consumable/explosive/grenade-corrosive-devastating.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 24, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964773, - "modifiedTime": 1685833928412, + "modifiedTime": 1686621162984, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/grenade-corrosive-lethal.json b/packs/enhanceditems/consumable/explosive/grenade-corrosive-lethal.json index 3b53ada71..f01edd8e3 100644 --- a/packs/enhanceditems/consumable/explosive/grenade-corrosive-lethal.json +++ b/packs/enhanceditems/consumable/explosive/grenade-corrosive-lethal.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 22, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493965064, - "modifiedTime": 1685833928451, + "modifiedTime": 1686621163048, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/grenade-corrosive-major.json b/packs/enhanceditems/consumable/explosive/grenade-corrosive-major.json index 7e39f031d..78f0a821d 100644 --- a/packs/enhanceditems/consumable/explosive/grenade-corrosive-major.json +++ b/packs/enhanceditems/consumable/explosive/grenade-corrosive-major.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 18, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964742, - "modifiedTime": 1685833928405, + "modifiedTime": 1686621162976, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/grenade-cryo-average.json b/packs/enhanceditems/consumable/explosive/grenade-cryo-average.json index d71dc77ca..7864242a7 100644 --- a/packs/enhanceditems/consumable/explosive/grenade-cryo-average.json +++ b/packs/enhanceditems/consumable/explosive/grenade-cryo-average.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 16, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964607, - "modifiedTime": 1685833928371, + "modifiedTime": 1686621162941, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/grenade-cryo-deadly.json b/packs/enhanceditems/consumable/explosive/grenade-cryo-deadly.json index 7297c1bdc..0d2314781 100644 --- a/packs/enhanceditems/consumable/explosive/grenade-cryo-deadly.json +++ b/packs/enhanceditems/consumable/explosive/grenade-cryo-deadly.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 20, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964893, - "modifiedTime": 1685833928426, + "modifiedTime": 1686621163000, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/grenade-cryo-devastating.json b/packs/enhanceditems/consumable/explosive/grenade-cryo-devastating.json index 4ad3c1c59..d05f496fe 100644 --- a/packs/enhanceditems/consumable/explosive/grenade-cryo-devastating.json +++ b/packs/enhanceditems/consumable/explosive/grenade-cryo-devastating.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 24, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964432, - "modifiedTime": 1685833928331, + "modifiedTime": 1686621162897, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/grenade-cryo-lethal.json b/packs/enhanceditems/consumable/explosive/grenade-cryo-lethal.json index d1033e7da..6558f9c1d 100644 --- a/packs/enhanceditems/consumable/explosive/grenade-cryo-lethal.json +++ b/packs/enhanceditems/consumable/explosive/grenade-cryo-lethal.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 22, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964979, - "modifiedTime": 1685833928442, + "modifiedTime": 1686621163035, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/grenade-cryo-major.json b/packs/enhanceditems/consumable/explosive/grenade-cryo-major.json index 33841d358..76c4d1dea 100644 --- a/packs/enhanceditems/consumable/explosive/grenade-cryo-major.json +++ b/packs/enhanceditems/consumable/explosive/grenade-cryo-major.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 18, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964850, - "modifiedTime": 1685833928417, + "modifiedTime": 1686621162990, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/grenade-deafening-average.json b/packs/enhanceditems/consumable/explosive/grenade-deafening-average.json index 281d06d11..ba270d39f 100644 --- a/packs/enhanceditems/consumable/explosive/grenade-deafening-average.json +++ b/packs/enhanceditems/consumable/explosive/grenade-deafening-average.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 16, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964722, - "modifiedTime": 1685833928400, + "modifiedTime": 1686621162972, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/grenade-deafening-deadly.json b/packs/enhanceditems/consumable/explosive/grenade-deafening-deadly.json index 891c56849..e46a8bd37 100644 --- a/packs/enhanceditems/consumable/explosive/grenade-deafening-deadly.json +++ b/packs/enhanceditems/consumable/explosive/grenade-deafening-deadly.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 20, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964890, - "modifiedTime": 1685833928426, + "modifiedTime": 1686621162999, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/grenade-deafening-devastating.json b/packs/enhanceditems/consumable/explosive/grenade-deafening-devastating.json index ca0eed44f..560000e17 100644 --- a/packs/enhanceditems/consumable/explosive/grenade-deafening-devastating.json +++ b/packs/enhanceditems/consumable/explosive/grenade-deafening-devastating.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 24, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964757, - "modifiedTime": 1685833928409, + "modifiedTime": 1686621162980, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/grenade-deafening-lethal.json b/packs/enhanceditems/consumable/explosive/grenade-deafening-lethal.json index f3a0dd414..5fddb06e6 100644 --- a/packs/enhanceditems/consumable/explosive/grenade-deafening-lethal.json +++ b/packs/enhanceditems/consumable/explosive/grenade-deafening-lethal.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 22, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964864, - "modifiedTime": 1685833928420, + "modifiedTime": 1686621162992, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/grenade-deafening-major.json b/packs/enhanceditems/consumable/explosive/grenade-deafening-major.json index f81cb1c4d..1bc2bdf55 100644 --- a/packs/enhanceditems/consumable/explosive/grenade-deafening-major.json +++ b/packs/enhanceditems/consumable/explosive/grenade-deafening-major.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 18, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964691, - "modifiedTime": 1685833928392, + "modifiedTime": 1686621162963, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/grenade-electrifying-average.json b/packs/enhanceditems/consumable/explosive/grenade-electrifying-average.json index 5e13d6324..4982e61ad 100644 --- a/packs/enhanceditems/consumable/explosive/grenade-electrifying-average.json +++ b/packs/enhanceditems/consumable/explosive/grenade-electrifying-average.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 16, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964740, - "modifiedTime": 1685833928404, + "modifiedTime": 1686621162975, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/grenade-electrifying-deadly.json b/packs/enhanceditems/consumable/explosive/grenade-electrifying-deadly.json index 9d0b1a471..26288c4e6 100644 --- a/packs/enhanceditems/consumable/explosive/grenade-electrifying-deadly.json +++ b/packs/enhanceditems/consumable/explosive/grenade-electrifying-deadly.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 20, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964618, - "modifiedTime": 1685833928376, + "modifiedTime": 1686621162945, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/grenade-electrifying-devastating.json b/packs/enhanceditems/consumable/explosive/grenade-electrifying-devastating.json index 83d293614..efab55acb 100644 --- a/packs/enhanceditems/consumable/explosive/grenade-electrifying-devastating.json +++ b/packs/enhanceditems/consumable/explosive/grenade-electrifying-devastating.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 24, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964371, - "modifiedTime": 1685833928317, + "modifiedTime": 1686621162875, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/grenade-electrifying-lethal.json b/packs/enhanceditems/consumable/explosive/grenade-electrifying-lethal.json index 2c0734332..df7401e07 100644 --- a/packs/enhanceditems/consumable/explosive/grenade-electrifying-lethal.json +++ b/packs/enhanceditems/consumable/explosive/grenade-electrifying-lethal.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 22, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964855, - "modifiedTime": 1685833928418, + "modifiedTime": 1686621162990, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/grenade-electrifying-major.json b/packs/enhanceditems/consumable/explosive/grenade-electrifying-major.json index 67a3926b7..c7d4121ce 100644 --- a/packs/enhanceditems/consumable/explosive/grenade-electrifying-major.json +++ b/packs/enhanceditems/consumable/explosive/grenade-electrifying-major.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 18, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964752, - "modifiedTime": 1685833928407, + "modifiedTime": 1686621162978, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/grenade-flash-average.json b/packs/enhanceditems/consumable/explosive/grenade-flash-average.json index 96f323299..8577f506f 100644 --- a/packs/enhanceditems/consumable/explosive/grenade-flash-average.json +++ b/packs/enhanceditems/consumable/explosive/grenade-flash-average.json @@ -109,7 +109,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -136,7 +136,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -150,8 +150,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 16, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -162,10 +162,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964518, - "modifiedTime": 1685833928353, + "modifiedTime": 1686621162924, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/grenade-flash-deadly.json b/packs/enhanceditems/consumable/explosive/grenade-flash-deadly.json index 4452bf69d..d11ec63c5 100644 --- a/packs/enhanceditems/consumable/explosive/grenade-flash-deadly.json +++ b/packs/enhanceditems/consumable/explosive/grenade-flash-deadly.json @@ -109,7 +109,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -136,7 +136,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -150,8 +150,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 20, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -162,10 +162,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964621, - "modifiedTime": 1685833928376, + "modifiedTime": 1686621162946, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/grenade-flash-devastating.json b/packs/enhanceditems/consumable/explosive/grenade-flash-devastating.json index 372335e55..eefa23374 100644 --- a/packs/enhanceditems/consumable/explosive/grenade-flash-devastating.json +++ b/packs/enhanceditems/consumable/explosive/grenade-flash-devastating.json @@ -109,7 +109,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -136,7 +136,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -150,8 +150,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 24, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -162,10 +162,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964464, - "modifiedTime": 1685833928340, + "modifiedTime": 1686621162908, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/grenade-flash-lethal.json b/packs/enhanceditems/consumable/explosive/grenade-flash-lethal.json index d3e5b1eae..ffa42eaa6 100644 --- a/packs/enhanceditems/consumable/explosive/grenade-flash-lethal.json +++ b/packs/enhanceditems/consumable/explosive/grenade-flash-lethal.json @@ -109,7 +109,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -136,7 +136,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -150,8 +150,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 22, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -162,10 +162,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964861, - "modifiedTime": 1685833928420, + "modifiedTime": 1686621162992, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/grenade-flash-major.json b/packs/enhanceditems/consumable/explosive/grenade-flash-major.json index ac89491a7..4e7e8dcce 100644 --- a/packs/enhanceditems/consumable/explosive/grenade-flash-major.json +++ b/packs/enhanceditems/consumable/explosive/grenade-flash-major.json @@ -109,7 +109,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -136,7 +136,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -150,8 +150,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 18, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -162,10 +162,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964472, - "modifiedTime": 1685833928342, + "modifiedTime": 1686621162911, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/grenade-fragmentation-average.json b/packs/enhanceditems/consumable/explosive/grenade-fragmentation-average.json index eeac64e1d..10f66e1fe 100644 --- a/packs/enhanceditems/consumable/explosive/grenade-fragmentation-average.json +++ b/packs/enhanceditems/consumable/explosive/grenade-fragmentation-average.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 16, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964399, - "modifiedTime": 1685833928328, + "modifiedTime": 1686621162888, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/grenade-fragmentation-deadly.json b/packs/enhanceditems/consumable/explosive/grenade-fragmentation-deadly.json index 684595a96..ec3ddcca3 100644 --- a/packs/enhanceditems/consumable/explosive/grenade-fragmentation-deadly.json +++ b/packs/enhanceditems/consumable/explosive/grenade-fragmentation-deadly.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 20, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964502, - "modifiedTime": 1685833928350, + "modifiedTime": 1686621162919, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/grenade-fragmentation-devastating.json b/packs/enhanceditems/consumable/explosive/grenade-fragmentation-devastating.json index d5265d61e..f1689fb98 100644 --- a/packs/enhanceditems/consumable/explosive/grenade-fragmentation-devastating.json +++ b/packs/enhanceditems/consumable/explosive/grenade-fragmentation-devastating.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 24, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964643, - "modifiedTime": 1685833928380, + "modifiedTime": 1686621162950, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/grenade-fragmentation-lethal.json b/packs/enhanceditems/consumable/explosive/grenade-fragmentation-lethal.json index b48ec3296..1f7262050 100644 --- a/packs/enhanceditems/consumable/explosive/grenade-fragmentation-lethal.json +++ b/packs/enhanceditems/consumable/explosive/grenade-fragmentation-lethal.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 22, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964896, - "modifiedTime": 1685833928427, + "modifiedTime": 1686621163001, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/grenade-fragmentation-major.json b/packs/enhanceditems/consumable/explosive/grenade-fragmentation-major.json index 1593e9932..d3be463fb 100644 --- a/packs/enhanceditems/consumable/explosive/grenade-fragmentation-major.json +++ b/packs/enhanceditems/consumable/explosive/grenade-fragmentation-major.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 18, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493965096, - "modifiedTime": 1685833928463, + "modifiedTime": 1686621163056, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/grenade-gas-average.json b/packs/enhanceditems/consumable/explosive/grenade-gas-average.json index af1742917..52bc87641 100644 --- a/packs/enhanceditems/consumable/explosive/grenade-gas-average.json +++ b/packs/enhanceditems/consumable/explosive/grenade-gas-average.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 16, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964968, - "modifiedTime": 1685833928440, + "modifiedTime": 1686621163033, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/grenade-gas-deadly.json b/packs/enhanceditems/consumable/explosive/grenade-gas-deadly.json index 64b348df3..4cc6c4932 100644 --- a/packs/enhanceditems/consumable/explosive/grenade-gas-deadly.json +++ b/packs/enhanceditems/consumable/explosive/grenade-gas-deadly.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 20, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964713, - "modifiedTime": 1685833928398, + "modifiedTime": 1686621162970, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/grenade-gas-devastating.json b/packs/enhanceditems/consumable/explosive/grenade-gas-devastating.json index 68517e5bd..653a53878 100644 --- a/packs/enhanceditems/consumable/explosive/grenade-gas-devastating.json +++ b/packs/enhanceditems/consumable/explosive/grenade-gas-devastating.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 24, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964831, - "modifiedTime": 1685833928414, + "modifiedTime": 1686621162987, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/grenade-gas-lethal.json b/packs/enhanceditems/consumable/explosive/grenade-gas-lethal.json index 942d0421a..8fd9adc3e 100644 --- a/packs/enhanceditems/consumable/explosive/grenade-gas-lethal.json +++ b/packs/enhanceditems/consumable/explosive/grenade-gas-lethal.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 22, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964451, - "modifiedTime": 1685833928336, + "modifiedTime": 1686621162901, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/grenade-gas-major.json b/packs/enhanceditems/consumable/explosive/grenade-gas-major.json index 975d46013..be5179f20 100644 --- a/packs/enhanceditems/consumable/explosive/grenade-gas-major.json +++ b/packs/enhanceditems/consumable/explosive/grenade-gas-major.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 18, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964664, - "modifiedTime": 1685833928384, + "modifiedTime": 1686621162957, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/grenade-incendiary-average.json b/packs/enhanceditems/consumable/explosive/grenade-incendiary-average.json index ac1e05acb..fe18b14b3 100644 --- a/packs/enhanceditems/consumable/explosive/grenade-incendiary-average.json +++ b/packs/enhanceditems/consumable/explosive/grenade-incendiary-average.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 16, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964466, - "modifiedTime": 1685833928341, + "modifiedTime": 1686621162909, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/grenade-incendiary-deadly.json b/packs/enhanceditems/consumable/explosive/grenade-incendiary-deadly.json index 342dd09ce..10e61fc18 100644 --- a/packs/enhanceditems/consumable/explosive/grenade-incendiary-deadly.json +++ b/packs/enhanceditems/consumable/explosive/grenade-incendiary-deadly.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 20, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964908, - "modifiedTime": 1685833928428, + "modifiedTime": 1686621163006, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/grenade-incendiary-devastating.json b/packs/enhanceditems/consumable/explosive/grenade-incendiary-devastating.json index a6275b64c..3e79df745 100644 --- a/packs/enhanceditems/consumable/explosive/grenade-incendiary-devastating.json +++ b/packs/enhanceditems/consumable/explosive/grenade-incendiary-devastating.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 24, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964940, - "modifiedTime": 1685833928435, + "modifiedTime": 1686621163019, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/grenade-incendiary-lethal.json b/packs/enhanceditems/consumable/explosive/grenade-incendiary-lethal.json index fdd33dc4b..85c3d9178 100644 --- a/packs/enhanceditems/consumable/explosive/grenade-incendiary-lethal.json +++ b/packs/enhanceditems/consumable/explosive/grenade-incendiary-lethal.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 22, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964719, - "modifiedTime": 1685833928399, + "modifiedTime": 1686621162971, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/grenade-incendiary-major.json b/packs/enhanceditems/consumable/explosive/grenade-incendiary-major.json index f52bcccb7..5a42ea1ed 100644 --- a/packs/enhanceditems/consumable/explosive/grenade-incendiary-major.json +++ b/packs/enhanceditems/consumable/explosive/grenade-incendiary-major.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 18, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964385, - "modifiedTime": 1685833928324, + "modifiedTime": 1686621162884, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/grenade-ion-average.json b/packs/enhanceditems/consumable/explosive/grenade-ion-average.json index 80e9f2258..e7ad97c1e 100644 --- a/packs/enhanceditems/consumable/explosive/grenade-ion-average.json +++ b/packs/enhanceditems/consumable/explosive/grenade-ion-average.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 16, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964706, - "modifiedTime": 1685833928395, + "modifiedTime": 1686621162968, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/grenade-ion-deadly.json b/packs/enhanceditems/consumable/explosive/grenade-ion-deadly.json index f564d07ce..0a5b9aaa7 100644 --- a/packs/enhanceditems/consumable/explosive/grenade-ion-deadly.json +++ b/packs/enhanceditems/consumable/explosive/grenade-ion-deadly.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 20, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964497, - "modifiedTime": 1685833928349, + "modifiedTime": 1686621162917, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/grenade-ion-devastating.json b/packs/enhanceditems/consumable/explosive/grenade-ion-devastating.json index b2e2bd800..dd5a0147a 100644 --- a/packs/enhanceditems/consumable/explosive/grenade-ion-devastating.json +++ b/packs/enhanceditems/consumable/explosive/grenade-ion-devastating.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 24, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964616, - "modifiedTime": 1685833928375, + "modifiedTime": 1686621162944, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/grenade-ion-lethal.json b/packs/enhanceditems/consumable/explosive/grenade-ion-lethal.json index 367112047..a3cc1a8f1 100644 --- a/packs/enhanceditems/consumable/explosive/grenade-ion-lethal.json +++ b/packs/enhanceditems/consumable/explosive/grenade-ion-lethal.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 22, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964539, - "modifiedTime": 1685833928358, + "modifiedTime": 1686621162932, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/grenade-ion-major.json b/packs/enhanceditems/consumable/explosive/grenade-ion-major.json index 941895a04..c4653e360 100644 --- a/packs/enhanceditems/consumable/explosive/grenade-ion-major.json +++ b/packs/enhanceditems/consumable/explosive/grenade-ion-major.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 18, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964496, - "modifiedTime": 1685833928349, + "modifiedTime": 1686621162916, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/grenade-panic-average.json b/packs/enhanceditems/consumable/explosive/grenade-panic-average.json index fd5e61761..467f36c7e 100644 --- a/packs/enhanceditems/consumable/explosive/grenade-panic-average.json +++ b/packs/enhanceditems/consumable/explosive/grenade-panic-average.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "wis", - "dc": null, - "scaling": "none" + "dc": 16, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964387, - "modifiedTime": 1685833928325, + "modifiedTime": 1686621162886, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/grenade-panic-deadly.json b/packs/enhanceditems/consumable/explosive/grenade-panic-deadly.json index e9ec1dcb3..123b12f17 100644 --- a/packs/enhanceditems/consumable/explosive/grenade-panic-deadly.json +++ b/packs/enhanceditems/consumable/explosive/grenade-panic-deadly.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "wis", - "dc": null, - "scaling": "none" + "dc": 20, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964636, - "modifiedTime": 1685833928379, + "modifiedTime": 1686621162949, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/grenade-panic-devastating.json b/packs/enhanceditems/consumable/explosive/grenade-panic-devastating.json index f773b7cd2..dc8bfc438 100644 --- a/packs/enhanceditems/consumable/explosive/grenade-panic-devastating.json +++ b/packs/enhanceditems/consumable/explosive/grenade-panic-devastating.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "wis", - "dc": null, - "scaling": "none" + "dc": 24, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964952, - "modifiedTime": 1685833928437, + "modifiedTime": 1686621163024, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/grenade-panic-lethal.json b/packs/enhanceditems/consumable/explosive/grenade-panic-lethal.json index 3a29d20a5..fbca823da 100644 --- a/packs/enhanceditems/consumable/explosive/grenade-panic-lethal.json +++ b/packs/enhanceditems/consumable/explosive/grenade-panic-lethal.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "wis", - "dc": null, - "scaling": "none" + "dc": 22, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493965067, - "modifiedTime": 1685833928452, + "modifiedTime": 1686621163048, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/grenade-panic-major.json b/packs/enhanceditems/consumable/explosive/grenade-panic-major.json index 9c51dddeb..b75962080 100644 --- a/packs/enhanceditems/consumable/explosive/grenade-panic-major.json +++ b/packs/enhanceditems/consumable/explosive/grenade-panic-major.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "wis", - "dc": null, - "scaling": "none" + "dc": 18, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964535, - "modifiedTime": 1685833928358, + "modifiedTime": 1686621162930, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/grenade-plasma-average.json b/packs/enhanceditems/consumable/explosive/grenade-plasma-average.json index 930f693f5..6a9bc0245 100644 --- a/packs/enhanceditems/consumable/explosive/grenade-plasma-average.json +++ b/packs/enhanceditems/consumable/explosive/grenade-plasma-average.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 16, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964669, - "modifiedTime": 1685833928386, + "modifiedTime": 1686621162958, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/grenade-plasma-deadly.json b/packs/enhanceditems/consumable/explosive/grenade-plasma-deadly.json index 04ab03aec..5bc2b0826 100644 --- a/packs/enhanceditems/consumable/explosive/grenade-plasma-deadly.json +++ b/packs/enhanceditems/consumable/explosive/grenade-plasma-deadly.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 20, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964663, - "modifiedTime": 1685833928383, + "modifiedTime": 1686621162957, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/grenade-plasma-devastating.json b/packs/enhanceditems/consumable/explosive/grenade-plasma-devastating.json index 01abb6097..a918afa9d 100644 --- a/packs/enhanceditems/consumable/explosive/grenade-plasma-devastating.json +++ b/packs/enhanceditems/consumable/explosive/grenade-plasma-devastating.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 24, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964389, - "modifiedTime": 1685833928326, + "modifiedTime": 1686621162886, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/grenade-plasma-lethal.json b/packs/enhanceditems/consumable/explosive/grenade-plasma-lethal.json index 583445bda..fe222dea3 100644 --- a/packs/enhanceditems/consumable/explosive/grenade-plasma-lethal.json +++ b/packs/enhanceditems/consumable/explosive/grenade-plasma-lethal.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 22, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964674, - "modifiedTime": 1685833928387, + "modifiedTime": 1686621162959, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/grenade-plasma-major.json b/packs/enhanceditems/consumable/explosive/grenade-plasma-major.json index 422c7234b..42b2b87f0 100644 --- a/packs/enhanceditems/consumable/explosive/grenade-plasma-major.json +++ b/packs/enhanceditems/consumable/explosive/grenade-plasma-major.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 18, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964850, - "modifiedTime": 1685833928417, + "modifiedTime": 1686621162990, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/grenade-stun-average.json b/packs/enhanceditems/consumable/explosive/grenade-stun-average.json index 4c5d7262e..bff482515 100644 --- a/packs/enhanceditems/consumable/explosive/grenade-stun-average.json +++ b/packs/enhanceditems/consumable/explosive/grenade-stun-average.json @@ -109,7 +109,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -136,7 +136,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -150,8 +150,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 16, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -162,10 +162,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964964, - "modifiedTime": 1685833928439, + "modifiedTime": 1686621163032, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/grenade-stun-deadly.json b/packs/enhanceditems/consumable/explosive/grenade-stun-deadly.json index a7fe028f9..9e8258e02 100644 --- a/packs/enhanceditems/consumable/explosive/grenade-stun-deadly.json +++ b/packs/enhanceditems/consumable/explosive/grenade-stun-deadly.json @@ -109,7 +109,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -136,7 +136,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -150,8 +150,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 20, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -162,10 +162,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964450, - "modifiedTime": 1685833928335, + "modifiedTime": 1686621162900, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/grenade-stun-devastating.json b/packs/enhanceditems/consumable/explosive/grenade-stun-devastating.json index 587621bbf..ad70d13e5 100644 --- a/packs/enhanceditems/consumable/explosive/grenade-stun-devastating.json +++ b/packs/enhanceditems/consumable/explosive/grenade-stun-devastating.json @@ -109,7 +109,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -136,7 +136,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -150,8 +150,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 24, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -162,10 +162,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964427, - "modifiedTime": 1685833928330, + "modifiedTime": 1686621162892, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/grenade-stun-lethal.json b/packs/enhanceditems/consumable/explosive/grenade-stun-lethal.json index 6b65dd281..6719f3971 100644 --- a/packs/enhanceditems/consumable/explosive/grenade-stun-lethal.json +++ b/packs/enhanceditems/consumable/explosive/grenade-stun-lethal.json @@ -109,7 +109,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -136,7 +136,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -150,8 +150,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 22, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -162,10 +162,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964485, - "modifiedTime": 1685833928344, + "modifiedTime": 1686621162914, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/grenade-stun-major.json b/packs/enhanceditems/consumable/explosive/grenade-stun-major.json index 6ac6879b0..2f9e3ec9d 100644 --- a/packs/enhanceditems/consumable/explosive/grenade-stun-major.json +++ b/packs/enhanceditems/consumable/explosive/grenade-stun-major.json @@ -109,7 +109,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -136,7 +136,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -150,8 +150,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 18, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -162,10 +162,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964679, - "modifiedTime": 1685833928388, + "modifiedTime": 1686621162960, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/mine-corrosive-average.json b/packs/enhanceditems/consumable/explosive/mine-corrosive-average.json index 2e7e23cd3..e3ed5104c 100644 --- a/packs/enhanceditems/consumable/explosive/mine-corrosive-average.json +++ b/packs/enhanceditems/consumable/explosive/mine-corrosive-average.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 16, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964694, - "modifiedTime": 1685833928393, + "modifiedTime": 1686621162964, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/mine-corrosive-deadly.json b/packs/enhanceditems/consumable/explosive/mine-corrosive-deadly.json index 6e6c43f7b..ddf57adf9 100644 --- a/packs/enhanceditems/consumable/explosive/mine-corrosive-deadly.json +++ b/packs/enhanceditems/consumable/explosive/mine-corrosive-deadly.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 20, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964489, - "modifiedTime": 1685833928345, + "modifiedTime": 1686621162915, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/mine-corrosive-devastating.json b/packs/enhanceditems/consumable/explosive/mine-corrosive-devastating.json index 78cff5377..c15f886b3 100644 --- a/packs/enhanceditems/consumable/explosive/mine-corrosive-devastating.json +++ b/packs/enhanceditems/consumable/explosive/mine-corrosive-devastating.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 24, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964918, - "modifiedTime": 1685833928430, + "modifiedTime": 1686621163010, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/mine-corrosive-lethal.json b/packs/enhanceditems/consumable/explosive/mine-corrosive-lethal.json index 5aa4bc00f..ea578f015 100644 --- a/packs/enhanceditems/consumable/explosive/mine-corrosive-lethal.json +++ b/packs/enhanceditems/consumable/explosive/mine-corrosive-lethal.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 22, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964765, - "modifiedTime": 1685833928410, + "modifiedTime": 1686621162981, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/mine-corrosive-major.json b/packs/enhanceditems/consumable/explosive/mine-corrosive-major.json index 6a780446b..524994b9c 100644 --- a/packs/enhanceditems/consumable/explosive/mine-corrosive-major.json +++ b/packs/enhanceditems/consumable/explosive/mine-corrosive-major.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 18, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964457, - "modifiedTime": 1685833928337, + "modifiedTime": 1686621162903, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/mine-cryo-average.json b/packs/enhanceditems/consumable/explosive/mine-cryo-average.json index 446d65f1a..0e68cb763 100644 --- a/packs/enhanceditems/consumable/explosive/mine-cryo-average.json +++ b/packs/enhanceditems/consumable/explosive/mine-cryo-average.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 16, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964424, - "modifiedTime": 1685833928329, + "modifiedTime": 1686621162890, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/mine-cryo-deadly.json b/packs/enhanceditems/consumable/explosive/mine-cryo-deadly.json index ad3e80de5..018a948a9 100644 --- a/packs/enhanceditems/consumable/explosive/mine-cryo-deadly.json +++ b/packs/enhanceditems/consumable/explosive/mine-cryo-deadly.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 20, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964624, - "modifiedTime": 1685833928377, + "modifiedTime": 1686621162947, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/mine-cryo-devastating.json b/packs/enhanceditems/consumable/explosive/mine-cryo-devastating.json index 658763098..fbe7548ce 100644 --- a/packs/enhanceditems/consumable/explosive/mine-cryo-devastating.json +++ b/packs/enhanceditems/consumable/explosive/mine-cryo-devastating.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 24, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964743, - "modifiedTime": 1685833928406, + "modifiedTime": 1686621162976, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/mine-cryo-lethal.json b/packs/enhanceditems/consumable/explosive/mine-cryo-lethal.json index 895d3e55c..7d77229d6 100644 --- a/packs/enhanceditems/consumable/explosive/mine-cryo-lethal.json +++ b/packs/enhanceditems/consumable/explosive/mine-cryo-lethal.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 22, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964641, - "modifiedTime": 1685833928380, + "modifiedTime": 1686621162950, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/mine-cryo-major.json b/packs/enhanceditems/consumable/explosive/mine-cryo-major.json index 4ec09453d..cb7747966 100644 --- a/packs/enhanceditems/consumable/explosive/mine-cryo-major.json +++ b/packs/enhanceditems/consumable/explosive/mine-cryo-major.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 18, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964858, - "modifiedTime": 1685833928419, + "modifiedTime": 1686621162991, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/mine-deafening-average.json b/packs/enhanceditems/consumable/explosive/mine-deafening-average.json index 1fdd5dd7f..5e360ca78 100644 --- a/packs/enhanceditems/consumable/explosive/mine-deafening-average.json +++ b/packs/enhanceditems/consumable/explosive/mine-deafening-average.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 16, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964538, - "modifiedTime": 1685833928358, + "modifiedTime": 1686621162932, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/mine-deafening-deadly.json b/packs/enhanceditems/consumable/explosive/mine-deafening-deadly.json index 91ded1bf8..a55a7f615 100644 --- a/packs/enhanceditems/consumable/explosive/mine-deafening-deadly.json +++ b/packs/enhanceditems/consumable/explosive/mine-deafening-deadly.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 20, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964548, - "modifiedTime": 1685833928364, + "modifiedTime": 1686621162935, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/mine-deafening-devastating.json b/packs/enhanceditems/consumable/explosive/mine-deafening-devastating.json index 5af6ba927..2566a8b90 100644 --- a/packs/enhanceditems/consumable/explosive/mine-deafening-devastating.json +++ b/packs/enhanceditems/consumable/explosive/mine-deafening-devastating.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 24, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964936, - "modifiedTime": 1685833928435, + "modifiedTime": 1686621163018, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/mine-deafening-lethal.json b/packs/enhanceditems/consumable/explosive/mine-deafening-lethal.json index 2ce564fb8..5730e03ab 100644 --- a/packs/enhanceditems/consumable/explosive/mine-deafening-lethal.json +++ b/packs/enhanceditems/consumable/explosive/mine-deafening-lethal.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 22, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493965066, - "modifiedTime": 1685833928452, + "modifiedTime": 1686621163048, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/mine-deafening-major.json b/packs/enhanceditems/consumable/explosive/mine-deafening-major.json index db3996c12..eff9435ee 100644 --- a/packs/enhanceditems/consumable/explosive/mine-deafening-major.json +++ b/packs/enhanceditems/consumable/explosive/mine-deafening-major.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 18, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964781, - "modifiedTime": 1685833928413, + "modifiedTime": 1686621162985, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/mine-electrifying-average.json b/packs/enhanceditems/consumable/explosive/mine-electrifying-average.json index 743008595..8900fb1b1 100644 --- a/packs/enhanceditems/consumable/explosive/mine-electrifying-average.json +++ b/packs/enhanceditems/consumable/explosive/mine-electrifying-average.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 16, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964382, - "modifiedTime": 1685833928320, + "modifiedTime": 1686621162880, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/mine-electrifying-deadly.json b/packs/enhanceditems/consumable/explosive/mine-electrifying-deadly.json index 7051512de..5c74e61c5 100644 --- a/packs/enhanceditems/consumable/explosive/mine-electrifying-deadly.json +++ b/packs/enhanceditems/consumable/explosive/mine-electrifying-deadly.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 20, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964491, - "modifiedTime": 1685833928347, + "modifiedTime": 1686621162915, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/mine-electrifying-devastating.json b/packs/enhanceditems/consumable/explosive/mine-electrifying-devastating.json index 7cd5e4a51..b5c88a022 100644 --- a/packs/enhanceditems/consumable/explosive/mine-electrifying-devastating.json +++ b/packs/enhanceditems/consumable/explosive/mine-electrifying-devastating.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 24, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964866, - "modifiedTime": 1685833928421, + "modifiedTime": 1686621162993, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/mine-electrifying-lethal.json b/packs/enhanceditems/consumable/explosive/mine-electrifying-lethal.json index 769560a02..e3ba28f75 100644 --- a/packs/enhanceditems/consumable/explosive/mine-electrifying-lethal.json +++ b/packs/enhanceditems/consumable/explosive/mine-electrifying-lethal.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 22, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964990, - "modifiedTime": 1685833928444, + "modifiedTime": 1686621163039, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/mine-electrifying-major.json b/packs/enhanceditems/consumable/explosive/mine-electrifying-major.json index 695a3d2dc..9c4595b02 100644 --- a/packs/enhanceditems/consumable/explosive/mine-electrifying-major.json +++ b/packs/enhanceditems/consumable/explosive/mine-electrifying-major.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 18, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964886, - "modifiedTime": 1685833928425, + "modifiedTime": 1686621162996, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/mine-flash-average.json b/packs/enhanceditems/consumable/explosive/mine-flash-average.json index 92aa1c0a7..33eca2553 100644 --- a/packs/enhanceditems/consumable/explosive/mine-flash-average.json +++ b/packs/enhanceditems/consumable/explosive/mine-flash-average.json @@ -109,7 +109,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -136,7 +136,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -150,8 +150,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 16, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -162,10 +162,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493965073, - "modifiedTime": 1685833928455, + "modifiedTime": 1686621163050, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/mine-flash-deadly.json b/packs/enhanceditems/consumable/explosive/mine-flash-deadly.json index 2c667184e..d1b163728 100644 --- a/packs/enhanceditems/consumable/explosive/mine-flash-deadly.json +++ b/packs/enhanceditems/consumable/explosive/mine-flash-deadly.json @@ -109,7 +109,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -136,7 +136,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -150,8 +150,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 20, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -162,10 +162,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964517, - "modifiedTime": 1685833928352, + "modifiedTime": 1686621162923, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/mine-flash-devastating.json b/packs/enhanceditems/consumable/explosive/mine-flash-devastating.json index 9e495289e..d5347dc65 100644 --- a/packs/enhanceditems/consumable/explosive/mine-flash-devastating.json +++ b/packs/enhanceditems/consumable/explosive/mine-flash-devastating.json @@ -109,7 +109,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -136,7 +136,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -150,8 +150,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 24, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -162,10 +162,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964750, - "modifiedTime": 1685833928407, + "modifiedTime": 1686621162977, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/mine-flash-lethal.json b/packs/enhanceditems/consumable/explosive/mine-flash-lethal.json index 16d3d931a..3a53b88fb 100644 --- a/packs/enhanceditems/consumable/explosive/mine-flash-lethal.json +++ b/packs/enhanceditems/consumable/explosive/mine-flash-lethal.json @@ -109,7 +109,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -136,7 +136,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -150,8 +150,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 22, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -162,10 +162,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964664, - "modifiedTime": 1685833928385, + "modifiedTime": 1686621162957, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/mine-flash-major.json b/packs/enhanceditems/consumable/explosive/mine-flash-major.json index d62e4db2b..d8d13ea13 100644 --- a/packs/enhanceditems/consumable/explosive/mine-flash-major.json +++ b/packs/enhanceditems/consumable/explosive/mine-flash-major.json @@ -109,7 +109,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -136,7 +136,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -150,8 +150,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 18, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -162,10 +162,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964949, - "modifiedTime": 1685833928437, + "modifiedTime": 1686621163023, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/mine-fragmentation-average.json b/packs/enhanceditems/consumable/explosive/mine-fragmentation-average.json index a24739f56..f5c62910d 100644 --- a/packs/enhanceditems/consumable/explosive/mine-fragmentation-average.json +++ b/packs/enhanceditems/consumable/explosive/mine-fragmentation-average.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 16, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964753, - "modifiedTime": 1685833928408, + "modifiedTime": 1686621162978, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/mine-fragmentation-deadly.json b/packs/enhanceditems/consumable/explosive/mine-fragmentation-deadly.json index 99438768e..d5778647a 100644 --- a/packs/enhanceditems/consumable/explosive/mine-fragmentation-deadly.json +++ b/packs/enhanceditems/consumable/explosive/mine-fragmentation-deadly.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 20, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964996, - "modifiedTime": 1685833928445, + "modifiedTime": 1686621163041, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/mine-fragmentation-devastating.json b/packs/enhanceditems/consumable/explosive/mine-fragmentation-devastating.json index 874924d5b..45340a839 100644 --- a/packs/enhanceditems/consumable/explosive/mine-fragmentation-devastating.json +++ b/packs/enhanceditems/consumable/explosive/mine-fragmentation-devastating.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 24, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964953, - "modifiedTime": 1685833928438, + "modifiedTime": 1686621163024, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/mine-fragmentation-lethal.json b/packs/enhanceditems/consumable/explosive/mine-fragmentation-lethal.json index 2686db20c..c7f0792b9 100644 --- a/packs/enhanceditems/consumable/explosive/mine-fragmentation-lethal.json +++ b/packs/enhanceditems/consumable/explosive/mine-fragmentation-lethal.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 22, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964673, - "modifiedTime": 1685833928386, + "modifiedTime": 1686621162959, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/mine-fragmentation-major.json b/packs/enhanceditems/consumable/explosive/mine-fragmentation-major.json index 3725321a7..c4d605a78 100644 --- a/packs/enhanceditems/consumable/explosive/mine-fragmentation-major.json +++ b/packs/enhanceditems/consumable/explosive/mine-fragmentation-major.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 18, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964610, - "modifiedTime": 1685833928372, + "modifiedTime": 1686621162942, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/mine-gas-average.json b/packs/enhanceditems/consumable/explosive/mine-gas-average.json index aa9018f88..8994a29e6 100644 --- a/packs/enhanceditems/consumable/explosive/mine-gas-average.json +++ b/packs/enhanceditems/consumable/explosive/mine-gas-average.json @@ -107,13 +107,13 @@ "identified": true, "isCargo": false, "activation": { - "type": "", + "type": "action", "cost": 1, "condition": "" }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 16, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964494, - "modifiedTime": 1685833928348, + "modifiedTime": 1686621162916, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/mine-gas-deadly.json b/packs/enhanceditems/consumable/explosive/mine-gas-deadly.json index 4d0df6310..fbefca874 100644 --- a/packs/enhanceditems/consumable/explosive/mine-gas-deadly.json +++ b/packs/enhanceditems/consumable/explosive/mine-gas-deadly.json @@ -107,13 +107,13 @@ "identified": true, "isCargo": false, "activation": { - "type": "", + "type": "action", "cost": 1, "condition": "" }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 20, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493965083, - "modifiedTime": 1685833928458, + "modifiedTime": 1686621163052, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/mine-gas-devastating.json b/packs/enhanceditems/consumable/explosive/mine-gas-devastating.json index ffa740c73..03746dd76 100644 --- a/packs/enhanceditems/consumable/explosive/mine-gas-devastating.json +++ b/packs/enhanceditems/consumable/explosive/mine-gas-devastating.json @@ -107,13 +107,13 @@ "identified": true, "isCargo": false, "activation": { - "type": "", + "type": "action", "cost": 1, "condition": "" }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 24, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964847, - "modifiedTime": 1685833928417, + "modifiedTime": 1686621162989, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/mine-gas-lethal.json b/packs/enhanceditems/consumable/explosive/mine-gas-lethal.json index e393384b6..22ec07396 100644 --- a/packs/enhanceditems/consumable/explosive/mine-gas-lethal.json +++ b/packs/enhanceditems/consumable/explosive/mine-gas-lethal.json @@ -107,13 +107,13 @@ "identified": true, "isCargo": false, "activation": { - "type": "", + "type": "action", "cost": 1, "condition": "" }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 22, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964672, - "modifiedTime": 1685833928386, + "modifiedTime": 1686621162958, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/mine-gas-major.json b/packs/enhanceditems/consumable/explosive/mine-gas-major.json index de0b27efa..93bd65b7a 100644 --- a/packs/enhanceditems/consumable/explosive/mine-gas-major.json +++ b/packs/enhanceditems/consumable/explosive/mine-gas-major.json @@ -107,13 +107,13 @@ "identified": true, "isCargo": false, "activation": { - "type": "", + "type": "action", "cost": 1, "condition": "" }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 18, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964986, - "modifiedTime": 1685833928444, + "modifiedTime": 1686621163039, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/mine-incendiary-average.json b/packs/enhanceditems/consumable/explosive/mine-incendiary-average.json index 06e4384a0..ac02e8847 100644 --- a/packs/enhanceditems/consumable/explosive/mine-incendiary-average.json +++ b/packs/enhanceditems/consumable/explosive/mine-incendiary-average.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 16, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964896, - "modifiedTime": 1685833928427, + "modifiedTime": 1686621163001, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/mine-incendiary-deadly.json b/packs/enhanceditems/consumable/explosive/mine-incendiary-deadly.json index 0f2ad4a3f..3da5dd07e 100644 --- a/packs/enhanceditems/consumable/explosive/mine-incendiary-deadly.json +++ b/packs/enhanceditems/consumable/explosive/mine-incendiary-deadly.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 20, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964504, - "modifiedTime": 1685833928350, + "modifiedTime": 1686621162921, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/mine-incendiary-devastating.json b/packs/enhanceditems/consumable/explosive/mine-incendiary-devastating.json index 06801770b..acd2bda2e 100644 --- a/packs/enhanceditems/consumable/explosive/mine-incendiary-devastating.json +++ b/packs/enhanceditems/consumable/explosive/mine-incendiary-devastating.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 24, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964489, - "modifiedTime": 1685833928347, + "modifiedTime": 1686621162915, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/mine-incendiary-lethal.json b/packs/enhanceditems/consumable/explosive/mine-incendiary-lethal.json index 76ff4464f..5cccdd0df 100644 --- a/packs/enhanceditems/consumable/explosive/mine-incendiary-lethal.json +++ b/packs/enhanceditems/consumable/explosive/mine-incendiary-lethal.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 22, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964666, - "modifiedTime": 1685833928385, + "modifiedTime": 1686621162957, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/mine-incendiary-major.json b/packs/enhanceditems/consumable/explosive/mine-incendiary-major.json index 8d10393d3..84d8f5c13 100644 --- a/packs/enhanceditems/consumable/explosive/mine-incendiary-major.json +++ b/packs/enhanceditems/consumable/explosive/mine-incendiary-major.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 18, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964721, - "modifiedTime": 1685833928400, + "modifiedTime": 1686621162972, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/mine-ion-average.json b/packs/enhanceditems/consumable/explosive/mine-ion-average.json index ecbf6ccaf..b20670c35 100644 --- a/packs/enhanceditems/consumable/explosive/mine-ion-average.json +++ b/packs/enhanceditems/consumable/explosive/mine-ion-average.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 16, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964510, - "modifiedTime": 1685833928351, + "modifiedTime": 1686621162922, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/mine-ion-deadly.json b/packs/enhanceditems/consumable/explosive/mine-ion-deadly.json index 48f840ccc..73a715d2a 100644 --- a/packs/enhanceditems/consumable/explosive/mine-ion-deadly.json +++ b/packs/enhanceditems/consumable/explosive/mine-ion-deadly.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 20, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964654, - "modifiedTime": 1685833928382, + "modifiedTime": 1686621162955, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/mine-ion-devastating.json b/packs/enhanceditems/consumable/explosive/mine-ion-devastating.json index 9677ca968..856d0030c 100644 --- a/packs/enhanceditems/consumable/explosive/mine-ion-devastating.json +++ b/packs/enhanceditems/consumable/explosive/mine-ion-devastating.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 24, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493965003, - "modifiedTime": 1685833928446, + "modifiedTime": 1686621163044, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/mine-ion-lethal.json b/packs/enhanceditems/consumable/explosive/mine-ion-lethal.json index 851bded1a..a86dd97b6 100644 --- a/packs/enhanceditems/consumable/explosive/mine-ion-lethal.json +++ b/packs/enhanceditems/consumable/explosive/mine-ion-lethal.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 22, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964946, - "modifiedTime": 1685833928436, + "modifiedTime": 1686621163021, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/mine-ion-major.json b/packs/enhanceditems/consumable/explosive/mine-ion-major.json index 3a6640dd7..e74996297 100644 --- a/packs/enhanceditems/consumable/explosive/mine-ion-major.json +++ b/packs/enhanceditems/consumable/explosive/mine-ion-major.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 18, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493965090, - "modifiedTime": 1685833928461, + "modifiedTime": 1686621163055, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/mine-panic-average.json b/packs/enhanceditems/consumable/explosive/mine-panic-average.json index 29c2d5200..642cb69cf 100644 --- a/packs/enhanceditems/consumable/explosive/mine-panic-average.json +++ b/packs/enhanceditems/consumable/explosive/mine-panic-average.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "wis", - "dc": null, - "scaling": "none" + "dc": 16, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964648, - "modifiedTime": 1685833928381, + "modifiedTime": 1686621162953, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/mine-panic-deadly.json b/packs/enhanceditems/consumable/explosive/mine-panic-deadly.json index dc58bc7c4..0ef114d2b 100644 --- a/packs/enhanceditems/consumable/explosive/mine-panic-deadly.json +++ b/packs/enhanceditems/consumable/explosive/mine-panic-deadly.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "wis", - "dc": null, - "scaling": "none" + "dc": 20, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964627, - "modifiedTime": 1685833928377, + "modifiedTime": 1686621162948, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/mine-panic-devastating.json b/packs/enhanceditems/consumable/explosive/mine-panic-devastating.json index 3e2ba2187..924a3f77f 100644 --- a/packs/enhanceditems/consumable/explosive/mine-panic-devastating.json +++ b/packs/enhanceditems/consumable/explosive/mine-panic-devastating.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "wis", - "dc": null, - "scaling": "none" + "dc": 24, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964472, - "modifiedTime": 1685833928342, + "modifiedTime": 1686621162911, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/mine-panic-lethal.json b/packs/enhanceditems/consumable/explosive/mine-panic-lethal.json index 30e4d6cfe..96a4efd66 100644 --- a/packs/enhanceditems/consumable/explosive/mine-panic-lethal.json +++ b/packs/enhanceditems/consumable/explosive/mine-panic-lethal.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "wis", - "dc": null, - "scaling": "none" + "dc": 22, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964377, - "modifiedTime": 1685833928319, + "modifiedTime": 1686621162878, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/mine-panic-major.json b/packs/enhanceditems/consumable/explosive/mine-panic-major.json index cf65ea69d..6f310cbf3 100644 --- a/packs/enhanceditems/consumable/explosive/mine-panic-major.json +++ b/packs/enhanceditems/consumable/explosive/mine-panic-major.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "wis", - "dc": null, - "scaling": "none" + "dc": 18, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964697, - "modifiedTime": 1685833928393, + "modifiedTime": 1686621162965, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/mine-plasma-average.json b/packs/enhanceditems/consumable/explosive/mine-plasma-average.json index 63de761a4..043de7350 100644 --- a/packs/enhanceditems/consumable/explosive/mine-plasma-average.json +++ b/packs/enhanceditems/consumable/explosive/mine-plasma-average.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 16, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964464, - "modifiedTime": 1685833928340, + "modifiedTime": 1686621162908, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/mine-plasma-deadly.json b/packs/enhanceditems/consumable/explosive/mine-plasma-deadly.json index 6991ee32c..1fac1b56a 100644 --- a/packs/enhanceditems/consumable/explosive/mine-plasma-deadly.json +++ b/packs/enhanceditems/consumable/explosive/mine-plasma-deadly.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 20, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964538, - "modifiedTime": 1685833928358, + "modifiedTime": 1686621162932, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/mine-plasma-devastating.json b/packs/enhanceditems/consumable/explosive/mine-plasma-devastating.json index 42f00f0d1..04b706920 100644 --- a/packs/enhanceditems/consumable/explosive/mine-plasma-devastating.json +++ b/packs/enhanceditems/consumable/explosive/mine-plasma-devastating.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 24, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964959, - "modifiedTime": 1685833928439, + "modifiedTime": 1686621163031, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/mine-plasma-lethal.json b/packs/enhanceditems/consumable/explosive/mine-plasma-lethal.json index 199498d2e..9f2bad2d9 100644 --- a/packs/enhanceditems/consumable/explosive/mine-plasma-lethal.json +++ b/packs/enhanceditems/consumable/explosive/mine-plasma-lethal.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 22, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964364, - "modifiedTime": 1685833928313, + "modifiedTime": 1686621162871, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/mine-plasma-major.json b/packs/enhanceditems/consumable/explosive/mine-plasma-major.json index c0e674d0a..19bfeedb4 100644 --- a/packs/enhanceditems/consumable/explosive/mine-plasma-major.json +++ b/packs/enhanceditems/consumable/explosive/mine-plasma-major.json @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 18, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964943, - "modifiedTime": 1685833928436, + "modifiedTime": 1686621163020, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/mine-stun-average.json b/packs/enhanceditems/consumable/explosive/mine-stun-average.json index 9a38a0e71..ad46318e2 100644 --- a/packs/enhanceditems/consumable/explosive/mine-stun-average.json +++ b/packs/enhanceditems/consumable/explosive/mine-stun-average.json @@ -109,7 +109,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -136,7 +136,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -150,8 +150,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 16, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -162,10 +162,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964701, - "modifiedTime": 1685833928394, + "modifiedTime": 1686621162967, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/mine-stun-deadly.json b/packs/enhanceditems/consumable/explosive/mine-stun-deadly.json index 53a81d3f0..7b2703a5e 100644 --- a/packs/enhanceditems/consumable/explosive/mine-stun-deadly.json +++ b/packs/enhanceditems/consumable/explosive/mine-stun-deadly.json @@ -109,7 +109,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -136,7 +136,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -150,8 +150,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 20, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -162,10 +162,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964560, - "modifiedTime": 1685833928368, + "modifiedTime": 1686621162939, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/mine-stun-devastating.json b/packs/enhanceditems/consumable/explosive/mine-stun-devastating.json index e2e6d09c1..c7a7342fe 100644 --- a/packs/enhanceditems/consumable/explosive/mine-stun-devastating.json +++ b/packs/enhanceditems/consumable/explosive/mine-stun-devastating.json @@ -109,7 +109,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -136,7 +136,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -150,8 +150,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 24, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -162,10 +162,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964456, - "modifiedTime": 1685833928337, + "modifiedTime": 1686621162903, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/mine-stun-lethal.json b/packs/enhanceditems/consumable/explosive/mine-stun-lethal.json index ec1b143d5..cf05d9610 100644 --- a/packs/enhanceditems/consumable/explosive/mine-stun-lethal.json +++ b/packs/enhanceditems/consumable/explosive/mine-stun-lethal.json @@ -109,7 +109,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -136,7 +136,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -150,8 +150,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 22, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -162,10 +162,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964500, - "modifiedTime": 1685833928349, + "modifiedTime": 1686621162918, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/mine-stun-major.json b/packs/enhanceditems/consumable/explosive/mine-stun-major.json index 6c77cba2e..20491ecd0 100644 --- a/packs/enhanceditems/consumable/explosive/mine-stun-major.json +++ b/packs/enhanceditems/consumable/explosive/mine-stun-major.json @@ -109,7 +109,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -136,7 +136,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -150,8 +150,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 18, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -162,10 +162,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964700, - "modifiedTime": 1685833928394, + "modifiedTime": 1686621162967, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/thermal-detonator-average.json b/packs/enhanceditems/consumable/explosive/thermal-detonator-average.json index a329ccfe8..7b79f291e 100644 --- a/packs/enhanceditems/consumable/explosive/thermal-detonator-average.json +++ b/packs/enhanceditems/consumable/explosive/thermal-detonator-average.json @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 16, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964919, - "modifiedTime": 1685833928431, + "modifiedTime": 1686621163011, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/thermal-detonator-deadly.json b/packs/enhanceditems/consumable/explosive/thermal-detonator-deadly.json index d020fcba1..e6764956e 100644 --- a/packs/enhanceditems/consumable/explosive/thermal-detonator-deadly.json +++ b/packs/enhanceditems/consumable/explosive/thermal-detonator-deadly.json @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 20, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964993, - "modifiedTime": 1685833928445, + "modifiedTime": 1686621163040, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/thermal-detonator-devastating.json b/packs/enhanceditems/consumable/explosive/thermal-detonator-devastating.json index 9d54cde49..d0f6a99d1 100644 --- a/packs/enhanceditems/consumable/explosive/thermal-detonator-devastating.json +++ b/packs/enhanceditems/consumable/explosive/thermal-detonator-devastating.json @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 24, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964920, - "modifiedTime": 1685833928431, + "modifiedTime": 1686621163011, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/thermal-detonator-lethal.json b/packs/enhanceditems/consumable/explosive/thermal-detonator-lethal.json index c69f5c5f2..7f0394db5 100644 --- a/packs/enhanceditems/consumable/explosive/thermal-detonator-lethal.json +++ b/packs/enhanceditems/consumable/explosive/thermal-detonator-lethal.json @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 22, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493965087, - "modifiedTime": 1685833928460, + "modifiedTime": 1686621163055, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/explosive/thermal-detonator-major.json b/packs/enhanceditems/consumable/explosive/thermal-detonator-major.json index 673056221..daa75b846 100644 --- a/packs/enhanceditems/consumable/explosive/thermal-detonator-major.json +++ b/packs/enhanceditems/consumable/explosive/thermal-detonator-major.json @@ -142,7 +142,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -165,8 +165,8 @@ "formula": "", "save": { "ability": "dex", - "dc": null, - "scaling": "none" + "dc": 18, + "scaling": "flat" }, "consumableType": "explosive", "ammoType": null, @@ -177,10 +177,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493965076, - "modifiedTime": 1685833928455, + "modifiedTime": 1686621163050, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/medpac/poison-average.json b/packs/enhanceditems/consumable/medpac/poison-average.json index 542449bac..93b9d7843 100644 --- a/packs/enhanceditems/consumable/medpac/poison-average.json +++ b/packs/enhanceditems/consumable/medpac/poison-average.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 16, + "scaling": "flat" }, "consumableType": "medpac", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964531, - "modifiedTime": 1685833928356, + "modifiedTime": 1686621162929, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/medpac/poison-deadly.json b/packs/enhanceditems/consumable/medpac/poison-deadly.json index 2fd2cb40a..2c0a94c9d 100644 --- a/packs/enhanceditems/consumable/medpac/poison-deadly.json +++ b/packs/enhanceditems/consumable/medpac/poison-deadly.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 20, + "scaling": "flat" }, "consumableType": "medpac", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964733, - "modifiedTime": 1685833928403, + "modifiedTime": 1686621162974, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/medpac/poison-devastating.json b/packs/enhanceditems/consumable/medpac/poison-devastating.json index 220154b89..963d937f2 100644 --- a/packs/enhanceditems/consumable/medpac/poison-devastating.json +++ b/packs/enhanceditems/consumable/medpac/poison-devastating.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 24, + "scaling": "flat" }, "consumableType": "medpac", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964726, - "modifiedTime": 1685833928401, + "modifiedTime": 1686621162973, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/medpac/poison-lethal.json b/packs/enhanceditems/consumable/medpac/poison-lethal.json index a26d056a8..4e017af22 100644 --- a/packs/enhanceditems/consumable/medpac/poison-lethal.json +++ b/packs/enhanceditems/consumable/medpac/poison-lethal.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 22, + "scaling": "flat" }, "consumableType": "medpac", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964763, - "modifiedTime": 1685833928410, + "modifiedTime": 1686621162981, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/consumable/medpac/poison-major.json b/packs/enhanceditems/consumable/medpac/poison-major.json index e7bbc6a24..a3eb861e8 100644 --- a/packs/enhanceditems/consumable/medpac/poison-major.json +++ b/packs/enhanceditems/consumable/medpac/poison-major.json @@ -113,7 +113,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -140,7 +140,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -159,8 +159,8 @@ "formula": "", "save": { "ability": "con", - "dc": null, - "scaling": "none" + "dc": 18, + "scaling": "flat" }, "consumableType": "medpac", "ammoType": null, @@ -171,10 +171,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964991, - "modifiedTime": 1685833928444, + "modifiedTime": 1686621163040, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/equipment/clothing/circlet-of-persistence.json b/packs/enhanceditems/equipment/clothing/circlet-of-persistence.json index 8c03473b6..5951e41bd 100644 --- a/packs/enhanceditems/equipment/clothing/circlet-of-persistence.json +++ b/packs/enhanceditems/equipment/clothing/circlet-of-persistence.json @@ -89,8 +89,8 @@ "quantity": 1, "weight": 0, "price": { - "denomination": "gc", - "value": 0 + "value": 0, + "denomination": "gc" }, "attunement": 1, "equipped": false, @@ -145,7 +145,7 @@ "save": { "ability": "con", "dc": null, - "scaling": "power" + "scaling": "none" }, "armor": { "value": null, @@ -208,10 +208,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.4", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964895, - "modifiedTime": 1684819089317, + "modifiedTime": 1686621163001, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/equipment/clothing/jensaarai-cloak.json b/packs/enhanceditems/equipment/clothing/jensaarai-cloak.json index 3c886b9fd..9e9caf1e7 100644 --- a/packs/enhanceditems/equipment/clothing/jensaarai-cloak.json +++ b/packs/enhanceditems/equipment/clothing/jensaarai-cloak.json @@ -89,8 +89,8 @@ "quantity": 1, "weight": 0, "price": { - "denomination": "gc", - "value": 0 + "value": 0, + "denomination": "gc" }, "attunement": 1, "equipped": false, @@ -145,7 +145,7 @@ "save": { "ability": "dex", "dc": null, - "scaling": "power" + "scaling": "none" }, "armor": { "value": null, @@ -208,10 +208,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.4", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964685, - "modifiedTime": 1684819089284, + "modifiedTime": 1686621162962, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/equipment/heavy/orbalisk-armor.json b/packs/enhanceditems/equipment/heavy/orbalisk-armor.json index 983b59009..3282e18e2 100644 --- a/packs/enhanceditems/equipment/heavy/orbalisk-armor.json +++ b/packs/enhanceditems/equipment/heavy/orbalisk-armor.json @@ -89,8 +89,8 @@ "quantity": 1, "weight": 65, "price": { - "denomination": "gc", - "value": 9000 + "value": 9000, + "denomination": "gc" }, "attunement": 0, "equipped": false, @@ -130,7 +130,7 @@ "amount": null }, "ability": "", - "actionType": "", + "actionType": "save", "attackBonus": 0, "chatFlavor": "", "critical": null, @@ -141,8 +141,8 @@ "formula": "", "save": { "ability": "wis", - "dc": null, - "scaling": "none" + "dc": 15, + "scaling": "flat" }, "armor": { "value": 18, @@ -238,10 +238,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.4", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493965000, - "modifiedTime": 1684819089338, + "modifiedTime": 1686621163042, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/equipment/heavy/reactive-ultrachrome-armor.json b/packs/enhanceditems/equipment/heavy/reactive-ultrachrome-armor.json index 97e34f6bc..8016dc4a1 100644 --- a/packs/enhanceditems/equipment/heavy/reactive-ultrachrome-armor.json +++ b/packs/enhanceditems/equipment/heavy/reactive-ultrachrome-armor.json @@ -89,8 +89,8 @@ "quantity": 1, "weight": 65, "price": { - "denomination": "gc", - "value": 9000 + "value": 9000, + "denomination": "gc" }, "attunement": 1, "equipped": false, @@ -104,7 +104,7 @@ }, "duration": { "value": "10", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -238,10 +238,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.4", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964876, - "modifiedTime": 1684819089313, + "modifiedTime": 1686621162994, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/equipment/trinket/binders-champion.json b/packs/enhanceditems/equipment/trinket/binders-champion.json index 7a8a4cd8d..e2cf60699 100644 --- a/packs/enhanceditems/equipment/trinket/binders-champion.json +++ b/packs/enhanceditems/equipment/trinket/binders-champion.json @@ -2,7 +2,7 @@ "_id": "NstWlOvN65DbPJsL", "name": "Binders (Champion)", "type": "equipment", - "img": "icons/svg/item-bag.svg", + "img": "systems/sw5e/packs/Icons/Utility/Binders.webp", "effects": [], "folder": null, "sort": 0, @@ -80,17 +80,17 @@ }, "system": { "description": { - "value": "

Adventuring Gear

\n

Binders can be used to restrain a Small or Medium creature with appropriate appendages. Applying binders takes an action, and the target must make a DC 24 Strength or Dexterity saving throw (the target chooses the ability to use). A hostile creature makes this save with advantage. A set of binders comes with one key. Breaking the binders requires a DC 30 Strength check. Escaping them requires a DC 30 Dexterity check. Without the key, unlocking the binders requires a DC 30 security kit to force open. Binders have an AC of 15 and 90 hit points. Destroying the binders frees the creature without harming it.

", + "value": "

Adventuring Gear

\n

Binders can be used to restrain a Small or Medium creature with appropriate appendages. Applying binders takes an action, and the target must make a DC 24 Strength or Dexterity saving throw (the target chooses the ability to use). A hostile creature makes this save with advantage. A set of binders comes with one key. Breaking the binders requires a DC 30 Strength check. Escaping them requires a DC 30 Dexterity check. Without the key, unlocking the binders requires a DC 30 security kit to force open. Binders have an AC of 15 and 90 hit points. Destroying the binders frees the creature without harming it.

\n

 

\n

Binders

\n

Binders can be used to restrain a Small or Medium creature with appropriate appendages. Applying binders takes an action, and the target must make a DC 14 Strength or Dexterity saving throw (the target chooses the ability to use). A hostile creature makes this save with advantage. Breaking the binders requires a DC 20 Strength check. Escaping them requires a DC 20 Dexterity check. A set of binders comes with one key. Without the key, unlocking the binders requires a DC 15 security kit to force open. Binders have an AC of 10 and 15 hit points. Destroying the binders frees the creature without harming it.

", "chat": "", "unidentified": "" }, "requirements": "", "source": "EC", "quantity": 1, - "weight": 0, + "weight": 6, "price": { - "denomination": "gc", - "value": 0 + "value": 50, + "denomination": "gc" }, "attunement": 0, "equipped": false, @@ -104,7 +104,7 @@ }, "duration": { "value": null, - "units": "inst" + "units": "" }, "cover": null, "target": { @@ -129,7 +129,7 @@ "target": null, "amount": null }, - "ability": null, + "ability": "", "actionType": "save", "attackBonus": 0, "chatFlavor": "", @@ -193,7 +193,7 @@ "type": null, "overrides": {} }, - "baseItem": "", + "baseItem": "binders", "speed": { "value": null, "conditions": "" @@ -201,17 +201,17 @@ "strength": null, "stealth": false, "properties": {}, - "proficient": true + "proficient": false }, "ownership": { "default": 0 }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.4", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964656, - "modifiedTime": 1684819089276, + "modifiedTime": 1686621162955, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/equipment/trinket/binders-exceptional.json b/packs/enhanceditems/equipment/trinket/binders-exceptional.json index 179f711f3..395dc48bd 100644 --- a/packs/enhanceditems/equipment/trinket/binders-exceptional.json +++ b/packs/enhanceditems/equipment/trinket/binders-exceptional.json @@ -2,7 +2,7 @@ "_id": "9Os6OkrnlbAe1nrb", "name": "Binders (Exceptional)", "type": "equipment", - "img": "icons/svg/item-bag.svg", + "img": "systems/sw5e/packs/Icons/Utility/Binders.webp", "effects": [], "folder": null, "sort": 0, @@ -80,17 +80,17 @@ }, "system": { "description": { - "value": "

Adventuring Gear

\n

Binders can be used to restrain a Small or Medium creature with appropriate appendages. Applying binders takes an action, and the target must make a DC 22 Strength or Dexterity saving throw (the target chooses the ability to use). A hostile creature makes this save with advantage. A set of binders comes with one key. Breaking the binders requires a DC 28 Strength check. Escaping them requires a DC 28 Dexterity check. Without the key, unlocking the binders requires a DC 27 security kit to force open. Binders have an AC of 14 and 75 hit points. Destroying the binders frees the creature without harming it.

", + "value": "

Adventuring Gear

\n

Binders can be used to restrain a Small or Medium creature with appropriate appendages. Applying binders takes an action, and the target must make a DC 22 Strength or Dexterity saving throw (the target chooses the ability to use). A hostile creature makes this save with advantage. A set of binders comes with one key. Breaking the binders requires a DC 28 Strength check. Escaping them requires a DC 28 Dexterity check. Without the key, unlocking the binders requires a DC 27 security kit to force open. Binders have an AC of 14 and 75 hit points. Destroying the binders frees the creature without harming it.

\n

 

\n

Binders

\n

Binders can be used to restrain a Small or Medium creature with appropriate appendages. Applying binders takes an action, and the target must make a DC 14 Strength or Dexterity saving throw (the target chooses the ability to use). A hostile creature makes this save with advantage. Breaking the binders requires a DC 20 Strength check. Escaping them requires a DC 20 Dexterity check. A set of binders comes with one key. Without the key, unlocking the binders requires a DC 15 security kit to force open. Binders have an AC of 10 and 15 hit points. Destroying the binders frees the creature without harming it.

", "chat": "", "unidentified": "" }, "requirements": "", "source": "EC", "quantity": 1, - "weight": 0, + "weight": 6, "price": { - "denomination": "gc", - "value": 0 + "value": 50, + "denomination": "gc" }, "attunement": 0, "equipped": false, @@ -104,7 +104,7 @@ }, "duration": { "value": null, - "units": "inst" + "units": "" }, "cover": null, "target": { @@ -129,7 +129,7 @@ "target": null, "amount": null }, - "ability": null, + "ability": "", "actionType": "save", "attackBonus": 0, "chatFlavor": "", @@ -193,7 +193,7 @@ "type": null, "overrides": {} }, - "baseItem": "", + "baseItem": "binders", "speed": { "value": null, "conditions": "" @@ -201,17 +201,17 @@ "strength": null, "stealth": false, "properties": {}, - "proficient": true + "proficient": false }, "ownership": { "default": 0 }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.4", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964470, - "modifiedTime": 1684819089241, + "modifiedTime": 1686621162910, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/equipment/trinket/binders-fine.json b/packs/enhanceditems/equipment/trinket/binders-fine.json index 6848297a2..a2c7a8c06 100644 --- a/packs/enhanceditems/equipment/trinket/binders-fine.json +++ b/packs/enhanceditems/equipment/trinket/binders-fine.json @@ -2,7 +2,7 @@ "_id": "CcUUuyuEnZlmia6H", "name": "Binders (Fine)", "type": "equipment", - "img": "icons/svg/item-bag.svg", + "img": "systems/sw5e/packs/Icons/Utility/Binders.webp", "effects": [], "folder": null, "sort": 0, @@ -80,17 +80,17 @@ }, "system": { "description": { - "value": "

Adventuring Gear

\n

Binders can be used to restrain a Small or Medium creature with appropriate appendages. Applying binders takes an action, and the target must make a DC 16 Strength or Dexterity saving throw (the target chooses the ability to use). A hostile creature makes this save with advantage. A set of binders comes with one key. Breaking the binders requires a DC 22 Strength check. Escaping them requires a DC 22 Dexterity check. Without the key, unlocking the binders requires a DC 18 security kit to force open. Binders have an AC of 11 and 30 hit points. Destroying the binders frees the creature without harming it.

", + "value": "

Adventuring Gear

\n

Binders can be used to restrain a Small or Medium creature with appropriate appendages. Applying binders takes an action, and the target must make a DC 16 Strength or Dexterity saving throw (the target chooses the ability to use). A hostile creature makes this save with advantage. A set of binders comes with one key. Breaking the binders requires a DC 22 Strength check. Escaping them requires a DC 22 Dexterity check. Without the key, unlocking the binders requires a DC 18 security kit to force open. Binders have an AC of 11 and 30 hit points. Destroying the binders frees the creature without harming it.

\n

 

\n

Binders

\n

Binders can be used to restrain a Small or Medium creature with appropriate appendages. Applying binders takes an action, and the target must make a DC 14 Strength or Dexterity saving throw (the target chooses the ability to use). A hostile creature makes this save with advantage. Breaking the binders requires a DC 20 Strength check. Escaping them requires a DC 20 Dexterity check. A set of binders comes with one key. Without the key, unlocking the binders requires a DC 15 security kit to force open. Binders have an AC of 10 and 15 hit points. Destroying the binders frees the creature without harming it.

", "chat": "", "unidentified": "" }, "requirements": "", "source": "EC", "quantity": 1, - "weight": 0, + "weight": 6, "price": { - "denomination": "gc", - "value": 0 + "value": 50, + "denomination": "gc" }, "attunement": 0, "equipped": false, @@ -104,7 +104,7 @@ }, "duration": { "value": null, - "units": "inst" + "units": "" }, "cover": null, "target": { @@ -129,7 +129,7 @@ "target": null, "amount": null }, - "ability": null, + "ability": "", "actionType": "save", "attackBonus": 0, "chatFlavor": "", @@ -193,7 +193,7 @@ "type": null, "overrides": {} }, - "baseItem": "", + "baseItem": "binders", "speed": { "value": null, "conditions": "" @@ -201,17 +201,17 @@ "strength": null, "stealth": false, "properties": {}, - "proficient": true + "proficient": false }, "ownership": { "default": 0 }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.4", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964501, - "modifiedTime": 1684819089249, + "modifiedTime": 1686621162919, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/equipment/trinket/binders-improved.json b/packs/enhanceditems/equipment/trinket/binders-improved.json index db4cf105a..d750fecca 100644 --- a/packs/enhanceditems/equipment/trinket/binders-improved.json +++ b/packs/enhanceditems/equipment/trinket/binders-improved.json @@ -2,7 +2,7 @@ "_id": "W5KgEUwQLdPwUADy", "name": "Binders (Improved)", "type": "equipment", - "img": "icons/svg/item-bag.svg", + "img": "systems/sw5e/packs/Icons/Utility/Binders.webp", "effects": [], "folder": null, "sort": 0, @@ -80,17 +80,17 @@ }, "system": { "description": { - "value": "

Adventuring Gear

\n

Binders can be used to restrain a Small or Medium creature with appropriate appendages. Applying binders takes an action, and the target must make a DC 18 Strength or Dexterity saving throw (the target chooses the ability to use). A hostile creature makes this save with advantage. A set of binders comes with one key. Breaking the binders requires a DC 24 Strength check. Escaping them requires a DC 24 Dexterity check. Without the key, unlocking the binders requires a DC 21 security kit to force open. Binders have an AC of 12 and 45 hit points. Destroying the binders frees the creature without harming it.

", + "value": "

Adventuring Gear

\n

Binders can be used to restrain a Small or Medium creature with appropriate appendages. Applying binders takes an action, and the target must make a DC 18 Strength or Dexterity saving throw (the target chooses the ability to use). A hostile creature makes this save with advantage. A set of binders comes with one key. Breaking the binders requires a DC 24 Strength check. Escaping them requires a DC 24 Dexterity check. Without the key, unlocking the binders requires a DC 21 security kit to force open. Binders have an AC of 12 and 45 hit points. Destroying the binders frees the creature without harming it.

\n

 

\n

Binders

\n

Binders can be used to restrain a Small or Medium creature with appropriate appendages. Applying binders takes an action, and the target must make a DC 14 Strength or Dexterity saving throw (the target chooses the ability to use). A hostile creature makes this save with advantage. Breaking the binders requires a DC 20 Strength check. Escaping them requires a DC 20 Dexterity check. A set of binders comes with one key. Without the key, unlocking the binders requires a DC 15 security kit to force open. Binders have an AC of 10 and 15 hit points. Destroying the binders frees the creature without harming it.

", "chat": "", "unidentified": "" }, "requirements": "", "source": "EC", "quantity": 1, - "weight": 0, + "weight": 6, "price": { - "denomination": "gc", - "value": 0 + "value": 50, + "denomination": "gc" }, "attunement": 0, "equipped": false, @@ -104,7 +104,7 @@ }, "duration": { "value": null, - "units": "inst" + "units": "" }, "cover": null, "target": { @@ -129,7 +129,7 @@ "target": null, "amount": null }, - "ability": null, + "ability": "", "actionType": "save", "attackBonus": 0, "chatFlavor": "", @@ -193,7 +193,7 @@ "type": null, "overrides": {} }, - "baseItem": "", + "baseItem": "binders", "speed": { "value": null, "conditions": "" @@ -201,17 +201,17 @@ "strength": null, "stealth": false, "properties": {}, - "proficient": true + "proficient": false }, "ownership": { "default": 0 }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.4", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964732, - "modifiedTime": 1684819089293, + "modifiedTime": 1686621162974, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/equipment/trinket/binders-superior.json b/packs/enhanceditems/equipment/trinket/binders-superior.json index bbf013114..bed59ac4d 100644 --- a/packs/enhanceditems/equipment/trinket/binders-superior.json +++ b/packs/enhanceditems/equipment/trinket/binders-superior.json @@ -2,7 +2,7 @@ "_id": "H3OK3GS3ucueSXKx", "name": "Binders (Superior)", "type": "equipment", - "img": "icons/svg/item-bag.svg", + "img": "systems/sw5e/packs/Icons/Utility/Binders.webp", "effects": [], "folder": null, "sort": 0, @@ -80,17 +80,17 @@ }, "system": { "description": { - "value": "

Adventuring Gear

\n

Binders can be used to restrain a Small or Medium creature with appropriate appendages. Applying binders takes an action, and the target must make a DC 20 Strength or Dexterity saving throw (the target chooses the ability to use). A hostile creature makes this save with advantage. A set of binders comes with one key. Breaking the binders requires a DC 26 Strength check. Escaping them requires a DC 26 Dexterity check. Without the key, unlocking the binders requires a DC 24 security kit to force open. Binders have an AC of 13 and 60 hit points. Destroying the binders frees the creature without harming it.

", + "value": "

Adventuring Gear

\n

Binders can be used to restrain a Small or Medium creature with appropriate appendages. Applying binders takes an action, and the target must make a DC 20 Strength or Dexterity saving throw (the target chooses the ability to use). A hostile creature makes this save with advantage. A set of binders comes with one key. Breaking the binders requires a DC 26 Strength check. Escaping them requires a DC 26 Dexterity check. Without the key, unlocking the binders requires a DC 24 security kit to force open. Binders have an AC of 13 and 60 hit points. Destroying the binders frees the creature without harming it.

\n

 

\n

Binders

\n

Binders can be used to restrain a Small or Medium creature with appropriate appendages. Applying binders takes an action, and the target must make a DC 14 Strength or Dexterity saving throw (the target chooses the ability to use). A hostile creature makes this save with advantage. Breaking the binders requires a DC 20 Strength check. Escaping them requires a DC 20 Dexterity check. A set of binders comes with one key. Without the key, unlocking the binders requires a DC 15 security kit to force open. Binders have an AC of 10 and 15 hit points. Destroying the binders frees the creature without harming it.

", "chat": "", "unidentified": "" }, "requirements": "", "source": "EC", "quantity": 1, - "weight": 0, + "weight": 6, "price": { - "denomination": "gc", - "value": 0 + "value": 50, + "denomination": "gc" }, "attunement": 0, "equipped": false, @@ -104,7 +104,7 @@ }, "duration": { "value": null, - "units": "inst" + "units": "" }, "cover": null, "target": { @@ -129,7 +129,7 @@ "target": null, "amount": null }, - "ability": null, + "ability": "", "actionType": "save", "attackBonus": 0, "chatFlavor": "", @@ -193,7 +193,7 @@ "type": null, "overrides": {} }, - "baseItem": "", + "baseItem": "binders", "speed": { "value": null, "conditions": "" @@ -201,17 +201,17 @@ "strength": null, "stealth": false, "properties": {}, - "proficient": true + "proficient": false }, "ownership": { "default": 0 }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.4", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964545, - "modifiedTime": 1684819089259, + "modifiedTime": 1686621162934, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/equipment/trinket/credit-chip-champion.json b/packs/enhanceditems/equipment/trinket/credit-chip-champion.json index 9268f2cac..2cfdc4a8b 100644 --- a/packs/enhanceditems/equipment/trinket/credit-chip-champion.json +++ b/packs/enhanceditems/equipment/trinket/credit-chip-champion.json @@ -2,7 +2,7 @@ "_id": "Qz2QpMmQi0YD2b6S", "name": "Credit Chip (Champion)", "type": "equipment", - "img": "icons/svg/item-bag.svg", + "img": "systems/sw5e/packs/Icons/Data%20Recording%20and%20Storage/CreditChip.webp", "effects": [], "folder": null, "sort": 0, @@ -80,7 +80,7 @@ }, "system": { "description": { - "value": "

Adventuring Gear

\n

The credit chip is a small, flat card that features a security code and algorithm memory stripes. The chip can be preloaded with a specified number of credits, or it can draw directly from a specific account held by the user. The credit chip can be accessed with a pin, or by a DC 30 slicer's kit check.

", + "value": "

Adventuring Gear

\n

The credit chip is a small, flat card that features a security code and algorithm memory stripes. The chip can be preloaded with a specified number of credits, or it can draw directly from a specific account held by the user. The credit chip can be accessed with a pin, or by a DC 30 slicer's kit check.

\n

 

\n

Credit chip

\n

The credit chip is a small, flat card that features a security code and algorithm memory stripes. The chip can be preloaded with a specified number of credits, or it can draw directly from a specific account held by the user. The credit chip can be accessed with a pin, or by a DC 15 slicer's kit check.

", "chat": "", "unidentified": "" }, @@ -89,8 +89,8 @@ "quantity": 1, "weight": 0, "price": { - "denomination": "gc", - "value": 0 + "value": 100, + "denomination": "gc" }, "attunement": 0, "equipped": false, @@ -104,7 +104,7 @@ }, "duration": { "value": null, - "units": "inst" + "units": "" }, "cover": null, "target": { @@ -129,8 +129,8 @@ "target": null, "amount": null }, - "ability": null, - "actionType": "other", + "ability": "", + "actionType": "", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -145,7 +145,7 @@ "save": { "ability": "", "dc": null, - "scaling": "power" + "scaling": "none" }, "armor": { "value": null, @@ -193,7 +193,7 @@ "type": null, "overrides": {} }, - "baseItem": "", + "baseItem": "creditchip", "speed": { "value": null, "conditions": "" @@ -201,17 +201,17 @@ "strength": null, "stealth": false, "properties": {}, - "proficient": true + "proficient": false }, "ownership": { "default": 0 }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.4", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964682, - "modifiedTime": 1684819089283, + "modifiedTime": 1686621162961, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/equipment/trinket/credit-chip-exceptional.json b/packs/enhanceditems/equipment/trinket/credit-chip-exceptional.json index bf0fd47e4..199f1c1f9 100644 --- a/packs/enhanceditems/equipment/trinket/credit-chip-exceptional.json +++ b/packs/enhanceditems/equipment/trinket/credit-chip-exceptional.json @@ -2,7 +2,7 @@ "_id": "bzFcuW8HWwntvixD", "name": "Credit Chip (Exceptional)", "type": "equipment", - "img": "icons/svg/item-bag.svg", + "img": "systems/sw5e/packs/Icons/Data%20Recording%20and%20Storage/CreditChip.webp", "effects": [], "folder": null, "sort": 0, @@ -80,7 +80,7 @@ }, "system": { "description": { - "value": "

Adventuring Gear

\n

The credit chip is a small, flat card that features a security code and algorithm memory stripes. The chip can be preloaded with a specified number of credits, or it can draw directly from a specific account held by the user. The credit chip can be accessed with a pin, or by a DC 27 slicer's kit check.

", + "value": "

Adventuring Gear

\n

The credit chip is a small, flat card that features a security code and algorithm memory stripes. The chip can be preloaded with a specified number of credits, or it can draw directly from a specific account held by the user. The credit chip can be accessed with a pin, or by a DC 27 slicer's kit check.

\n

 

\n

Credit chip

\n

The credit chip is a small, flat card that features a security code and algorithm memory stripes. The chip can be preloaded with a specified number of credits, or it can draw directly from a specific account held by the user. The credit chip can be accessed with a pin, or by a DC 15 slicer's kit check.

", "chat": "", "unidentified": "" }, @@ -89,8 +89,8 @@ "quantity": 1, "weight": 0, "price": { - "denomination": "gc", - "value": 0 + "value": 100, + "denomination": "gc" }, "attunement": 0, "equipped": false, @@ -104,7 +104,7 @@ }, "duration": { "value": null, - "units": "inst" + "units": "" }, "cover": null, "target": { @@ -129,8 +129,8 @@ "target": null, "amount": null }, - "ability": null, - "actionType": "other", + "ability": "", + "actionType": "", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -145,7 +145,7 @@ "save": { "ability": "", "dc": null, - "scaling": "power" + "scaling": "none" }, "armor": { "value": null, @@ -193,7 +193,7 @@ "type": null, "overrides": {} }, - "baseItem": "", + "baseItem": "creditchip", "speed": { "value": null, "conditions": "" @@ -201,17 +201,17 @@ "strength": null, "stealth": false, "properties": {}, - "proficient": true + "proficient": false }, "ownership": { "default": 0 }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.4", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964842, - "modifiedTime": 1684819089306, + "modifiedTime": 1686621162988, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/equipment/trinket/credit-chip-fine.json b/packs/enhanceditems/equipment/trinket/credit-chip-fine.json index bbb4771bd..2904d1057 100644 --- a/packs/enhanceditems/equipment/trinket/credit-chip-fine.json +++ b/packs/enhanceditems/equipment/trinket/credit-chip-fine.json @@ -2,7 +2,7 @@ "_id": "EsRdOFrI3V57glQB", "name": "Credit Chip (Fine)", "type": "equipment", - "img": "icons/svg/item-bag.svg", + "img": "systems/sw5e/packs/Icons/Data%20Recording%20and%20Storage/CreditChip.webp", "effects": [], "folder": null, "sort": 0, @@ -80,7 +80,7 @@ }, "system": { "description": { - "value": "

Adventuring Gear

\n

The credit chip is a small, flat card that features a security code and algorithm memory stripes. The chip can be preloaded with a specified number of credits, or it can draw directly from a specific account held by the user. The credit chip can be accessed with a pin, or by a DC 18 slicer's kit check.

", + "value": "

Adventuring Gear

\n

The credit chip is a small, flat card that features a security code and algorithm memory stripes. The chip can be preloaded with a specified number of credits, or it can draw directly from a specific account held by the user. The credit chip can be accessed with a pin, or by a DC 18 slicer's kit check.

\n

 

\n

Credit chip

\n

The credit chip is a small, flat card that features a security code and algorithm memory stripes. The chip can be preloaded with a specified number of credits, or it can draw directly from a specific account held by the user. The credit chip can be accessed with a pin, or by a DC 15 slicer's kit check.

", "chat": "", "unidentified": "" }, @@ -89,8 +89,8 @@ "quantity": 1, "weight": 0, "price": { - "denomination": "gc", - "value": 0 + "value": 100, + "denomination": "gc" }, "attunement": 0, "equipped": false, @@ -104,7 +104,7 @@ }, "duration": { "value": null, - "units": "inst" + "units": "" }, "cover": null, "target": { @@ -129,8 +129,8 @@ "target": null, "amount": null }, - "ability": null, - "actionType": "other", + "ability": "", + "actionType": "", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -145,7 +145,7 @@ "save": { "ability": "", "dc": null, - "scaling": "power" + "scaling": "none" }, "armor": { "value": null, @@ -193,7 +193,7 @@ "type": null, "overrides": {} }, - "baseItem": "", + "baseItem": "creditchip", "speed": { "value": null, "conditions": "" @@ -201,17 +201,17 @@ "strength": null, "stealth": false, "properties": {}, - "proficient": true + "proficient": false }, "ownership": { "default": 0 }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.4", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964530, - "modifiedTime": 1684819089255, + "modifiedTime": 1686621162929, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/equipment/trinket/credit-chip-improved.json b/packs/enhanceditems/equipment/trinket/credit-chip-improved.json index 4eca37b8e..92b396fd9 100644 --- a/packs/enhanceditems/equipment/trinket/credit-chip-improved.json +++ b/packs/enhanceditems/equipment/trinket/credit-chip-improved.json @@ -2,7 +2,7 @@ "_id": "lhUmfBWeTdMPLzg9", "name": "Credit Chip (Improved)", "type": "equipment", - "img": "icons/svg/item-bag.svg", + "img": "systems/sw5e/packs/Icons/Data%20Recording%20and%20Storage/CreditChip.webp", "effects": [], "folder": null, "sort": 0, @@ -80,7 +80,7 @@ }, "system": { "description": { - "value": "

Adventuring Gear

\n

The credit chip is a small, flat card that features a security code and algorithm memory stripes. The chip can be preloaded with a specified number of credits, or it can draw directly from a specific account held by the user. The credit chip can be accessed with a pin, or by a DC 21 slicer's kit check.

", + "value": "

Adventuring Gear

\n

The credit chip is a small, flat card that features a security code and algorithm memory stripes. The chip can be preloaded with a specified number of credits, or it can draw directly from a specific account held by the user. The credit chip can be accessed with a pin, or by a DC 21 slicer's kit check.

\n

 

\n

Credit chip

\n

The credit chip is a small, flat card that features a security code and algorithm memory stripes. The chip can be preloaded with a specified number of credits, or it can draw directly from a specific account held by the user. The credit chip can be accessed with a pin, or by a DC 15 slicer's kit check.

", "chat": "", "unidentified": "" }, @@ -89,8 +89,8 @@ "quantity": 1, "weight": 0, "price": { - "denomination": "gc", - "value": 0 + "value": 100, + "denomination": "gc" }, "attunement": 0, "equipped": false, @@ -104,7 +104,7 @@ }, "duration": { "value": null, - "units": "inst" + "units": "" }, "cover": null, "target": { @@ -129,8 +129,8 @@ "target": null, "amount": null }, - "ability": null, - "actionType": "other", + "ability": "", + "actionType": "", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -145,7 +145,7 @@ "save": { "ability": "", "dc": null, - "scaling": "power" + "scaling": "none" }, "armor": { "value": null, @@ -193,7 +193,7 @@ "type": null, "overrides": {} }, - "baseItem": "", + "baseItem": "creditchip", "speed": { "value": null, "conditions": "" @@ -201,17 +201,17 @@ "strength": null, "stealth": false, "properties": {}, - "proficient": true + "proficient": false }, "ownership": { "default": 0 }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.4", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964937, - "modifiedTime": 1684819089326, + "modifiedTime": 1686621163019, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/equipment/trinket/credit-chip-superior.json b/packs/enhanceditems/equipment/trinket/credit-chip-superior.json index e5da4c54b..5fb5d3b3f 100644 --- a/packs/enhanceditems/equipment/trinket/credit-chip-superior.json +++ b/packs/enhanceditems/equipment/trinket/credit-chip-superior.json @@ -2,7 +2,7 @@ "_id": "N126H2FPw3oYN0KH", "name": "Credit Chip (Superior)", "type": "equipment", - "img": "icons/svg/item-bag.svg", + "img": "systems/sw5e/packs/Icons/Data%20Recording%20and%20Storage/CreditChip.webp", "effects": [], "folder": null, "sort": 0, @@ -80,7 +80,7 @@ }, "system": { "description": { - "value": "

Adventuring Gear

\n

The credit chip is a small, flat card that features a security code and algorithm memory stripes. The chip can be preloaded with a specified number of credits, or it can draw directly from a specific account held by the user. The credit chip can be accessed with a pin, or by a DC 24 slicer's kit check.

", + "value": "

Adventuring Gear

\n

The credit chip is a small, flat card that features a security code and algorithm memory stripes. The chip can be preloaded with a specified number of credits, or it can draw directly from a specific account held by the user. The credit chip can be accessed with a pin, or by a DC 24 slicer's kit check.

\n

 

\n

Credit chip

\n

The credit chip is a small, flat card that features a security code and algorithm memory stripes. The chip can be preloaded with a specified number of credits, or it can draw directly from a specific account held by the user. The credit chip can be accessed with a pin, or by a DC 15 slicer's kit check.

", "chat": "", "unidentified": "" }, @@ -89,8 +89,8 @@ "quantity": 1, "weight": 0, "price": { - "denomination": "gc", - "value": 0 + "value": 100, + "denomination": "gc" }, "attunement": 0, "equipped": false, @@ -104,7 +104,7 @@ }, "duration": { "value": null, - "units": "inst" + "units": "" }, "cover": null, "target": { @@ -129,8 +129,8 @@ "target": null, "amount": null }, - "ability": null, - "actionType": "other", + "ability": "", + "actionType": "", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -145,7 +145,7 @@ "save": { "ability": "", "dc": null, - "scaling": "power" + "scaling": "none" }, "armor": { "value": null, @@ -193,7 +193,7 @@ "type": null, "overrides": {} }, - "baseItem": "", + "baseItem": "creditchip", "speed": { "value": null, "conditions": "" @@ -201,17 +201,17 @@ "strength": null, "stealth": false, "properties": {}, - "proficient": true + "proficient": false }, "ownership": { "default": 0 }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.4", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964647, - "modifiedTime": 1684819089273, + "modifiedTime": 1686621162953, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/equipment/trinket/datacron-mk-i.json b/packs/enhanceditems/equipment/trinket/datacron-mk-i.json index 05fa24d71..fa33b4892 100644 --- a/packs/enhanceditems/equipment/trinket/datacron-mk-i.json +++ b/packs/enhanceditems/equipment/trinket/datacron-mk-i.json @@ -2,7 +2,7 @@ "_id": "wPz18qCM6CucYqon", "name": "Datacron Mk I", "type": "equipment", - "img": "icons/svg/item-bag.svg", + "img": "systems/sw5e/packs/Icons/Data%20Recording%20and%20Storage/Datacron.webp", "effects": [], "folder": null, "sort": 0, @@ -80,17 +80,17 @@ }, "system": { "description": { - "value": "

Adventuring Gear

\n

This datacron contains a single at-will tech power. After tinkering with the datacron for at least 2 hours, a techcaster with a Max Power Level of 1st or higher can make a DC 10 techcasting ability check with proficiency. On a success, they learn the contained tech power, which does not count against their tech powers known. On a failure, the power is not learned and the techcaster can't try again for 24 hours.

\n

Datacrons are encrypted storage devices that contain an interactive projection, and are used to store high-value, sensitive information.

", + "value": "

Adventuring Gear

\n

This datacron contains a single at-will tech power. After tinkering with the datacron for at least 2 hours, a techcaster with a Max Power Level of 1st or higher can make a DC 10 techcasting ability check with proficiency. On a success, they learn the contained tech power, which does not count against their tech powers known. On a failure, the power is not learned and the techcaster can't try again for 24 hours.

\n

Datacrons are encrypted storage devices that contain an interactive projection, and are used to store high-value, sensitive information.

\n

 

\n

Datacron

\n

A datacron is a type of holocron that can be accessed by non-Force-sensitives and are mainly used to store encrypted data. They are complete with an interactive projection to access the information.

", "chat": "", "unidentified": "" }, "requirements": "", "source": "WH", "quantity": 1, - "weight": 0, + "weight": 2, "price": { - "denomination": "gc", - "value": 0 + "value": 1000, + "denomination": "gc" }, "attunement": 0, "equipped": false, @@ -129,8 +129,8 @@ "target": null, "amount": null }, - "ability": null, - "actionType": "other", + "ability": "", + "actionType": "", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -145,7 +145,7 @@ "save": { "ability": "", "dc": null, - "scaling": "power" + "scaling": "none" }, "armor": { "value": null, @@ -193,7 +193,7 @@ "type": null, "overrides": {} }, - "baseItem": "", + "baseItem": "datacron", "speed": { "value": null, "conditions": "" @@ -201,17 +201,17 @@ "strength": null, "stealth": false, "properties": {}, - "proficient": true + "proficient": false }, "ownership": { "default": 0 }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.4", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493965065, - "modifiedTime": 1684819089342, + "modifiedTime": 1686621163048, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/equipment/trinket/datacron-mk-ii.json b/packs/enhanceditems/equipment/trinket/datacron-mk-ii.json index 5c83ff15e..d6a27acb9 100644 --- a/packs/enhanceditems/equipment/trinket/datacron-mk-ii.json +++ b/packs/enhanceditems/equipment/trinket/datacron-mk-ii.json @@ -2,7 +2,7 @@ "_id": "WhzFJzSVAZRfrNpQ", "name": "Datacron Mk II", "type": "equipment", - "img": "icons/svg/item-bag.svg", + "img": "systems/sw5e/packs/Icons/Data%20Recording%20and%20Storage/Datacron.webp", "effects": [], "folder": null, "sort": 0, @@ -80,17 +80,17 @@ }, "system": { "description": { - "value": "

Adventuring Gear

\n

This datacron contains a single 1st-level tech power. After tinkering with the datacron for at least 4 hours, a techcaster with a Max Power Level of 1st or higher can make a DC 14 techcasting ability check with proficiency. On a success, they learn the contained tech power, which does not count against their tech powers known. On a failure, the power is not learned and the techcaster can't try again for 24 hours.

\n

Datacrons are encrypted storage devices that contain an interactive projection, and are used to store high-value, sensitive information.

", + "value": "

Adventuring Gear

\n

This datacron contains a single 1st-level tech power. After tinkering with the datacron for at least 4 hours, a techcaster with a Max Power Level of 1st or higher can make a DC 14 techcasting ability check with proficiency. On a success, they learn the contained tech power, which does not count against their tech powers known. On a failure, the power is not learned and the techcaster can't try again for 24 hours.

\n

Datacrons are encrypted storage devices that contain an interactive projection, and are used to store high-value, sensitive information.

\n

 

\n

Datacron

\n

A datacron is a type of holocron that can be accessed by non-Force-sensitives and are mainly used to store encrypted data. They are complete with an interactive projection to access the information.

", "chat": "", "unidentified": "" }, "requirements": "", "source": "WH", "quantity": 1, - "weight": 0, + "weight": 2, "price": { - "denomination": "gc", - "value": 0 + "value": 1000, + "denomination": "gc" }, "attunement": 0, "equipped": false, @@ -129,8 +129,8 @@ "target": null, "amount": null }, - "ability": null, - "actionType": "other", + "ability": "", + "actionType": "", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -145,7 +145,7 @@ "save": { "ability": "", "dc": null, - "scaling": "power" + "scaling": "none" }, "armor": { "value": null, @@ -193,7 +193,7 @@ "type": null, "overrides": {} }, - "baseItem": "", + "baseItem": "datacron", "speed": { "value": null, "conditions": "" @@ -201,17 +201,17 @@ "strength": null, "stealth": false, "properties": {}, - "proficient": true + "proficient": false }, "ownership": { "default": 0 }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.4", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964736, - "modifiedTime": 1684819089294, + "modifiedTime": 1686621162975, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/equipment/trinket/datacron-mk-iii.json b/packs/enhanceditems/equipment/trinket/datacron-mk-iii.json index f5e64271f..595b5d036 100644 --- a/packs/enhanceditems/equipment/trinket/datacron-mk-iii.json +++ b/packs/enhanceditems/equipment/trinket/datacron-mk-iii.json @@ -2,7 +2,7 @@ "_id": "2BvYYkMElC3Uvcem", "name": "Datacron Mk III", "type": "equipment", - "img": "icons/svg/item-bag.svg", + "img": "systems/sw5e/packs/Icons/Data%20Recording%20and%20Storage/Datacron.webp", "effects": [], "folder": null, "sort": 0, @@ -80,17 +80,17 @@ }, "system": { "description": { - "value": "

Adventuring Gear

\n

This datacron contains a single 3rd-level tech power, or multiple powers of 1st-2nd level with a combined level no greater than 3. After tinkering with the datacron for at least 8 hours, a techcaster with a Max Power Level of 3rd or higher can make a DC 18 techcasting ability check with proficiency. On a success, they learn the contained tech power(s), which does not count against their tech powers known. On a failure, the power is not learned and the techcaster can't try again for 24 hours.

\n

Datacrons are encrypted storage devices that contain an interactive projection, and are used to store high-value, sensitive information.

", + "value": "

Adventuring Gear

\n

This datacron contains a single 3rd-level tech power, or multiple powers of 1st-2nd level with a combined level no greater than 3. After tinkering with the datacron for at least 8 hours, a techcaster with a Max Power Level of 3rd or higher can make a DC 18 techcasting ability check with proficiency. On a success, they learn the contained tech power(s), which does not count against their tech powers known. On a failure, the power is not learned and the techcaster can't try again for 24 hours.

\n

Datacrons are encrypted storage devices that contain an interactive projection, and are used to store high-value, sensitive information.

\n

 

\n

Datacron

\n

A datacron is a type of holocron that can be accessed by non-Force-sensitives and are mainly used to store encrypted data. They are complete with an interactive projection to access the information.

", "chat": "", "unidentified": "" }, "requirements": "", "source": "WH", "quantity": 1, - "weight": 0, + "weight": 2, "price": { - "denomination": "gc", - "value": 0 + "value": 1000, + "denomination": "gc" }, "attunement": 0, "equipped": false, @@ -129,8 +129,8 @@ "target": null, "amount": null }, - "ability": null, - "actionType": "other", + "ability": "", + "actionType": "", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -145,7 +145,7 @@ "save": { "ability": "", "dc": null, - "scaling": "power" + "scaling": "none" }, "armor": { "value": null, @@ -193,7 +193,7 @@ "type": null, "overrides": {} }, - "baseItem": "", + "baseItem": "datacron", "speed": { "value": null, "conditions": "" @@ -201,17 +201,17 @@ "strength": null, "stealth": false, "properties": {}, - "proficient": true + "proficient": false }, "ownership": { "default": 0 }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.4", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964372, - "modifiedTime": 1684819089215, + "modifiedTime": 1686621162876, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/equipment/trinket/datacron-mk-iv.json b/packs/enhanceditems/equipment/trinket/datacron-mk-iv.json index 4b7a0c432..dc4d122dd 100644 --- a/packs/enhanceditems/equipment/trinket/datacron-mk-iv.json +++ b/packs/enhanceditems/equipment/trinket/datacron-mk-iv.json @@ -2,7 +2,7 @@ "_id": "aObvxl48EiYk0Gkj", "name": "Datacron Mk IV", "type": "equipment", - "img": "icons/svg/item-bag.svg", + "img": "systems/sw5e/packs/Icons/Data%20Recording%20and%20Storage/Datacron.webp", "effects": [], "folder": null, "sort": 0, @@ -80,17 +80,17 @@ }, "system": { "description": { - "value": "

Adventuring Gear

\n

This datacron contains a single 5th-level tech power, or multiple powers of 1st-4th level with a combined level no greater than 5. After tinkering with the datacron for at least 16 hours, a techcaster with a Max Power Level of 5th or higher can make a DC 22 techcasting ability check with proficiency. On a success, they learn the contained tech power(s), which does not count against their tech powers known. On a failure, the power is not learned and the techcaster can't try again for 24 hours.

\n

Datacrons are encrypted storage devices that contain an interactive projection, and are used to store high-value, sensitive information.

", + "value": "

Adventuring Gear

\n

This datacron contains a single 5th-level tech power, or multiple powers of 1st-4th level with a combined level no greater than 5. After tinkering with the datacron for at least 16 hours, a techcaster with a Max Power Level of 5th or higher can make a DC 22 techcasting ability check with proficiency. On a success, they learn the contained tech power(s), which does not count against their tech powers known. On a failure, the power is not learned and the techcaster can't try again for 24 hours.

\n

Datacrons are encrypted storage devices that contain an interactive projection, and are used to store high-value, sensitive information.

\n

 

\n

Datacron

\n

A datacron is a type of holocron that can be accessed by non-Force-sensitives and are mainly used to store encrypted data. They are complete with an interactive projection to access the information.

", "chat": "", "unidentified": "" }, "requirements": "", "source": "WH", "quantity": 1, - "weight": 0, + "weight": 2, "price": { - "denomination": "gc", - "value": 0 + "value": 1000, + "denomination": "gc" }, "attunement": 0, "equipped": false, @@ -129,8 +129,8 @@ "target": null, "amount": null }, - "ability": null, - "actionType": "other", + "ability": "", + "actionType": "", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -145,7 +145,7 @@ "save": { "ability": "", "dc": null, - "scaling": "power" + "scaling": "none" }, "armor": { "value": null, @@ -193,7 +193,7 @@ "type": null, "overrides": {} }, - "baseItem": "", + "baseItem": "datacron", "speed": { "value": null, "conditions": "" @@ -201,17 +201,17 @@ "strength": null, "stealth": false, "properties": {}, - "proficient": true + "proficient": false }, "ownership": { "default": 0 }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.4", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964778, - "modifiedTime": 1684819089302, + "modifiedTime": 1686621162985, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/equipment/trinket/datacron-mk-v.json b/packs/enhanceditems/equipment/trinket/datacron-mk-v.json index 740545172..51e7231b5 100644 --- a/packs/enhanceditems/equipment/trinket/datacron-mk-v.json +++ b/packs/enhanceditems/equipment/trinket/datacron-mk-v.json @@ -2,7 +2,7 @@ "_id": "1Nya5iUhWpGLqCdG", "name": "Datacron Mk V", "type": "equipment", - "img": "icons/svg/item-bag.svg", + "img": "systems/sw5e/packs/Icons/Data%20Recording%20and%20Storage/Datacron.webp", "effects": [], "folder": null, "sort": 0, @@ -80,17 +80,17 @@ }, "system": { "description": { - "value": "

Adventuring Gear

\n

This datacron contains a single 7th-level tech power, or multiple powers of 1st-6th level with a combined level no greater than 7. After tinkering with the datacron for at least 40 hours, a techcaster with a Max Power Level of 7th or higher can make a DC 26 techcasting ability check with proficiency. On a success, they learn the contained tech power(s), which does not count against their tech powers known. On a failure, the power is not learned and the techcaster can't try again for 24 hours.

\n

Datacrons are encrypted storage devices that contain an interactive projection, and are used to store high-value, sensitive information.

", + "value": "

Adventuring Gear

\n

This datacron contains a single 7th-level tech power, or multiple powers of 1st-6th level with a combined level no greater than 7. After tinkering with the datacron for at least 40 hours, a techcaster with a Max Power Level of 7th or higher can make a DC 26 techcasting ability check with proficiency. On a success, they learn the contained tech power(s), which does not count against their tech powers known. On a failure, the power is not learned and the techcaster can't try again for 24 hours.

\n

Datacrons are encrypted storage devices that contain an interactive projection, and are used to store high-value, sensitive information.

\n

 

\n

Datacron

\n

A datacron is a type of holocron that can be accessed by non-Force-sensitives and are mainly used to store encrypted data. They are complete with an interactive projection to access the information.

", "chat": "", "unidentified": "" }, "requirements": "", "source": "WH", "quantity": 1, - "weight": 0, + "weight": 2, "price": { - "denomination": "gc", - "value": 0 + "value": 1000, + "denomination": "gc" }, "attunement": 0, "equipped": false, @@ -129,8 +129,8 @@ "target": null, "amount": null }, - "ability": null, - "actionType": "other", + "ability": "", + "actionType": "", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -145,7 +145,7 @@ "save": { "ability": "", "dc": null, - "scaling": "power" + "scaling": "none" }, "armor": { "value": null, @@ -193,7 +193,7 @@ "type": null, "overrides": {} }, - "baseItem": "", + "baseItem": "datacron", "speed": { "value": null, "conditions": "" @@ -201,17 +201,17 @@ "strength": null, "stealth": false, "properties": {}, - "proficient": true + "proficient": false }, "ownership": { "default": 0 }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.4", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964366, - "modifiedTime": 1684819089213, + "modifiedTime": 1686621162872, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/equipment/trinket/datacron-mk-vi.json b/packs/enhanceditems/equipment/trinket/datacron-mk-vi.json index 537ceb345..01d6e503d 100644 --- a/packs/enhanceditems/equipment/trinket/datacron-mk-vi.json +++ b/packs/enhanceditems/equipment/trinket/datacron-mk-vi.json @@ -2,7 +2,7 @@ "_id": "b7D27AJbTc37WlGh", "name": "Datacron Mk VI", "type": "equipment", - "img": "icons/svg/item-bag.svg", + "img": "systems/sw5e/packs/Icons/Data%20Recording%20and%20Storage/Datacron.webp", "effects": [], "folder": null, "sort": 0, @@ -80,17 +80,17 @@ }, "system": { "description": { - "value": "

Adventuring Gear

\n

This datacron contains a single 9th-level tech power, or multiple powers of 1st-8th level with a combined level no greater than 9. After tinkering with the datacron for at least 80 hours, a techcaster with a Max Power Level of 9th or higher can make a DC 30 techcasting ability check with proficiency. On a success, they learn the contained tech power(s), which does not count against their tech powers known. On a failure, the power is not learned and the techcaster can't try again for 24 hours.

\n

Datacrons are encrypted storage devices that contain an interactive projection, and are used to store high-value, sensitive information.

", + "value": "

Adventuring Gear

\n

This datacron contains a single 9th-level tech power, or multiple powers of 1st-8th level with a combined level no greater than 9. After tinkering with the datacron for at least 80 hours, a techcaster with a Max Power Level of 9th or higher can make a DC 30 techcasting ability check with proficiency. On a success, they learn the contained tech power(s), which does not count against their tech powers known. On a failure, the power is not learned and the techcaster can't try again for 24 hours.

\n

Datacrons are encrypted storage devices that contain an interactive projection, and are used to store high-value, sensitive information.

\n

 

\n

Datacron

\n

A datacron is a type of holocron that can be accessed by non-Force-sensitives and are mainly used to store encrypted data. They are complete with an interactive projection to access the information.

", "chat": "", "unidentified": "" }, "requirements": "", "source": "WH", "quantity": 1, - "weight": 0, + "weight": 2, "price": { - "denomination": "gc", - "value": 0 + "value": 1000, + "denomination": "gc" }, "attunement": 0, "equipped": false, @@ -129,8 +129,8 @@ "target": null, "amount": null }, - "ability": null, - "actionType": "other", + "ability": "", + "actionType": "", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -145,7 +145,7 @@ "save": { "ability": "", "dc": null, - "scaling": "power" + "scaling": "none" }, "armor": { "value": null, @@ -193,7 +193,7 @@ "type": null, "overrides": {} }, - "baseItem": "", + "baseItem": "datacron", "speed": { "value": null, "conditions": "" @@ -201,17 +201,17 @@ "strength": null, "stealth": false, "properties": {}, - "proficient": true + "proficient": false }, "ownership": { "default": 0 }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.4", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964787, - "modifiedTime": 1684819089304, + "modifiedTime": 1686621162986, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/equipment/trinket/holocron-adept.json b/packs/enhanceditems/equipment/trinket/holocron-adept.json index e661e654b..dc90e08ef 100644 --- a/packs/enhanceditems/equipment/trinket/holocron-adept.json +++ b/packs/enhanceditems/equipment/trinket/holocron-adept.json @@ -2,7 +2,7 @@ "_id": "wn3xWhPseTjPqUnv", "name": "Holocron (Adept)", "type": "equipment", - "img": "icons/svg/item-bag.svg", + "img": "systems/sw5e/packs/Icons/Data%20Recording%20and%20Storage/Holocron.webp", "effects": [], "folder": null, "sort": 0, @@ -80,17 +80,17 @@ }, "system": { "description": { - "value": "

Adventuring Gear

\n

This holocron contains a single 5th-level force power, or multiple powers of 1st-4th level with a combined level no greater than 5. After meditating with the holocron for at least 16 hours, a forcecaster with a Max Power Level of 5th or higher can make a DC 22 forcecasting ability check with proficiency based on the alignment of the power(s) stored within. On a success, they learn the contained force power(s), which does not count against their force powers known and can not be unlearned except through use of a remove curse power. On a failure, the power is not learned and the forcecaster can't try again for 24 hours.

\n

Holocrons are information-storage devices used by Force-wielders that contain ancient lessons or valuable information in holographic form.

", + "value": "

Adventuring Gear

\n

This holocron contains a single 5th-level force power, or multiple powers of 1st-4th level with a combined level no greater than 5. After meditating with the holocron for at least 16 hours, a forcecaster with a Max Power Level of 5th or higher can make a DC 22 forcecasting ability check with proficiency based on the alignment of the power(s) stored within. On a success, they learn the contained force power(s), which does not count against their force powers known and can not be unlearned except through use of a remove curse power. On a failure, the power is not learned and the forcecaster can't try again for 24 hours.

\n

Holocrons are information-storage devices used by Force-wielders that contain ancient lessons or valuable information in holographic form.

\n

 

\n

Holocron

\n

Holocrons are information-storage devices used by force wielders that contain ancient lessons or valuable information in holographic form. They appear as palm-sized, glowing polyhedrons of crystalline material and hardware, and can only be activated and used through the power of the Force.

", "chat": "", "unidentified": "" }, "requirements": "", "source": "WH", "quantity": 1, - "weight": 0, + "weight": 2, "price": { - "denomination": "gc", - "value": 0 + "value": 1000, + "denomination": "gc" }, "attunement": 0, "equipped": false, @@ -129,8 +129,8 @@ "target": null, "amount": null }, - "ability": null, - "actionType": "other", + "ability": "", + "actionType": "", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -145,7 +145,7 @@ "save": { "ability": "", "dc": null, - "scaling": "power" + "scaling": "none" }, "armor": { "value": null, @@ -193,7 +193,7 @@ "type": null, "overrides": {} }, - "baseItem": "", + "baseItem": "holocron", "speed": { "value": null, "conditions": "" @@ -201,17 +201,17 @@ "strength": null, "stealth": false, "properties": {}, - "proficient": true + "proficient": false }, "ownership": { "default": 0 }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.4", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493965068, - "modifiedTime": 1684819089343, + "modifiedTime": 1686621163049, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/equipment/trinket/holocron-ancient.json b/packs/enhanceditems/equipment/trinket/holocron-ancient.json index cf6b73e04..76ae45b73 100644 --- a/packs/enhanceditems/equipment/trinket/holocron-ancient.json +++ b/packs/enhanceditems/equipment/trinket/holocron-ancient.json @@ -2,7 +2,7 @@ "_id": "hwXM3aKKlziyZ0g7", "name": "Holocron (Ancient)", "type": "equipment", - "img": "icons/svg/item-bag.svg", + "img": "systems/sw5e/packs/Icons/Data%20Recording%20and%20Storage/Holocron.webp", "effects": [], "folder": null, "sort": 0, @@ -80,17 +80,17 @@ }, "system": { "description": { - "value": "

Adventuring Gear

\n

This holocron contains a single 9th-level force power, or multiple powers of 1st-8th level with a combined level no greater than 9. After meditating with the holocron for at least 80 hours, a forcecaster with a Max Power Level of 9th or higher can make a DC 30 forcecasting ability check with proficiency based on the alignment of the power(s) stored within. On a success, they learn the contained force power(s), which does not count against their force powers known and can not be unlearned except through use of a remove curse power. On a failure, the power is not learned and the forcecaster can't try again for 24 hours.

\n

Holocrons are information-storage devices used by Force-wielders that contain ancient lessons or valuable information in holographic form.

", + "value": "

Adventuring Gear

\n

This holocron contains a single 9th-level force power, or multiple powers of 1st-8th level with a combined level no greater than 9. After meditating with the holocron for at least 80 hours, a forcecaster with a Max Power Level of 9th or higher can make a DC 30 forcecasting ability check with proficiency based on the alignment of the power(s) stored within. On a success, they learn the contained force power(s), which does not count against their force powers known and can not be unlearned except through use of a remove curse power. On a failure, the power is not learned and the forcecaster can't try again for 24 hours.

\n

Holocrons are information-storage devices used by Force-wielders that contain ancient lessons or valuable information in holographic form.

\n

 

\n

Holocron

\n

Holocrons are information-storage devices used by force wielders that contain ancient lessons or valuable information in holographic form. They appear as palm-sized, glowing polyhedrons of crystalline material and hardware, and can only be activated and used through the power of the Force.

", "chat": "", "unidentified": "" }, "requirements": "", "source": "WH", "quantity": 1, - "weight": 0, + "weight": 2, "price": { - "denomination": "gc", - "value": 0 + "value": 1000, + "denomination": "gc" }, "attunement": 0, "equipped": false, @@ -129,8 +129,8 @@ "target": null, "amount": null }, - "ability": null, - "actionType": "other", + "ability": "", + "actionType": "", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -145,7 +145,7 @@ "save": { "ability": "", "dc": null, - "scaling": "power" + "scaling": "none" }, "armor": { "value": null, @@ -193,7 +193,7 @@ "type": null, "overrides": {} }, - "baseItem": "", + "baseItem": "holocron", "speed": { "value": null, "conditions": "" @@ -201,17 +201,17 @@ "strength": null, "stealth": false, "properties": {}, - "proficient": true + "proficient": false }, "ownership": { "default": 0 }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.4", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964900, - "modifiedTime": 1684819089318, + "modifiedTime": 1686621163003, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/equipment/trinket/holocron-apprentice.json b/packs/enhanceditems/equipment/trinket/holocron-apprentice.json index 789600876..7ab57ad75 100644 --- a/packs/enhanceditems/equipment/trinket/holocron-apprentice.json +++ b/packs/enhanceditems/equipment/trinket/holocron-apprentice.json @@ -2,7 +2,7 @@ "_id": "NwS4atz1wmAfZ9VW", "name": "Holocron (Apprentice)", "type": "equipment", - "img": "icons/svg/item-bag.svg", + "img": "systems/sw5e/packs/Icons/Data%20Recording%20and%20Storage/Holocron.webp", "effects": [], "folder": null, "sort": 0, @@ -80,17 +80,17 @@ }, "system": { "description": { - "value": "

Adventuring Gear

\n

This holocron contains a single 1st-level force power. After meditating with the holocron for at least 4 hours, a forcecaster with a Max Power Level of 1st or higher can make a DC 14 forcecasting ability check with proficiency based on the alignment of the power stored within. On a success, they learn the contained force power, which does not count against their force powers known and can not be unlearned except through use of a remove curse power. On a failure, the power is not learned and the forcecaster can't try again for 24 hours.

\n

Holocrons are information-storage devices used by Force-wielders that contain ancient lessons or valuable information in holographic form.

", + "value": "

Adventuring Gear

\n

This holocron contains a single 1st-level force power. After meditating with the holocron for at least 4 hours, a forcecaster with a Max Power Level of 1st or higher can make a DC 14 forcecasting ability check with proficiency based on the alignment of the power stored within. On a success, they learn the contained force power, which does not count against their force powers known and can not be unlearned except through use of a remove curse power. On a failure, the power is not learned and the forcecaster can't try again for 24 hours.

\n

Holocrons are information-storage devices used by Force-wielders that contain ancient lessons or valuable information in holographic form.

\n

 

\n

Holocron

\n

Holocrons are information-storage devices used by force wielders that contain ancient lessons or valuable information in holographic form. They appear as palm-sized, glowing polyhedrons of crystalline material and hardware, and can only be activated and used through the power of the Force.

", "chat": "", "unidentified": "" }, "requirements": "", "source": "WH", "quantity": 1, - "weight": 0, + "weight": 2, "price": { - "denomination": "gc", - "value": 0 + "value": 1000, + "denomination": "gc" }, "attunement": 0, "equipped": false, @@ -129,8 +129,8 @@ "target": null, "amount": null }, - "ability": null, - "actionType": "other", + "ability": "", + "actionType": "", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -145,7 +145,7 @@ "save": { "ability": "", "dc": null, - "scaling": "power" + "scaling": "none" }, "armor": { "value": null, @@ -193,7 +193,7 @@ "type": null, "overrides": {} }, - "baseItem": "", + "baseItem": "holocron", "speed": { "value": null, "conditions": "" @@ -201,17 +201,17 @@ "strength": null, "stealth": false, "properties": {}, - "proficient": true + "proficient": false }, "ownership": { "default": 0 }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.4", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964657, - "modifiedTime": 1684819089276, + "modifiedTime": 1686621162955, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/equipment/trinket/holocron-journeyman.json b/packs/enhanceditems/equipment/trinket/holocron-journeyman.json index 74bc8751c..c44a55d7b 100644 --- a/packs/enhanceditems/equipment/trinket/holocron-journeyman.json +++ b/packs/enhanceditems/equipment/trinket/holocron-journeyman.json @@ -2,7 +2,7 @@ "_id": "ST5yO7AFSufjYSde", "name": "Holocron (Journeyman)", "type": "equipment", - "img": "icons/svg/item-bag.svg", + "img": "systems/sw5e/packs/Icons/Data%20Recording%20and%20Storage/Holocron.webp", "effects": [], "folder": null, "sort": 0, @@ -80,17 +80,17 @@ }, "system": { "description": { - "value": "

Adventuring Gear

\n

This holocron contains a single 3rd-level force power, or multiple powers of 1st-2nd level with a combined level no greater than 3. After meditating with the holocron for at least 8 hours, a forcecaster with a Max Power Level of 3rd or higher can make a DC 18 forcecasting ability check with proficiency based on the alignment of the power(s) stored within. On a success, they learn the contained force power(s), which does not count against their force powers known and can not be unlearned except through use of a remove curse power. On a failure, the power is not learned and the forcecaster can't try again for 24 hours.

\n

Holocrons are information-storage devices used by Force-wielders that contain ancient lessons or valuable information in holographic form.

", + "value": "

Adventuring Gear

\n

This holocron contains a single 3rd-level force power, or multiple powers of 1st-2nd level with a combined level no greater than 3. After meditating with the holocron for at least 8 hours, a forcecaster with a Max Power Level of 3rd or higher can make a DC 18 forcecasting ability check with proficiency based on the alignment of the power(s) stored within. On a success, they learn the contained force power(s), which does not count against their force powers known and can not be unlearned except through use of a remove curse power. On a failure, the power is not learned and the forcecaster can't try again for 24 hours.

\n

Holocrons are information-storage devices used by Force-wielders that contain ancient lessons or valuable information in holographic form.

\n

 

\n

Holocron

\n

Holocrons are information-storage devices used by force wielders that contain ancient lessons or valuable information in holographic form. They appear as palm-sized, glowing polyhedrons of crystalline material and hardware, and can only be activated and used through the power of the Force.

", "chat": "", "unidentified": "" }, "requirements": "", "source": "WH", "quantity": 1, - "weight": 0, + "weight": 2, "price": { - "denomination": "gc", - "value": 0 + "value": 1000, + "denomination": "gc" }, "attunement": 0, "equipped": false, @@ -129,8 +129,8 @@ "target": null, "amount": null }, - "ability": null, - "actionType": "other", + "ability": "", + "actionType": "", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -145,7 +145,7 @@ "save": { "ability": "", "dc": null, - "scaling": "power" + "scaling": "none" }, "armor": { "value": null, @@ -193,7 +193,7 @@ "type": null, "overrides": {} }, - "baseItem": "", + "baseItem": "holocron", "speed": { "value": null, "conditions": "" @@ -201,17 +201,17 @@ "strength": null, "stealth": false, "properties": {}, - "proficient": true + "proficient": false }, "ownership": { "default": 0 }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.4", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964692, - "modifiedTime": 1684819089285, + "modifiedTime": 1686621162964, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/equipment/trinket/holocron-master.json b/packs/enhanceditems/equipment/trinket/holocron-master.json index 52d89885d..20907743f 100644 --- a/packs/enhanceditems/equipment/trinket/holocron-master.json +++ b/packs/enhanceditems/equipment/trinket/holocron-master.json @@ -2,7 +2,7 @@ "_id": "shTSYwX3SojRlIB2", "name": "Holocron (Master)", "type": "equipment", - "img": "icons/svg/item-bag.svg", + "img": "systems/sw5e/packs/Icons/Data%20Recording%20and%20Storage/Holocron.webp", "effects": [], "folder": null, "sort": 0, @@ -80,17 +80,17 @@ }, "system": { "description": { - "value": "

Adventuring Gear

\n

This holocron contains a single 7th-level force power, or multiple powers of 1st-6th level with a combined level no greater than 7. After meditating with the holocron for at least 40 hours, a forcecaster with a Max Power Level of 7th or higher can make a DC 26 forcecasting ability check with proficiency based on the alignment of the power(s) stored within. On a success, they learn the contained force power(s), which does not count against their force powers known and can not be unlearned except through use of a remove curse power. On a failure, the power is not learned and the forcecaster can't try again for 24 hours.

\n

Holocrons are information-storage devices used by Force-wielders that contain ancient lessons or valuable information in holographic form.

", + "value": "

Adventuring Gear

\n

This holocron contains a single 7th-level force power, or multiple powers of 1st-6th level with a combined level no greater than 7. After meditating with the holocron for at least 40 hours, a forcecaster with a Max Power Level of 7th or higher can make a DC 26 forcecasting ability check with proficiency based on the alignment of the power(s) stored within. On a success, they learn the contained force power(s), which does not count against their force powers known and can not be unlearned except through use of a remove curse power. On a failure, the power is not learned and the forcecaster can't try again for 24 hours.

\n

Holocrons are information-storage devices used by Force-wielders that contain ancient lessons or valuable information in holographic form.

\n

 

\n

Holocron

\n

Holocrons are information-storage devices used by force wielders that contain ancient lessons or valuable information in holographic form. They appear as palm-sized, glowing polyhedrons of crystalline material and hardware, and can only be activated and used through the power of the Force.

", "chat": "", "unidentified": "" }, "requirements": "", "source": "WH", "quantity": 1, - "weight": 0, + "weight": 2, "price": { - "denomination": "gc", - "value": 0 + "value": 1000, + "denomination": "gc" }, "attunement": 0, "equipped": false, @@ -129,8 +129,8 @@ "target": null, "amount": null }, - "ability": null, - "actionType": "other", + "ability": "", + "actionType": "", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -145,7 +145,7 @@ "save": { "ability": "", "dc": null, - "scaling": "power" + "scaling": "none" }, "armor": { "value": null, @@ -193,7 +193,7 @@ "type": null, "overrides": {} }, - "baseItem": "", + "baseItem": "holocron", "speed": { "value": null, "conditions": "" @@ -201,17 +201,17 @@ "strength": null, "stealth": false, "properties": {}, - "proficient": true + "proficient": false }, "ownership": { "default": 0 }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.4", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964991, - "modifiedTime": 1684819089336, + "modifiedTime": 1686621163040, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/equipment/trinket/holocron-novice.json b/packs/enhanceditems/equipment/trinket/holocron-novice.json index 01b6a3d34..64fb07e5f 100644 --- a/packs/enhanceditems/equipment/trinket/holocron-novice.json +++ b/packs/enhanceditems/equipment/trinket/holocron-novice.json @@ -2,7 +2,7 @@ "_id": "KecRf9jLpwr0ruin", "name": "Holocron (Novice)", "type": "equipment", - "img": "icons/svg/item-bag.svg", + "img": "systems/sw5e/packs/Icons/Data%20Recording%20and%20Storage/Holocron.webp", "effects": [], "folder": null, "sort": 0, @@ -80,17 +80,17 @@ }, "system": { "description": { - "value": "

Adventuring Gear

\n

This holocron contains a single at-will force power. After meditating with the holocron for at least 2 hours, a forcecaster with a Max Power Level of 1st or higher can make a DC 10 forcecasting ability check with proficiency based on the alignment of the power stored within. On a success, they learn the contained force power, which does not count against their force powers known and can not be unlearned except through use of a remove curse power. On a failure, the power is not learned and the forcecaster can't try again for 24 hours.

\n

Holocrons are information-storage devices used by Force-wielders that contain ancient lessons or valuable information in holographic form.

", + "value": "

Adventuring Gear

\n

This holocron contains a single at-will force power. After meditating with the holocron for at least 2 hours, a forcecaster with a Max Power Level of 1st or higher can make a DC 10 forcecasting ability check with proficiency based on the alignment of the power stored within. On a success, they learn the contained force power, which does not count against their force powers known and can not be unlearned except through use of a remove curse power. On a failure, the power is not learned and the forcecaster can't try again for 24 hours.

\n

Holocrons are information-storage devices used by Force-wielders that contain ancient lessons or valuable information in holographic form.

\n

 

\n

Holocron

\n

Holocrons are information-storage devices used by force wielders that contain ancient lessons or valuable information in holographic form. They appear as palm-sized, glowing polyhedrons of crystalline material and hardware, and can only be activated and used through the power of the Force.

", "chat": "", "unidentified": "" }, "requirements": "", "source": "WH", "quantity": 1, - "weight": 0, + "weight": 2, "price": { - "denomination": "gc", - "value": 0 + "value": 1000, + "denomination": "gc" }, "attunement": 0, "equipped": false, @@ -129,8 +129,8 @@ "target": null, "amount": null }, - "ability": null, - "actionType": "other", + "ability": "", + "actionType": "", "attackBonus": 0, "chatFlavor": "", "critical": { @@ -145,7 +145,7 @@ "save": { "ability": "", "dc": null, - "scaling": "power" + "scaling": "none" }, "armor": { "value": null, @@ -193,7 +193,7 @@ "type": null, "overrides": {} }, - "baseItem": "", + "baseItem": "holocron", "speed": { "value": null, "conditions": "" @@ -201,17 +201,17 @@ "strength": null, "stealth": false, "properties": {}, - "proficient": true + "proficient": false }, "ownership": { "default": 0 }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.4", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964623, - "modifiedTime": 1684819089270, + "modifiedTime": 1686621162947, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/equipment/trinket/jetpack-champion.json b/packs/enhanceditems/equipment/trinket/jetpack-champion.json index 70266fb3f..a9a7584f0 100644 --- a/packs/enhanceditems/equipment/trinket/jetpack-champion.json +++ b/packs/enhanceditems/equipment/trinket/jetpack-champion.json @@ -104,7 +104,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -208,10 +208,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493965063, - "modifiedTime": 1685833928451, + "modifiedTime": 1686621163048, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/equipment/trinket/jetpack-exceptional.json b/packs/enhanceditems/equipment/trinket/jetpack-exceptional.json index 1d58a5884..337980784 100644 --- a/packs/enhanceditems/equipment/trinket/jetpack-exceptional.json +++ b/packs/enhanceditems/equipment/trinket/jetpack-exceptional.json @@ -104,7 +104,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -208,10 +208,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964742, - "modifiedTime": 1685833928406, + "modifiedTime": 1686621162976, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/equipment/trinket/jetpack-fine.json b/packs/enhanceditems/equipment/trinket/jetpack-fine.json index 2a20d5797..43270a722 100644 --- a/packs/enhanceditems/equipment/trinket/jetpack-fine.json +++ b/packs/enhanceditems/equipment/trinket/jetpack-fine.json @@ -104,7 +104,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -208,10 +208,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964484, - "modifiedTime": 1685833928344, + "modifiedTime": 1686621162914, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/equipment/trinket/jetpack-improved.json b/packs/enhanceditems/equipment/trinket/jetpack-improved.json index 9d8e4bd95..ecb6d108a 100644 --- a/packs/enhanceditems/equipment/trinket/jetpack-improved.json +++ b/packs/enhanceditems/equipment/trinket/jetpack-improved.json @@ -104,7 +104,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -208,10 +208,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964533, - "modifiedTime": 1685833928357, + "modifiedTime": 1686621162929, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/equipment/trinket/jetpack-superior.json b/packs/enhanceditems/equipment/trinket/jetpack-superior.json index 28e0211d3..636b32101 100644 --- a/packs/enhanceditems/equipment/trinket/jetpack-superior.json +++ b/packs/enhanceditems/equipment/trinket/jetpack-superior.json @@ -104,7 +104,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -208,10 +208,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964730, - "modifiedTime": 1685833928401, + "modifiedTime": 1686621162973, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/equipment/trinket/restraining-bolt-champion.json b/packs/enhanceditems/equipment/trinket/restraining-bolt-champion.json index a6f20a52a..23ed15743 100644 --- a/packs/enhanceditems/equipment/trinket/restraining-bolt-champion.json +++ b/packs/enhanceditems/equipment/trinket/restraining-bolt-champion.json @@ -2,7 +2,7 @@ "_id": "4asOST8aVkMhkTRj", "name": "Restraining Bolt (Champion)", "type": "equipment", - "img": "icons/svg/item-bag.svg", + "img": "systems/sw5e/packs/Icons/Utility/RestrainingBolt.webp", "effects": [], "folder": null, "sort": 0, @@ -80,17 +80,17 @@ }, "system": { "description": { - "value": "

Adventuring Gear

\n

Restraining bolts are small, cylindrical devices that can be affixed to a droid in order to limit its functions and enforce its obedience. When inserted, a restraining bolt restricts the droid from any movement its master does not desire, and also forced it to respond to signals produced by a hand-held control unit.

\n

Installing a restraining bolt takes 1 minute. The droid must make a DC 24 Constitution saving throw. A hostile droid makes this save with advantage. On a successful save, the restraining bolt overloads and is rendered useless. On a failed save, the restraining bolt is correctly installed, and the control unit can be used to actively control the droid. While the control unit is inactive, the droid can act freely but it can not attempt to remove the restraining bolt.

", + "value": "

Adventuring Gear

\n

Restraining bolts are small, cylindrical devices that can be affixed to a droid in order to limit its functions and enforce its obedience. When inserted, a restraining bolt restricts the droid from any movement its master does not desire, and also forced it to respond to signals produced by a hand-held control unit.

\n

Installing a restraining bolt takes 1 minute. The droid must make a DC 24 Constitution saving throw. A hostile droid makes this save with advantage. On a successful save, the restraining bolt overloads and is rendered useless. On a failed save, the restraining bolt is correctly installed, and the control unit can be used to actively control the droid. While the control unit is inactive, the droid can act freely but it can not attempt to remove the restraining bolt.

\n

 

\n

Restraining bolt

\n

Restraining bolts are small, cylindrical devices that can be affixed to a droid in order to limit its functions and enforce its obedience. When inserted, a restraining bolt restricts the droid from any movement its master does not desire, and also forced it to respond to signals produced by a hand-held control unit.

\n

Installing a restraining bolt takes 1 minute. The droid must make a DC 14 Constitution saving throw. A hostile droid makes this save with advantage. On a successful save, the restraining bolt overloads and is rendered useless. On a failed save, the restraining bolt is correctly installed, and the control unit can be used to actively control the droid. While the control unit is inactive, the droid can act freely but it can not attempt to remove the restraining bolt.

", "chat": "", "unidentified": "" }, "requirements": "", "source": "EC", "quantity": 1, - "weight": 0, + "weight": 1, "price": { - "denomination": "gc", - "value": 0 + "value": 350, + "denomination": "gc" }, "attunement": 0, "equipped": false, @@ -104,7 +104,7 @@ }, "duration": { "value": null, - "units": "inst" + "units": "" }, "cover": null, "target": { @@ -129,7 +129,7 @@ "target": null, "amount": null }, - "ability": null, + "ability": "", "actionType": "save", "attackBonus": 0, "chatFlavor": "", @@ -193,7 +193,7 @@ "type": null, "overrides": {} }, - "baseItem": "", + "baseItem": "restrainingbolt", "speed": { "value": null, "conditions": "" @@ -201,17 +201,17 @@ "strength": null, "stealth": false, "properties": {}, - "proficient": true + "proficient": false }, "ownership": { "default": 0 }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.4", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964397, - "modifiedTime": 1684819089226, + "modifiedTime": 1686621162888, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/equipment/trinket/restraining-bolt-exceptional.json b/packs/enhanceditems/equipment/trinket/restraining-bolt-exceptional.json index cb5a8a86b..fc3e912aa 100644 --- a/packs/enhanceditems/equipment/trinket/restraining-bolt-exceptional.json +++ b/packs/enhanceditems/equipment/trinket/restraining-bolt-exceptional.json @@ -2,7 +2,7 @@ "_id": "7FTxRgT09M9Ikoph", "name": "Restraining Bolt (Exceptional)", "type": "equipment", - "img": "icons/svg/item-bag.svg", + "img": "systems/sw5e/packs/Icons/Utility/RestrainingBolt.webp", "effects": [], "folder": null, "sort": 0, @@ -80,17 +80,17 @@ }, "system": { "description": { - "value": "

Adventuring Gear

\n

Restraining bolts are small, cylindrical devices that can be affixed to a droid in order to limit its functions and enforce its obedience. When inserted, a restraining bolt restricts the droid from any movement its master does not desire, and also forced it to respond to signals produced by a hand-held control unit.

\n

Installing a restraining bolt takes 1 minute. The droid must make a DC 22 Constitution saving throw. A hostile droid makes this save with advantage. On a successful save, the restraining bolt overloads and is rendered useless. On a failed save, the restraining bolt is correctly installed, and the control unit can be used to actively control the droid. While the control unit is inactive, the droid can act freely but it can not attempt to remove the restraining bolt.

", + "value": "

Adventuring Gear

\n

Restraining bolts are small, cylindrical devices that can be affixed to a droid in order to limit its functions and enforce its obedience. When inserted, a restraining bolt restricts the droid from any movement its master does not desire, and also forced it to respond to signals produced by a hand-held control unit.

\n

Installing a restraining bolt takes 1 minute. The droid must make a DC 22 Constitution saving throw. A hostile droid makes this save with advantage. On a successful save, the restraining bolt overloads and is rendered useless. On a failed save, the restraining bolt is correctly installed, and the control unit can be used to actively control the droid. While the control unit is inactive, the droid can act freely but it can not attempt to remove the restraining bolt.

\n

 

\n

Restraining bolt

\n

Restraining bolts are small, cylindrical devices that can be affixed to a droid in order to limit its functions and enforce its obedience. When inserted, a restraining bolt restricts the droid from any movement its master does not desire, and also forced it to respond to signals produced by a hand-held control unit.

\n

Installing a restraining bolt takes 1 minute. The droid must make a DC 14 Constitution saving throw. A hostile droid makes this save with advantage. On a successful save, the restraining bolt overloads and is rendered useless. On a failed save, the restraining bolt is correctly installed, and the control unit can be used to actively control the droid. While the control unit is inactive, the droid can act freely but it can not attempt to remove the restraining bolt.

", "chat": "", "unidentified": "" }, "requirements": "", "source": "EC", "quantity": 1, - "weight": 0, + "weight": 1, "price": { - "denomination": "gc", - "value": 0 + "value": 350, + "denomination": "gc" }, "attunement": 0, "equipped": false, @@ -104,7 +104,7 @@ }, "duration": { "value": null, - "units": "inst" + "units": "" }, "cover": null, "target": { @@ -129,7 +129,7 @@ "target": null, "amount": null }, - "ability": null, + "ability": "", "actionType": "save", "attackBonus": 0, "chatFlavor": "", @@ -193,7 +193,7 @@ "type": null, "overrides": {} }, - "baseItem": "", + "baseItem": "restrainingbolt", "speed": { "value": null, "conditions": "" @@ -201,17 +201,17 @@ "strength": null, "stealth": false, "properties": {}, - "proficient": true + "proficient": false }, "ownership": { "default": 0 }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.4", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964445, - "modifiedTime": 1684819089233, + "modifiedTime": 1686621162899, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/equipment/trinket/restraining-bolt-fine.json b/packs/enhanceditems/equipment/trinket/restraining-bolt-fine.json index 91c0884db..d45b7a88f 100644 --- a/packs/enhanceditems/equipment/trinket/restraining-bolt-fine.json +++ b/packs/enhanceditems/equipment/trinket/restraining-bolt-fine.json @@ -2,7 +2,7 @@ "_id": "90hZB7EIqPtjEyHU", "name": "Restraining Bolt (Fine)", "type": "equipment", - "img": "icons/svg/item-bag.svg", + "img": "systems/sw5e/packs/Icons/Utility/RestrainingBolt.webp", "effects": [], "folder": null, "sort": 0, @@ -80,17 +80,17 @@ }, "system": { "description": { - "value": "

Adventuring Gear

\n

Restraining bolts are small, cylindrical devices that can be affixed to a droid in order to limit its functions and enforce its obedience. When inserted, a restraining bolt restricts the droid from any movement its master does not desire, and also forced it to respond to signals produced by a hand-held control unit.

\n

Installing a restraining bolt takes 1 minute. The droid must make a DC 16 Constitution saving throw. A hostile droid makes this save with advantage. On a successful save, the restraining bolt overloads and is rendered useless. On a failed save, the restraining bolt is correctly installed, and the control unit can be used to actively control the droid. While the control unit is inactive, the droid can act freely but it can not attempt to remove the restraining bolt.

", + "value": "

Adventuring Gear

\n

Restraining bolts are small, cylindrical devices that can be affixed to a droid in order to limit its functions and enforce its obedience. When inserted, a restraining bolt restricts the droid from any movement its master does not desire, and also forced it to respond to signals produced by a hand-held control unit.

\n

Installing a restraining bolt takes 1 minute. The droid must make a DC 16 Constitution saving throw. A hostile droid makes this save with advantage. On a successful save, the restraining bolt overloads and is rendered useless. On a failed save, the restraining bolt is correctly installed, and the control unit can be used to actively control the droid. While the control unit is inactive, the droid can act freely but it can not attempt to remove the restraining bolt.

\n

 

\n

Restraining bolt

\n

Restraining bolts are small, cylindrical devices that can be affixed to a droid in order to limit its functions and enforce its obedience. When inserted, a restraining bolt restricts the droid from any movement its master does not desire, and also forced it to respond to signals produced by a hand-held control unit.

\n

Installing a restraining bolt takes 1 minute. The droid must make a DC 14 Constitution saving throw. A hostile droid makes this save with advantage. On a successful save, the restraining bolt overloads and is rendered useless. On a failed save, the restraining bolt is correctly installed, and the control unit can be used to actively control the droid. While the control unit is inactive, the droid can act freely but it can not attempt to remove the restraining bolt.

", "chat": "", "unidentified": "" }, "requirements": "", "source": "EC", "quantity": 1, - "weight": 0, + "weight": 1, "price": { - "denomination": "gc", - "value": 0 + "value": 350, + "denomination": "gc" }, "attunement": 0, "equipped": false, @@ -104,7 +104,7 @@ }, "duration": { "value": null, - "units": "inst" + "units": "" }, "cover": null, "target": { @@ -129,7 +129,7 @@ "target": null, "amount": null }, - "ability": null, + "ability": "", "actionType": "save", "attackBonus": 0, "chatFlavor": "", @@ -193,7 +193,7 @@ "type": null, "overrides": {} }, - "baseItem": "", + "baseItem": "restrainingbolt", "speed": { "value": null, "conditions": "" @@ -201,17 +201,17 @@ "strength": null, "stealth": false, "properties": {}, - "proficient": true + "proficient": false }, "ownership": { "default": 0 }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.4", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964467, - "modifiedTime": 1684819089240, + "modifiedTime": 1686621162909, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/equipment/trinket/restraining-bolt-improved.json b/packs/enhanceditems/equipment/trinket/restraining-bolt-improved.json index ebf9bbe26..3d42cafda 100644 --- a/packs/enhanceditems/equipment/trinket/restraining-bolt-improved.json +++ b/packs/enhanceditems/equipment/trinket/restraining-bolt-improved.json @@ -2,7 +2,7 @@ "_id": "B1YeQ8my9iQESJNl", "name": "Restraining Bolt (Improved)", "type": "equipment", - "img": "icons/svg/item-bag.svg", + "img": "systems/sw5e/packs/Icons/Utility/RestrainingBolt.webp", "effects": [], "folder": null, "sort": 0, @@ -80,17 +80,17 @@ }, "system": { "description": { - "value": "

Adventuring Gear

\n

Restraining bolts are small, cylindrical devices that can be affixed to a droid in order to limit its functions and enforce its obedience. When inserted, a restraining bolt restricts the droid from any movement its master does not desire, and also forced it to respond to signals produced by a hand-held control unit.

\n

Installing a restraining bolt takes 1 minute. The droid must make a DC 18 Constitution saving throw. A hostile droid makes this save with advantage. On a successful save, the restraining bolt overloads and is rendered useless. On a failed save, the restraining bolt is correctly installed, and the control unit can be used to actively control the droid. While the control unit is inactive, the droid can act freely but it can not attempt to remove the restraining bolt.

", + "value": "

Adventuring Gear

\n

Restraining bolts are small, cylindrical devices that can be affixed to a droid in order to limit its functions and enforce its obedience. When inserted, a restraining bolt restricts the droid from any movement its master does not desire, and also forced it to respond to signals produced by a hand-held control unit.

\n

Installing a restraining bolt takes 1 minute. The droid must make a DC 18 Constitution saving throw. A hostile droid makes this save with advantage. On a successful save, the restraining bolt overloads and is rendered useless. On a failed save, the restraining bolt is correctly installed, and the control unit can be used to actively control the droid. While the control unit is inactive, the droid can act freely but it can not attempt to remove the restraining bolt.

\n

 

\n

Restraining bolt

\n

Restraining bolts are small, cylindrical devices that can be affixed to a droid in order to limit its functions and enforce its obedience. When inserted, a restraining bolt restricts the droid from any movement its master does not desire, and also forced it to respond to signals produced by a hand-held control unit.

\n

Installing a restraining bolt takes 1 minute. The droid must make a DC 14 Constitution saving throw. A hostile droid makes this save with advantage. On a successful save, the restraining bolt overloads and is rendered useless. On a failed save, the restraining bolt is correctly installed, and the control unit can be used to actively control the droid. While the control unit is inactive, the droid can act freely but it can not attempt to remove the restraining bolt.

", "chat": "", "unidentified": "" }, "requirements": "", "source": "EC", "quantity": 1, - "weight": 0, + "weight": 1, "price": { - "denomination": "gc", - "value": 0 + "value": 350, + "denomination": "gc" }, "attunement": 0, "equipped": false, @@ -104,7 +104,7 @@ }, "duration": { "value": null, - "units": "inst" + "units": "" }, "cover": null, "target": { @@ -129,7 +129,7 @@ "target": null, "amount": null }, - "ability": null, + "ability": "", "actionType": "save", "attackBonus": 0, "chatFlavor": "", @@ -193,7 +193,7 @@ "type": null, "overrides": {} }, - "baseItem": "", + "baseItem": "restrainingbolt", "speed": { "value": null, "conditions": "" @@ -201,17 +201,17 @@ "strength": null, "stealth": false, "properties": {}, - "proficient": true + "proficient": false }, "ownership": { "default": 0 }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.4", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964488, - "modifiedTime": 1684819089246, + "modifiedTime": 1686621162915, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/equipment/trinket/restraining-bolt-superior.json b/packs/enhanceditems/equipment/trinket/restraining-bolt-superior.json index 215672cdc..1e76289c3 100644 --- a/packs/enhanceditems/equipment/trinket/restraining-bolt-superior.json +++ b/packs/enhanceditems/equipment/trinket/restraining-bolt-superior.json @@ -2,7 +2,7 @@ "_id": "LmiUsHFeLmpk5ko6", "name": "Restraining Bolt (Superior)", "type": "equipment", - "img": "icons/svg/item-bag.svg", + "img": "systems/sw5e/packs/Icons/Utility/RestrainingBolt.webp", "effects": [], "folder": null, "sort": 0, @@ -80,17 +80,17 @@ }, "system": { "description": { - "value": "

Adventuring Gear

\n

Restraining bolts are small, cylindrical devices that can be affixed to a droid in order to limit its functions and enforce its obedience. When inserted, a restraining bolt restricts the droid from any movement its master does not desire, and also forced it to respond to signals produced by a hand-held control unit.

\n

Installing a restraining bolt takes 1 minute. The droid must make a DC 20 Constitution saving throw. A hostile droid makes this save with advantage. On a successful save, the restraining bolt overloads and is rendered useless. On a failed save, the restraining bolt is correctly installed, and the control unit can be used to actively control the droid. While the control unit is inactive, the droid can act freely but it can not attempt to remove the restraining bolt.

", + "value": "

Adventuring Gear

\n

Restraining bolts are small, cylindrical devices that can be affixed to a droid in order to limit its functions and enforce its obedience. When inserted, a restraining bolt restricts the droid from any movement its master does not desire, and also forced it to respond to signals produced by a hand-held control unit.

\n

Installing a restraining bolt takes 1 minute. The droid must make a DC 20 Constitution saving throw. A hostile droid makes this save with advantage. On a successful save, the restraining bolt overloads and is rendered useless. On a failed save, the restraining bolt is correctly installed, and the control unit can be used to actively control the droid. While the control unit is inactive, the droid can act freely but it can not attempt to remove the restraining bolt.

\n

 

\n

Restraining bolt

\n

Restraining bolts are small, cylindrical devices that can be affixed to a droid in order to limit its functions and enforce its obedience. When inserted, a restraining bolt restricts the droid from any movement its master does not desire, and also forced it to respond to signals produced by a hand-held control unit.

\n

Installing a restraining bolt takes 1 minute. The droid must make a DC 14 Constitution saving throw. A hostile droid makes this save with advantage. On a successful save, the restraining bolt overloads and is rendered useless. On a failed save, the restraining bolt is correctly installed, and the control unit can be used to actively control the droid. While the control unit is inactive, the droid can act freely but it can not attempt to remove the restraining bolt.

", "chat": "", "unidentified": "" }, "requirements": "", "source": "EC", "quantity": 1, - "weight": 0, + "weight": 1, "price": { - "denomination": "gc", - "value": 0 + "value": 350, + "denomination": "gc" }, "attunement": 0, "equipped": false, @@ -104,7 +104,7 @@ }, "duration": { "value": null, - "units": "inst" + "units": "" }, "cover": null, "target": { @@ -129,7 +129,7 @@ "target": null, "amount": null }, - "ability": null, + "ability": "", "actionType": "save", "attackBonus": 0, "chatFlavor": "", @@ -193,7 +193,7 @@ "type": null, "overrides": {} }, - "baseItem": "", + "baseItem": "restrainingbolt", "speed": { "value": null, "conditions": "" @@ -201,17 +201,17 @@ "strength": null, "stealth": false, "properties": {}, - "proficient": true + "proficient": false }, "ownership": { "default": 0 }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.4", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964637, - "modifiedTime": 1684819089272, + "modifiedTime": 1686621162949, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/equipment/trinket/rocket-boots-champion.json b/packs/enhanceditems/equipment/trinket/rocket-boots-champion.json index e328ad8b9..569e6784b 100644 --- a/packs/enhanceditems/equipment/trinket/rocket-boots-champion.json +++ b/packs/enhanceditems/equipment/trinket/rocket-boots-champion.json @@ -104,7 +104,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -208,10 +208,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964378, - "modifiedTime": 1685833928319, + "modifiedTime": 1686621162879, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/equipment/trinket/rocket-boots-exceptional.json b/packs/enhanceditems/equipment/trinket/rocket-boots-exceptional.json index 1001505bf..3101c2fae 100644 --- a/packs/enhanceditems/equipment/trinket/rocket-boots-exceptional.json +++ b/packs/enhanceditems/equipment/trinket/rocket-boots-exceptional.json @@ -104,7 +104,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -208,10 +208,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964686, - "modifiedTime": 1685833928391, + "modifiedTime": 1686621162963, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/equipment/trinket/rocket-boots-fine.json b/packs/enhanceditems/equipment/trinket/rocket-boots-fine.json index 338cef632..ca27528c8 100644 --- a/packs/enhanceditems/equipment/trinket/rocket-boots-fine.json +++ b/packs/enhanceditems/equipment/trinket/rocket-boots-fine.json @@ -104,7 +104,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -208,10 +208,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964438, - "modifiedTime": 1685833928333, + "modifiedTime": 1686621162898, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/equipment/trinket/rocket-boots-improved.json b/packs/enhanceditems/equipment/trinket/rocket-boots-improved.json index 0dc713248..84633b5d6 100644 --- a/packs/enhanceditems/equipment/trinket/rocket-boots-improved.json +++ b/packs/enhanceditems/equipment/trinket/rocket-boots-improved.json @@ -104,7 +104,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -208,10 +208,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964695, - "modifiedTime": 1685833928393, + "modifiedTime": 1686621162964, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/equipment/trinket/rocket-boots-superior.json b/packs/enhanceditems/equipment/trinket/rocket-boots-superior.json index 55553b3d4..8e14bff26 100644 --- a/packs/enhanceditems/equipment/trinket/rocket-boots-superior.json +++ b/packs/enhanceditems/equipment/trinket/rocket-boots-superior.json @@ -104,7 +104,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -208,10 +208,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964916, - "modifiedTime": 1685833928430, + "modifiedTime": 1686621163009, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/equipment/trinket/rocketpack-champion.json b/packs/enhanceditems/equipment/trinket/rocketpack-champion.json index 0427cdc68..4fc26de3c 100644 --- a/packs/enhanceditems/equipment/trinket/rocketpack-champion.json +++ b/packs/enhanceditems/equipment/trinket/rocketpack-champion.json @@ -108,7 +108,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -218,10 +218,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964917, - "modifiedTime": 1685833928430, + "modifiedTime": 1686621163010, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/equipment/trinket/rocketpack-exceptional.json b/packs/enhanceditems/equipment/trinket/rocketpack-exceptional.json index 3cd23dcbb..50960d968 100644 --- a/packs/enhanceditems/equipment/trinket/rocketpack-exceptional.json +++ b/packs/enhanceditems/equipment/trinket/rocketpack-exceptional.json @@ -108,7 +108,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -218,10 +218,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964702, - "modifiedTime": 1685833928394, + "modifiedTime": 1686621162967, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/equipment/trinket/rocketpack-fine.json b/packs/enhanceditems/equipment/trinket/rocketpack-fine.json index cba5608d7..8f4079747 100644 --- a/packs/enhanceditems/equipment/trinket/rocketpack-fine.json +++ b/packs/enhanceditems/equipment/trinket/rocketpack-fine.json @@ -104,7 +104,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -138,7 +138,12 @@ "damage": "" }, "damage": { - "parts": [], + "parts": [ + [ + "1", + "" + ] + ], "versatile": "" }, "formula": "", @@ -209,10 +214,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964985, - "modifiedTime": 1685833928444, + "modifiedTime": 1686621163038, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/equipment/trinket/rocketpack-improved.json b/packs/enhanceditems/equipment/trinket/rocketpack-improved.json index 1004c08e1..64906a5d8 100644 --- a/packs/enhanceditems/equipment/trinket/rocketpack-improved.json +++ b/packs/enhanceditems/equipment/trinket/rocketpack-improved.json @@ -104,7 +104,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -138,7 +138,12 @@ "damage": "" }, "damage": { - "parts": [], + "parts": [ + [ + "2", + "" + ] + ], "versatile": "" }, "formula": "", @@ -209,10 +214,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493965007, - "modifiedTime": 1685833928447, + "modifiedTime": 1686621163045, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/equipment/trinket/rocketpack-superior.json b/packs/enhanceditems/equipment/trinket/rocketpack-superior.json index 7237a4c12..8c94e506b 100644 --- a/packs/enhanceditems/equipment/trinket/rocketpack-superior.json +++ b/packs/enhanceditems/equipment/trinket/rocketpack-superior.json @@ -104,7 +104,7 @@ }, "duration": { "value": "1", - "units": "" + "units": "minute" }, "cover": null, "target": { @@ -138,7 +138,12 @@ "damage": "" }, "damage": { - "parts": [], + "parts": [ + [ + "3", + "" + ] + ], "versatile": "" }, "formula": "", @@ -209,10 +214,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964713, - "modifiedTime": 1685833928398, + "modifiedTime": 1686621162970, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/weapon/exoticB/ab-75-bo-rifle.json b/packs/enhanceditems/weapon/exoticB/ab-75-bo-rifle.json index 7e43ac4b5..63d62e2ab 100644 --- a/packs/enhanceditems/weapon/exoticB/ab-75-bo-rifle.json +++ b/packs/enhanceditems/weapon/exoticB/ab-75-bo-rifle.json @@ -24,8 +24,8 @@ "quantity": 1, "weight": 0, "price": { - "denomination": "gc", - "value": 1075 + "value": 1075, + "denomination": "gc" }, "attunement": 0, "equipped": false, @@ -74,7 +74,12 @@ "damage": "" }, "damage": { - "parts": [], + "parts": [ + [ + "2", + "" + ] + ], "versatile": "" }, "formula": "", @@ -120,10 +125,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.4", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493965077, - "modifiedTime": 1684819089345, + "modifiedTime": 1686621163051, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/weapon/exoticB/j-19-bo-rifle.json b/packs/enhanceditems/weapon/exoticB/j-19-bo-rifle.json index 2cfe19c2b..c3f19c140 100644 --- a/packs/enhanceditems/weapon/exoticB/j-19-bo-rifle.json +++ b/packs/enhanceditems/weapon/exoticB/j-19-bo-rifle.json @@ -24,8 +24,8 @@ "quantity": 1, "weight": 0, "price": { - "denomination": "gc", - "value": 1075 + "value": 1075, + "denomination": "gc" }, "attunement": 0, "equipped": false, @@ -74,7 +74,12 @@ "damage": "" }, "damage": { - "parts": [], + "parts": [ + [ + "1", + "" + ] + ], "versatile": "" }, "formula": "", @@ -120,10 +125,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.4", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964971, - "modifiedTime": 1684819089332, + "modifiedTime": 1686621163033, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/weapon/martialB/shoulder-cannon-champion-burst.json b/packs/enhanceditems/weapon/martialB/shoulder-cannon-champion-burst.json index 1c96199eb..5d509a0ec 100644 --- a/packs/enhanceditems/weapon/martialB/shoulder-cannon-champion-burst.json +++ b/packs/enhanceditems/weapon/martialB/shoulder-cannon-champion-burst.json @@ -24,8 +24,8 @@ "quantity": 1, "weight": null, "price": { - "denomination": "gc", - "value": 1625 + "value": 1625, + "denomination": "gc" }, "attunement": 0, "equipped": false, @@ -65,9 +65,9 @@ "amount": null, "ammount": null }, - "ability": "str", + "ability": "", "actionType": "save", - "attackBonus": "2 - @abilities.str.mod + 2 - @attributes.prof + 3", + "attackBonus": "3", "chatFlavor": "", "critical": { "threshold": null, @@ -88,9 +88,9 @@ }, "formula": "", "save": { - "ability": "dex", - "dc": null, - "scaling": "none" + "ability": "", + "dc": 12, + "scaling": "flat" }, "armor": { "value": 10 @@ -162,10 +162,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.4", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964709, - "modifiedTime": 1684819089289, + "modifiedTime": 1686621162969, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/weapon/martialB/shoulder-cannon-exceptional-burst.json b/packs/enhanceditems/weapon/martialB/shoulder-cannon-exceptional-burst.json index 6fe99a678..5b9fc4ab3 100644 --- a/packs/enhanceditems/weapon/martialB/shoulder-cannon-exceptional-burst.json +++ b/packs/enhanceditems/weapon/martialB/shoulder-cannon-exceptional-burst.json @@ -24,8 +24,8 @@ "quantity": 1, "weight": null, "price": { - "denomination": "gc", - "value": 1625 + "value": 1625, + "denomination": "gc" }, "attunement": 0, "equipped": false, @@ -65,9 +65,9 @@ "amount": null, "ammount": null }, - "ability": "str", + "ability": "", "actionType": "save", - "attackBonus": "2 - @abilities.str.mod + 2 - @attributes.prof + 3", + "attackBonus": "3", "chatFlavor": "", "critical": { "threshold": null, @@ -88,9 +88,9 @@ }, "formula": "", "save": { - "ability": "dex", - "dc": null, - "scaling": "none" + "ability": "", + "dc": 12, + "scaling": "flat" }, "armor": { "value": 10 @@ -162,10 +162,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.4", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964839, - "modifiedTime": 1684819089306, + "modifiedTime": 1686621162988, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/weapon/martialB/shoulder-cannon-fine-burst.json b/packs/enhanceditems/weapon/martialB/shoulder-cannon-fine-burst.json index 35a4d69f4..0c7bd2b0f 100644 --- a/packs/enhanceditems/weapon/martialB/shoulder-cannon-fine-burst.json +++ b/packs/enhanceditems/weapon/martialB/shoulder-cannon-fine-burst.json @@ -24,8 +24,8 @@ "quantity": 1, "weight": null, "price": { - "denomination": "gc", - "value": 1625 + "value": 1625, + "denomination": "gc" }, "attunement": 0, "equipped": false, @@ -65,9 +65,9 @@ "amount": null, "ammount": null }, - "ability": "str", + "ability": "", "actionType": "save", - "attackBonus": "2 - @abilities.str.mod + 2 - @attributes.prof + 1", + "attackBonus": "1", "chatFlavor": "", "critical": { "threshold": null, @@ -84,9 +84,9 @@ }, "formula": "", "save": { - "ability": "dex", - "dc": null, - "scaling": "none" + "ability": "", + "dc": 12, + "scaling": "flat" }, "armor": { "value": 10 @@ -158,10 +158,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.4", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493965003, - "modifiedTime": 1684819089339, + "modifiedTime": 1686621163043, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/weapon/martialB/shoulder-cannon-improved-burst.json b/packs/enhanceditems/weapon/martialB/shoulder-cannon-improved-burst.json index 87c5ca13d..940146037 100644 --- a/packs/enhanceditems/weapon/martialB/shoulder-cannon-improved-burst.json +++ b/packs/enhanceditems/weapon/martialB/shoulder-cannon-improved-burst.json @@ -24,8 +24,8 @@ "quantity": 1, "weight": null, "price": { - "denomination": "gc", - "value": 1625 + "value": 1625, + "denomination": "gc" }, "attunement": 0, "equipped": false, @@ -65,9 +65,9 @@ "amount": null, "ammount": null }, - "ability": "str", + "ability": "", "actionType": "save", - "attackBonus": "2 - @abilities.str.mod + 2 - @attributes.prof + 2", + "attackBonus": "2", "chatFlavor": "", "critical": { "threshold": null, @@ -84,9 +84,9 @@ }, "formula": "", "save": { - "ability": "dex", - "dc": null, - "scaling": "none" + "ability": "", + "dc": 12, + "scaling": "flat" }, "armor": { "value": 10 @@ -158,10 +158,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.4", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964756, - "modifiedTime": 1684819089298, + "modifiedTime": 1686621162979, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/weapon/martialB/shoulder-cannon-superior-burst.json b/packs/enhanceditems/weapon/martialB/shoulder-cannon-superior-burst.json index 87c1732b3..02fdbd99b 100644 --- a/packs/enhanceditems/weapon/martialB/shoulder-cannon-superior-burst.json +++ b/packs/enhanceditems/weapon/martialB/shoulder-cannon-superior-burst.json @@ -24,8 +24,8 @@ "quantity": 1, "weight": null, "price": { - "denomination": "gc", - "value": 1625 + "value": 1625, + "denomination": "gc" }, "attunement": 0, "equipped": false, @@ -65,9 +65,9 @@ "amount": null, "ammount": null }, - "ability": "str", + "ability": "", "actionType": "save", - "attackBonus": "2 - @abilities.str.mod + 2 - @attributes.prof + 3", + "attackBonus": "3", "chatFlavor": "", "critical": { "threshold": null, @@ -84,9 +84,9 @@ }, "formula": "", "save": { - "ability": "dex", - "dc": null, - "scaling": "none" + "ability": "", + "dc": 12, + "scaling": "flat" }, "armor": { "value": 10 @@ -158,10 +158,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.4", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964638, - "modifiedTime": 1684819089272, + "modifiedTime": 1686621162950, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/weapon/martialVW/hewey.json b/packs/enhanceditems/weapon/martialVW/hewey.json index e96798680..437f81bc1 100644 --- a/packs/enhanceditems/weapon/martialVW/hewey.json +++ b/packs/enhanceditems/weapon/martialVW/hewey.json @@ -105,8 +105,8 @@ "quantity": 1, "weight": 5, "price": { - "denomination": "gc", - "value": 200 + "value": 200, + "denomination": "gc" }, "attunement": 0, "equipped": false, @@ -114,7 +114,7 @@ "identified": true, "isCargo": false, "activation": { - "type": "action", + "type": "special", "cost": 1, "condition": "" }, @@ -210,10 +210,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.4", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493965013, - "modifiedTime": 1684819089341, + "modifiedTime": 1686621163047, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/enhanceditems/weapon/simpleB/shotgun-axe-burst.json b/packs/enhanceditems/weapon/simpleB/shotgun-axe-burst.json index 2f75abb1e..44ea4df6f 100644 --- a/packs/enhanceditems/weapon/simpleB/shotgun-axe-burst.json +++ b/packs/enhanceditems/weapon/simpleB/shotgun-axe-burst.json @@ -107,8 +107,8 @@ "quantity": 1, "weight": null, "price": { - "denomination": "gc", - "value": 725 + "value": 725, + "denomination": "gc" }, "attunement": 0, "equipped": false, @@ -177,7 +177,7 @@ "save": { "ability": "dex", "dc": null, - "scaling": "none" + "scaling": "dex" }, "armor": { "value": 10 @@ -222,10 +222,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.4", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1674493964509, - "modifiedTime": 1684819089250, + "modifiedTime": 1686621162921, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/modifications/fortitude-enhancer-mk-i.json b/packs/modifications/fortitude-enhancer-mk-i.json index e3fecfd38..ed64d9db6 100644 --- a/packs/modifications/fortitude-enhancer-mk-i.json +++ b/packs/modifications/fortitude-enhancer-mk-i.json @@ -77,7 +77,7 @@ "save": { "ability": "str", "dc": null, - "scaling": "power" + "scaling": "none" }, "modificationType": "cybernetic", "modificationSlot": "slot1", @@ -96,10 +96,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1673970648620, - "modifiedTime": 1685836076352, + "modifiedTime": 1686621164912, "lastModifiedBy": "sw5ebuilder0000" }, "_id": "qg0kfphDnzsFJj2G" diff --git a/packs/modifications/fortitude-enhancer-mk-ii.json b/packs/modifications/fortitude-enhancer-mk-ii.json index 6306a32d6..0634a4d8e 100644 --- a/packs/modifications/fortitude-enhancer-mk-ii.json +++ b/packs/modifications/fortitude-enhancer-mk-ii.json @@ -77,7 +77,7 @@ "save": { "ability": "con", "dc": null, - "scaling": "power" + "scaling": "none" }, "modificationType": "cybernetic", "modificationSlot": "slot1", @@ -96,10 +96,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1673970648620, - "modifiedTime": 1685836076335, + "modifiedTime": 1686621164898, "lastModifiedBy": "sw5ebuilder0000" }, "_id": "8EWQ94JI3ZbBWifj" diff --git a/packs/modifications/fortitude-enhancer-mk-iii.json b/packs/modifications/fortitude-enhancer-mk-iii.json index 7c00aa974..32f46e74b 100644 --- a/packs/modifications/fortitude-enhancer-mk-iii.json +++ b/packs/modifications/fortitude-enhancer-mk-iii.json @@ -77,7 +77,7 @@ "save": { "ability": "str", "dc": null, - "scaling": "power" + "scaling": "none" }, "modificationType": "cybernetic", "modificationSlot": "slot1", @@ -96,10 +96,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1673970648621, - "modifiedTime": 1685836076346, + "modifiedTime": 1686621164904, "lastModifiedBy": "sw5ebuilder0000" }, "_id": "WoPZaiY1rMIANVWL" diff --git a/packs/modifications/fortitude-protocol-mk-i.json b/packs/modifications/fortitude-protocol-mk-i.json index 8cb020ec6..438a553f2 100644 --- a/packs/modifications/fortitude-protocol-mk-i.json +++ b/packs/modifications/fortitude-protocol-mk-i.json @@ -77,7 +77,7 @@ "save": { "ability": "str", "dc": null, - "scaling": "power" + "scaling": "none" }, "modificationType": "droidcustomization", "modificationSlot": "slot1", @@ -96,10 +96,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1673970648639, - "modifiedTime": 1685836076337, + "modifiedTime": 1686621164899, "lastModifiedBy": "sw5ebuilder0000" }, "_id": "Cr26l9oxG1Q7udT0" diff --git a/packs/modifications/fortitude-protocol-mk-ii.json b/packs/modifications/fortitude-protocol-mk-ii.json index 07c3541d5..aaa83d5d3 100644 --- a/packs/modifications/fortitude-protocol-mk-ii.json +++ b/packs/modifications/fortitude-protocol-mk-ii.json @@ -77,7 +77,7 @@ "save": { "ability": "con", "dc": null, - "scaling": "power" + "scaling": "none" }, "modificationType": "droidcustomization", "modificationSlot": "slot1", @@ -96,10 +96,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1673970648639, - "modifiedTime": 1685836076343, + "modifiedTime": 1686621164902, "lastModifiedBy": "sw5ebuilder0000" }, "_id": "OYXRUTS5yPQ7RPTo" diff --git a/packs/modifications/fortitude-protocol-mk-iii.json b/packs/modifications/fortitude-protocol-mk-iii.json index e47f86265..3148eb402 100644 --- a/packs/modifications/fortitude-protocol-mk-iii.json +++ b/packs/modifications/fortitude-protocol-mk-iii.json @@ -77,7 +77,7 @@ "save": { "ability": "str", "dc": null, - "scaling": "power" + "scaling": "none" }, "modificationType": "droidcustomization", "modificationSlot": "slot1", @@ -96,10 +96,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1673970648639, - "modifiedTime": 1685836076350, + "modifiedTime": 1686621164911, "lastModifiedBy": "sw5ebuilder0000" }, "_id": "mieBrGTh9cItxqRt" diff --git a/packs/modifications/reflex-enhancer-mk-i.json b/packs/modifications/reflex-enhancer-mk-i.json index c939154ca..e13e83c0e 100644 --- a/packs/modifications/reflex-enhancer-mk-i.json +++ b/packs/modifications/reflex-enhancer-mk-i.json @@ -77,7 +77,7 @@ "save": { "ability": "int", "dc": null, - "scaling": "power" + "scaling": "none" }, "modificationType": "cybernetic", "modificationSlot": "slot1", @@ -96,10 +96,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1673970648629, - "modifiedTime": 1685836076345, + "modifiedTime": 1686621164904, "lastModifiedBy": "sw5ebuilder0000" }, "_id": "Wb3D4xwcpBdtqkr1" diff --git a/packs/modifications/reflex-enhancer-mk-ii.json b/packs/modifications/reflex-enhancer-mk-ii.json index 4bd260eef..bf23d103d 100644 --- a/packs/modifications/reflex-enhancer-mk-ii.json +++ b/packs/modifications/reflex-enhancer-mk-ii.json @@ -77,7 +77,7 @@ "save": { "ability": "dex", "dc": null, - "scaling": "power" + "scaling": "none" }, "modificationType": "cybernetic", "modificationSlot": "slot1", @@ -96,10 +96,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1673970648629, - "modifiedTime": 1685836076347, + "modifiedTime": 1686621164906, "lastModifiedBy": "sw5ebuilder0000" }, "_id": "d5dDR2fjG7qtUadA" diff --git a/packs/modifications/reflex-enhancer-mk-iii.json b/packs/modifications/reflex-enhancer-mk-iii.json index a30a68a4e..38528fe6f 100644 --- a/packs/modifications/reflex-enhancer-mk-iii.json +++ b/packs/modifications/reflex-enhancer-mk-iii.json @@ -77,7 +77,7 @@ "save": { "ability": "dex", "dc": null, - "scaling": "power" + "scaling": "none" }, "modificationType": "cybernetic", "modificationSlot": "slot1", @@ -96,10 +96,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1673970648629, - "modifiedTime": 1685836076344, + "modifiedTime": 1686621164903, "lastModifiedBy": "sw5ebuilder0000" }, "_id": "Q7LLnVUIvIxxxwBp" diff --git a/packs/modifications/reflex-protocol-mk-i.json b/packs/modifications/reflex-protocol-mk-i.json index 3b1a63744..769b40143 100644 --- a/packs/modifications/reflex-protocol-mk-i.json +++ b/packs/modifications/reflex-protocol-mk-i.json @@ -77,7 +77,7 @@ "save": { "ability": "int", "dc": null, - "scaling": "power" + "scaling": "none" }, "modificationType": "droidcustomization", "modificationSlot": "slot1", @@ -96,10 +96,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1673970648644, - "modifiedTime": 1685836076342, + "modifiedTime": 1686621164901, "lastModifiedBy": "sw5ebuilder0000" }, "_id": "L5hAzQgzVACVkRTJ" diff --git a/packs/modifications/reflex-protocol-mk-ii.json b/packs/modifications/reflex-protocol-mk-ii.json index 5b13d8b2a..1fef44601 100644 --- a/packs/modifications/reflex-protocol-mk-ii.json +++ b/packs/modifications/reflex-protocol-mk-ii.json @@ -77,7 +77,7 @@ "save": { "ability": "dex", "dc": null, - "scaling": "power" + "scaling": "none" }, "modificationType": "droidcustomization", "modificationSlot": "slot1", @@ -96,10 +96,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1673970648644, - "modifiedTime": 1685836076349, + "modifiedTime": 1686621164909, "lastModifiedBy": "sw5ebuilder0000" }, "_id": "gGZaxOO3YHmfvkMG" diff --git a/packs/modifications/reflex-protocol-mk-iii.json b/packs/modifications/reflex-protocol-mk-iii.json index f3eb9d55e..18aa93727 100644 --- a/packs/modifications/reflex-protocol-mk-iii.json +++ b/packs/modifications/reflex-protocol-mk-iii.json @@ -77,7 +77,7 @@ "save": { "ability": "dex", "dc": null, - "scaling": "power" + "scaling": "none" }, "modificationType": "droidcustomization", "modificationSlot": "slot1", @@ -96,10 +96,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1673970648644, - "modifiedTime": 1685836076348, + "modifiedTime": 1686621164907, "lastModifiedBy": "sw5ebuilder0000" }, "_id": "ded3VSYWjEWLA6vB" diff --git a/packs/modifications/will-enhancer-mk-i.json b/packs/modifications/will-enhancer-mk-i.json index 4f734d34c..1631f808a 100644 --- a/packs/modifications/will-enhancer-mk-i.json +++ b/packs/modifications/will-enhancer-mk-i.json @@ -77,7 +77,7 @@ "save": { "ability": "cha", "dc": null, - "scaling": "power" + "scaling": "none" }, "modificationType": "cybernetic", "modificationSlot": "slot1", @@ -96,10 +96,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1673970648633, - "modifiedTime": 1685836076344, + "modifiedTime": 1686621164902, "lastModifiedBy": "sw5ebuilder0000" }, "_id": "Of85bs5LPMDbmbjz" diff --git a/packs/modifications/will-enhancer-mk-ii.json b/packs/modifications/will-enhancer-mk-ii.json index fc5ed2f48..931958065 100644 --- a/packs/modifications/will-enhancer-mk-ii.json +++ b/packs/modifications/will-enhancer-mk-ii.json @@ -77,7 +77,7 @@ "save": { "ability": "wis", "dc": null, - "scaling": "power" + "scaling": "none" }, "modificationType": "cybernetic", "modificationSlot": "slot1", @@ -96,10 +96,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1673970648633, - "modifiedTime": 1685836076343, + "modifiedTime": 1686621164902, "lastModifiedBy": "sw5ebuilder0000" }, "_id": "OEoTgdoIdTsgrgb2" diff --git a/packs/modifications/will-enhancer-mk-iii.json b/packs/modifications/will-enhancer-mk-iii.json index 88d360a5b..ed5104d8f 100644 --- a/packs/modifications/will-enhancer-mk-iii.json +++ b/packs/modifications/will-enhancer-mk-iii.json @@ -77,7 +77,7 @@ "save": { "ability": "wis", "dc": null, - "scaling": "power" + "scaling": "none" }, "modificationType": "cybernetic", "modificationSlot": "slot1", @@ -96,10 +96,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1673970648633, - "modifiedTime": 1685836076349, + "modifiedTime": 1686621164910, "lastModifiedBy": "sw5ebuilder0000" }, "_id": "jW9vL4YmP6S6DzpW" diff --git a/packs/modifications/will-protocol-mk-i.json b/packs/modifications/will-protocol-mk-i.json index d858a2b15..b83accc5c 100644 --- a/packs/modifications/will-protocol-mk-i.json +++ b/packs/modifications/will-protocol-mk-i.json @@ -77,7 +77,7 @@ "save": { "ability": "cha", "dc": null, - "scaling": "power" + "scaling": "none" }, "modificationType": "droidcustomization", "modificationSlot": "slot1", @@ -96,10 +96,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1673970648651, - "modifiedTime": 1685836076335, + "modifiedTime": 1686621164897, "lastModifiedBy": "sw5ebuilder0000" }, "_id": "7Ne8zs6ea8butVal" diff --git a/packs/modifications/will-protocol-mk-ii.json b/packs/modifications/will-protocol-mk-ii.json index 0ed2e2304..22373f0b7 100644 --- a/packs/modifications/will-protocol-mk-ii.json +++ b/packs/modifications/will-protocol-mk-ii.json @@ -77,7 +77,7 @@ "save": { "ability": "wis", "dc": null, - "scaling": "power" + "scaling": "none" }, "modificationType": "droidcustomization", "modificationSlot": "slot1", @@ -96,10 +96,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1673970648651, - "modifiedTime": 1685836076352, + "modifiedTime": 1686621164912, "lastModifiedBy": "sw5ebuilder0000" }, "_id": "r0jhDz3hHt7ADhr6" diff --git a/packs/modifications/will-protocol-mk-iii.json b/packs/modifications/will-protocol-mk-iii.json index 76a206a13..4d0c358bc 100644 --- a/packs/modifications/will-protocol-mk-iii.json +++ b/packs/modifications/will-protocol-mk-iii.json @@ -77,7 +77,7 @@ "save": { "ability": "wis", "dc": null, - "scaling": "power" + "scaling": "none" }, "modificationType": "droidcustomization", "modificationSlot": "slot1", @@ -96,10 +96,10 @@ }, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.7", "coreVersion": "10.291", "createdTime": 1673970648651, - "modifiedTime": 1685836076339, + "modifiedTime": 1686621164899, "lastModifiedBy": "sw5ebuilder0000" }, "_id": "GZjd9tGp3Fkf1v0L" diff --git a/packs/starshipmodifications/universal/amphibious-systems.json b/packs/starshipmodifications/universal/amphibious-systems.json index e3665c437..9bfa49292 100644 --- a/packs/starshipmodifications/universal/amphibious-systems.json +++ b/packs/starshipmodifications/universal/amphibious-systems.json @@ -31,13 +31,6 @@ "flags": { "core": { "statusId": "" - }, - "dae": { - "selfTarget": false, - "selfTargetAlways": false, - "stackable": "none", - "durationExpression": "", - "specialDuration": [] } }, "tint": null, diff --git a/packs/ventures/analytical-coordinator.json b/packs/ventures/analytical-coordinator.json index 54d03d56f..667699b07 100644 --- a/packs/ventures/analytical-coordinator.json +++ b/packs/ventures/analytical-coordinator.json @@ -7,7 +7,7 @@ "effects": [], "system": { "description": { - "value": "

Prerequisite: at least 1 level in scholar

When an ally makes an ability check or attack roll affected by your Direct action, and they are also the target of your Critical Analysis class feature, they can also roll a d6 and add it to the ability check or attack roll.

", + "value": "

Prerequisite: at least 1 level in scholar

When an ally makes an ability check or attack roll affected by your Direct action, and they are also the target of your Critical Analysis class feature, they can also roll a [[/r 1d6]] and add it to the ability check or attack roll.

", "chat": "", "unidentified": "" }, diff --git a/packs/ventures/astrogation-mechanic.json b/packs/ventures/astrogation-mechanic.json index ae35b3f4b..0afc58eca 100644 --- a/packs/ventures/astrogation-mechanic.json +++ b/packs/ventures/astrogation-mechanic.json @@ -9,7 +9,7 @@ "_id": "NQ9xVr1fG8FQlSr2", "system": { "description": { - "value": "

When you make an Intelligence (Technology) check in place of an Intelligence (Astrogation) check or an Intelligence (Mechanic's Kit) check when taking the Patch action, you do not suffer from the normal disadvantage.

", + "value": "

When you make an Intelligence (Astrogation) check, your ship is considered proficiently equipped if you have proficiency in Technology or expertly equipped if you have expertise in Technology.
Additionally, when you make a Constitution (Patch) check when taking the Patch action, your ship is considered proficiently equipped if you have proficiency in Mechanic's Kit or expertly equipped if you have expertise in Mechanic's Kit.

", "chat": "", "unidentified": "" }, diff --git a/packs/ventures/force-empowered-blasting.json b/packs/ventures/force-empowered-blasting.json index 56916f399..e76cd29ae 100644 --- a/packs/ventures/force-empowered-blasting.json +++ b/packs/ventures/force-empowered-blasting.json @@ -7,7 +7,7 @@ "effects": [], "system": { "description": { - "value": "

Prerequisite: at least 2 levels in guardian

Once per turn, when you deal damage with a ship weapon, you can spend 1 force point to deal an additional 1d8 damage to the target. The damage is the same type as the weapon's damage.

", + "value": "

Prerequisite: at least 2 levels in guardian

Once per turn, when you deal damage with a ship weapon, you can spend 1 force point to deal an additional [[/r 1d8]] damage to the target. The damage is the same type as the weapon's damage.

", "chat": "", "unidentified": "" }, diff --git a/packs/ventures/multi-roles.json b/packs/ventures/force-purification.json similarity index 74% rename from packs/ventures/multi-roles.json rename to packs/ventures/force-purification.json index b46ca0b9b..db8c407ed 100644 --- a/packs/ventures/multi-roles.json +++ b/packs/ventures/force-purification.json @@ -1,20 +1,17 @@ { - "_id": "6AtbJ4PKePAUc4M0", - "name": "Multi-Roles", + "name": "Force Purification", "type": "feat", - "flags": {}, "img": "systems/sw5e/packs/Icons/Ventures/Venture.webp", - "effects": [], "system": { "description": { - "value": "

Prerequisite: Dual Roles venture

When you advance a rank in your primary deployment, you may select a maneuver from any deployment instead of your primary deployment.

", + "value": "

Prerequisite: at least 14 levels in guardian

Ships become valid targets for you Cleansing Touch ability.

", "chat": "", "unidentified": "" }, "requirements": "", "source": "SotG", "activation": { - "type": "", + "type": "none", "cost": null, "condition": "" }, @@ -46,7 +43,7 @@ "amount": null }, "ability": null, - "actionType": null, + "actionType": "", "attackBonus": "", "chatFlavor": "", "critical": { @@ -76,22 +73,21 @@ "space": null, "turn": null } - }, - "prerequisites": [ - " Dual Roles venture " - ] + } }, + "effects": [], "ownership": { "default": 0 }, - "folder": null, - "sort": 0, + "flags": {}, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.5", "coreVersion": "10.291", - "createdTime": 1674494021240, - "modifiedTime": 1685840671105, + "createdTime": 1684707193273, + "modifiedTime": 1684708800804, "lastModifiedBy": "sw5ebuilder0000" - } + }, + "sort": 0, + "_id": "SGalcQVyBvPWEZwx" } diff --git a/packs/ventures/gunning-mastery.json b/packs/ventures/gunning-mastery.json new file mode 100644 index 000000000..52ae40052 --- /dev/null +++ b/packs/ventures/gunning-mastery.json @@ -0,0 +1,97 @@ +{ + "_id": "IgzI7pPKUTkzKjwt", + "name": "Gunning Mastery", + "type": "feat", + "flags": {}, + "img": "systems/sw5e/packs/Icons/Ventures/Venture.webp", + "effects": [], + "system": { + "description": { + "value": "

Prerequisite: 5th rank

You master a particular style of gunning. Choose one of the Gunning Mastery options, detailed below. You can select this venture multiple times. You can't take a Gunning Mastery option more than once, even if you later get to choose again.

CANNON MASTERY

You are the master of laser cannons. While you are firing a primary weapon, when you take the Fire action, you can choose to fire rapidly at the expense of accuracy. Your attacks are made without the aid of your proficiency bonus, but you use your bonus action to make an additional attack, also without your proficiency bonus.

HEAVY GUN MASTERY

You are the master of railguns and turbolasers. While you are firing a secondary weapon, before you make an attack, you can choose to double your proficiency bonus. If the attack hits, you reduce the damage dealt by an amount equal to your proficiency bonus.

PAYLOAD MASTERY

You are the master of missiles, rockets, and other ship-board explosive weapons. While you are firing a tertiary or quaternary weapon, you can choose to reduce the DC by an amount equal to your proficiency bonus. If you do, and the target fails the saving throw, they take additional damage equal to twice your proficiency bonus.

", + "chat": "", + "unidentified": "" + }, + "requirements": "", + "source": "SotG", + "activation": { + "type": "none", + "cost": null, + "condition": "" + }, + "duration": { + "value": "", + "units": "" + }, + "cover": null, + "target": { + "value": null, + "width": null, + "units": "", + "type": "" + }, + "range": { + "value": null, + "long": null, + "units": "" + }, + "uses": { + "value": null, + "max": "", + "per": null, + "recovery": "" + }, + "consume": { + "type": "", + "target": null, + "amount": null + }, + "ability": null, + "actionType": "", + "attackBonus": "", + "chatFlavor": "", + "critical": { + "threshold": null, + "damage": "" + }, + "damage": { + "parts": [], + "versatile": "" + }, + "formula": "", + "save": { + "ability": "", + "dc": null, + "scaling": "power" + }, + "type": { + "value": "deployment", + "subtype": "venture" + }, + "recharge": { + "value": null, + "charged": false + }, + "attributes": { + "speed": { + "space": null, + "turn": null + } + }, + "prerequisites": [ + "5th rank" + ] + }, + "ownership": { + "default": 0 + }, + "folder": null, + "sort": 0, + "_stats": { + "systemId": "sw5e", + "systemVersion": "2.1.5.2.4.5", + "coreVersion": "10.291", + "createdTime": 1674494021248, + "modifiedTime": 1684708496114, + "lastModifiedBy": "sw5ebuilder0000" + } +} diff --git a/packs/ventures/gunning-stylist.json b/packs/ventures/gunning-stylist.json index 998ed7386..15c100f5e 100644 --- a/packs/ventures/gunning-stylist.json +++ b/packs/ventures/gunning-stylist.json @@ -7,7 +7,7 @@ "effects": [], "system": { "description": { - "value": "

Prerequisite: 3rd rank

You adopt a particular style of gunning as your specialty. Choose one of the gunning style options options, detailed later in this chapter. You can't take a gunning style option more than once, even if you later get to choose again. You can select this venture multiple times.

", + "value": "

Prerequisite: 3rd rank

You adopt a particular style of gunning as your specialty. Choose one of the Gunning Style options options, detailed below. You can select this venture multiple times. You can't take a Gunning Style option more than once, even if you later get to choose again.

CANNONEER

You are skilled with laser cannons. While you are firing a primary weapon, you gain a +2 bonus to damage rolls and save DCs.

HEAVY GUNNER

You are skilled with railguns and turbolasers. While you are firing a secondary weapon, you gain a +2 bonus to attack rolls and save DCs.

PAYLOAD DELIVERY

You are skilled with mines, missiles, rockets, and other explosive weapons. When you roll a 1 or 2 on a damage die for a tertiary or quaternary weapon, you can reroll the die and must use the new roll, even if the new roll is a 1 or a 2.

", "chat": "", "unidentified": "" }, diff --git a/packs/ventures/infiltration.json b/packs/ventures/infiltration.json new file mode 100644 index 000000000..7e20e1072 --- /dev/null +++ b/packs/ventures/infiltration.json @@ -0,0 +1,94 @@ +{ + "name": "Infiltration", + "type": "feat", + "img": "systems/sw5e/packs/Icons/Ventures/Venture.webp", + "system": { + "description": { + "value": "

Prerequisite: at least 10 levels in scout

You can take the Fly or Conceal actions as a bonus action on each of your turns.
When you attempt to Conceal your ship, you can opt to not move your ship more than half its speed on that turn. If you do so, ships that attempt to detect you take a -10 penalty to their Wisdom (Scan) checks until the start of your next turn. You lose this benefit if you move more than half your speed, either voluntarily or because of some external effect. You are still automatically detected if any effect or action causes you to no longer be hidden.
If you are still hidden on your next turn, you can continue to move up to half your speed and gain this benefit until you are detected.
Finally, you can no longer be tracked by unenhanced means, unless you choose to leave a trail.

", + "chat": "", + "unidentified": "" + }, + "requirements": "", + "source": "SotG", + "activation": { + "type": "none", + "cost": null, + "condition": "" + }, + "duration": { + "value": "", + "units": "" + }, + "cover": null, + "target": { + "value": null, + "width": null, + "units": "", + "type": "" + }, + "range": { + "value": null, + "long": null, + "units": "" + }, + "uses": { + "value": null, + "max": "", + "per": null, + "recovery": "" + }, + "consume": { + "type": "", + "target": null, + "amount": null + }, + "ability": null, + "actionType": "", + "attackBonus": "", + "chatFlavor": "", + "critical": { + "threshold": null, + "damage": "" + }, + "damage": { + "parts": [], + "versatile": "" + }, + "formula": "", + "save": { + "ability": "", + "dc": null, + "scaling": "power" + }, + "type": { + "value": "deployment", + "subtype": "venture" + }, + "recharge": { + "value": null, + "charged": false + }, + "attributes": { + "speed": { + "space": null, + "turn": null + } + } + }, + "effects": [], + "ownership": { + "default": 0 + }, + "flags": {}, + "_stats": { + "systemId": "sw5e", + "systemVersion": "2.1.5.2.4.5", + "coreVersion": "10.291", + "createdTime": 1684707193273, + "modifiedTime": 1684708816320, + "lastModifiedBy": "sw5ebuilder0000" + }, + "folder": null, + "sort": 0, + "_id": "FrNrx5wT5UQVhPNZ" +} diff --git a/packs/ventures/keen-eye.json b/packs/ventures/keen-eye.json index 0269fa692..eb1cca55a 100644 --- a/packs/ventures/keen-eye.json +++ b/packs/ventures/keen-eye.json @@ -7,7 +7,7 @@ "effects": [], "system": { "description": { - "value": "

Prerequisite: 4th rank

When you take the Search action and succeed on a Wisdom (Scan) or Intelligence (Probe) check aided by your ship's scanners, you can learn certain information about a target if you are aware of them. The GM tells you if the ship is your ship's equal, superior, or inferior in regard to one of the following characteristics of your choice:

", + "value": "

Prerequisite: 4th rank

When you take the Search action and succeed on a Wisdom (Scan) or Intelligence (Probe) check aided by your ship's scanners, you can learn certain information about a target if you are aware of them. The GM tells you if the ship is your ship's equal, superior, or inferior in regard to one of the following characteristics of your choice:

Once you've targeted a ship with this feature, you can't target it again until you complete a long rest.

", "chat": "", "unidentified": "" }, diff --git a/packs/ventures/improved-spacecasting.json b/packs/ventures/lock-on-target.json similarity index 68% rename from packs/ventures/improved-spacecasting.json rename to packs/ventures/lock-on-target.json index 643704181..72273f330 100644 --- a/packs/ventures/improved-spacecasting.json +++ b/packs/ventures/lock-on-target.json @@ -1,20 +1,17 @@ { - "_id": "l1eQtSgsUMMQef25", - "name": "Improved Spacecasting", + "name": "Lock on Target", "type": "feat", - "flags": {}, "img": "systems/sw5e/packs/Icons/Ventures/Venture.webp", - "effects": [], "system": { "description": { - "value": "

Prerequisite: Spacecasting venture

When casting a force or tech power while aboard your ship and in space, the power's range is instead multiplied by 10. You can not target a hostile creature with a power unless you are aware of their presence and location.

", + "value": "

Prerequisite: The ability to cast tech powers and at least 1 rank in gunner

Once per turn, when you hit a target with a ship attack from a primary or secondary weapon, you may use a reaction to spend one tech point to mark the target. The next attack roll you make against the ship before the end of your next turn can't suffer from disadvantage.

", "chat": "", "unidentified": "" }, "requirements": "", "source": "SotG", "activation": { - "type": "", + "type": "none", "cost": null, "condition": "" }, @@ -46,7 +43,7 @@ "amount": null }, "ability": null, - "actionType": null, + "actionType": "", "attackBonus": "", "chatFlavor": "", "critical": { @@ -76,22 +73,22 @@ "space": null, "turn": null } - }, - "prerequisites": [ - "Spacecasting venture" - ] + } }, + "effects": [], "ownership": { "default": 0 }, - "folder": null, - "sort": 0, + "flags": {}, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.5", "coreVersion": "10.291", - "createdTime": 1674494021265, - "modifiedTime": 1685840671143, + "createdTime": 1684707193273, + "modifiedTime": 1684711721355, "lastModifiedBy": "sw5ebuilder0000" - } + }, + "folder": null, + "sort": 0, + "_id": "hGEXaY9RsUhAaUKb" } diff --git a/packs/ventures/master-spacecasting.json b/packs/ventures/master-spacecasting.json deleted file mode 100644 index 3d9fe2a2e..000000000 --- a/packs/ventures/master-spacecasting.json +++ /dev/null @@ -1,97 +0,0 @@ -{ - "_id": "ks1XMj0qAeKZX3cr", - "name": "Master Spacecasting", - "type": "feat", - "flags": {}, - "img": "systems/sw5e/packs/Icons/Ventures/Venture.webp", - "effects": [], - "system": { - "description": { - "value": "

Prerequisite: Greater Spacecasting venture

When casting a force or tech power while aboard your ship and in space, the power's range is instead multiplied by 1,000. You can not target a hostile creature with a power unless you are aware of their presence and location.

", - "chat": "", - "unidentified": "" - }, - "requirements": "", - "source": "SotG", - "activation": { - "type": "", - "cost": null, - "condition": "" - }, - "duration": { - "value": "", - "units": "" - }, - "cover": null, - "target": { - "value": null, - "width": null, - "units": "", - "type": "" - }, - "range": { - "value": null, - "long": null, - "units": "" - }, - "uses": { - "value": null, - "max": "", - "per": null, - "recovery": "" - }, - "consume": { - "type": "", - "target": null, - "amount": null - }, - "ability": null, - "actionType": null, - "attackBonus": "", - "chatFlavor": "", - "critical": { - "threshold": null, - "damage": "" - }, - "damage": { - "parts": [], - "versatile": "" - }, - "formula": "", - "save": { - "ability": "", - "dc": null, - "scaling": "power" - }, - "type": { - "value": "deployment", - "subtype": "venture" - }, - "recharge": { - "value": null, - "charged": false - }, - "attributes": { - "speed": { - "space": null, - "turn": null - } - }, - "prerequisites": [ - "Greater Spacecasting venture" - ] - }, - "ownership": { - "default": 0 - }, - "folder": null, - "sort": 0, - "_stats": { - "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", - "coreVersion": "10.291", - "createdTime": 1674494021264, - "modifiedTime": 1685840671142, - "lastModifiedBy": "sw5ebuilder0000" - } -} diff --git a/packs/ventures/greater-spacecasting.json b/packs/ventures/multi-roled-improved.json similarity index 54% rename from packs/ventures/greater-spacecasting.json rename to packs/ventures/multi-roled-improved.json index bb19f3004..306db7d38 100644 --- a/packs/ventures/greater-spacecasting.json +++ b/packs/ventures/multi-roled-improved.json @@ -1,20 +1,17 @@ { - "_id": "PErA9WrdfMk8H3Wq", - "name": "Greater Spacecasting", + "name": "Multi-Roled, Improved", "type": "feat", - "flags": {}, "img": "systems/sw5e/packs/Icons/Ventures/Venture.webp", - "effects": [], "system": { "description": { - "value": "

Prerequisite: Improved Spacecasting venture

When casting a force or tech power while aboard your ship and in space, the power's range is instead multiplied by 100. You cannot target a hostile creature with a power unless you are aware of their presence and location.

", + "value": "

Prerequisite: Multi-Roled

When you advance a rank in your primary deployment, you may select a deployment maneuver (collaboration, gambit, technique, disruption, tactic, or stratagem) from any deployment instead of your primary deployment.
If your chosen maneuver is a technique, you can use a power die from any location instead of a tech die for that technique.

", "chat": "", "unidentified": "" }, "requirements": "", "source": "SotG", "activation": { - "type": "", + "type": "none", "cost": null, "condition": "" }, @@ -46,7 +43,7 @@ "amount": null }, "ability": null, - "actionType": null, + "actionType": "", "attackBonus": "", "chatFlavor": "", "critical": { @@ -76,22 +73,22 @@ "space": null, "turn": null } - }, - "prerequisites": [ - "Improved Spacecasting venture" - ] + } }, + "effects": [], "ownership": { "default": 0 }, - "folder": null, - "sort": 0, + "flags": {}, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.5", "coreVersion": "10.291", - "createdTime": 1674494021253, - "modifiedTime": 1685840671123, + "createdTime": 1684707193273, + "modifiedTime": 1684711831388, "lastModifiedBy": "sw5ebuilder0000" - } + }, + "folder": null, + "sort": 0, + "_id": "ugeRB2WW6xFEgmN5" } diff --git a/packs/ventures/jack-of-all-roles.json b/packs/ventures/multi-roled-legendary.json similarity index 56% rename from packs/ventures/jack-of-all-roles.json rename to packs/ventures/multi-roled-legendary.json index f361ead46..31d332b64 100644 --- a/packs/ventures/jack-of-all-roles.json +++ b/packs/ventures/multi-roled-legendary.json @@ -1,20 +1,20 @@ { "_id": "drTe0erGKuBdZvd8", - "name": "Jack of All Roles", + "name": "Multi-Roled, Legendary", "type": "feat", "flags": {}, "img": "systems/sw5e/packs/Icons/Ventures/Venture.webp", "effects": [], "system": { "description": { - "value": "

Prerequisite: 5th rank, Multi-Roles venture

Over a long rest you may switch out a number of maneuvers you know up to your intelligence modifier (minimum of 1) for an equal number of maneuvers from other deployments.

", + "value": "

Prerequisite: 5th rank, Multi-Roles venture

Over a long rest you may switch out a number of deployment maneuvers (collaboration, gambit, technique, disruption, tactic, or stratagem) you know up to your intelligence modifier (minimum of 1) for an equal number of maneuvers from other deployments.
If any of your chosen maneuvers are a technique, you can use a power die from any location instead of a tech die for that technique.

", "chat": "", "unidentified": "" }, "requirements": "", "source": "SotG", "activation": { - "type": "", + "type": "none", "cost": null, "condition": "" }, @@ -46,7 +46,7 @@ "amount": null }, "ability": null, - "actionType": null, + "actionType": "", "attackBonus": "", "chatFlavor": "", "critical": { @@ -88,10 +88,10 @@ "sort": 0, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.5", "coreVersion": "10.291", "createdTime": 1674494021261, - "modifiedTime": 1685840671136, + "modifiedTime": 1684711628019, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/ventures/combustive-salvo.json b/packs/ventures/multi-roled.json similarity index 54% rename from packs/ventures/combustive-salvo.json rename to packs/ventures/multi-roled.json index f0e301f37..5f64ba6ac 100644 --- a/packs/ventures/combustive-salvo.json +++ b/packs/ventures/multi-roled.json @@ -1,20 +1,20 @@ { - "_id": "3Vmv4bRSE2q12dkQ", - "name": "Combustive Salvo", + "_id": "6AtbJ4PKePAUc4M0", + "name": "Multi-Roled", "type": "feat", "flags": {}, "img": "systems/sw5e/packs/Icons/Ventures/Venture.webp", "effects": [], "system": { "description": { - "value": "

Prerequisite: The ability to cast tech powers, at least 1 rank in gunner

Once per turn, when you hit a target with a ship attack from a primary or secondary weapon, you may use a reaction to spend one tech point to cause the target to take fire damage equal to your techcasting ability modifier at the start of your next turn.

", + "value": "

When you take Dual Role, choose a secondary deployment. When you advance a rank in your primary deployment, you may select a deployment maneuver (collaboration, gambit, technique, disruption, tactic, or stratagem) from your secondary deployment instead of your primary deployment.
If your chosen secondary deployment is Mechanic, you can use a power die from any location instead of a tech die for that technique.

", "chat": "", "unidentified": "" }, "requirements": "", "source": "SotG", "activation": { - "type": "", + "type": "none", "cost": null, "condition": "" }, @@ -46,7 +46,7 @@ "amount": null }, "ability": null, - "actionType": null, + "actionType": "", "attackBonus": "", "chatFlavor": "", "critical": { @@ -78,7 +78,7 @@ } }, "prerequisites": [ - "The ability to cast tech powers, at least 1 rank in gunner" + " Dual Roles venture " ] }, "ownership": { @@ -88,10 +88,10 @@ "sort": 0, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.5", "coreVersion": "10.291", - "createdTime": 1674494021238, - "modifiedTime": 1685840671075, + "createdTime": 1674494021240, + "modifiedTime": 1684709615162, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/ventures/dual-roles.json b/packs/ventures/multitasker-improved.json similarity index 76% rename from packs/ventures/dual-roles.json rename to packs/ventures/multitasker-improved.json index 9434be9ed..4e2247442 100644 --- a/packs/ventures/dual-roles.json +++ b/packs/ventures/multitasker-improved.json @@ -1,20 +1,17 @@ { - "_id": "30OjHPm2Xh2hV1bw", - "name": "Dual Roles", + "name": "Multitasker, Improved", "type": "feat", - "flags": {}, "img": "systems/sw5e/packs/Icons/Ventures/Venture.webp", - "effects": [], "system": { "description": { - "value": "When you take Dual Role, choose a secondary deployment. When you advance a rank in your primary deployment, you may select a maneuver from your secondary deployment instead of your primary deployment.

", + "value": "

Prerequisite: Multitasker

When operating a ship, you gain a second bonus action you can take with the ship.

", "chat": "", "unidentified": "" }, "requirements": "", "source": "SotG", "activation": { - "type": "", + "type": "none", "cost": null, "condition": "" }, @@ -46,7 +43,7 @@ "amount": null }, "ability": null, - "actionType": null, + "actionType": "", "attackBonus": "", "chatFlavor": "", "critical": { @@ -76,20 +73,22 @@ "space": null, "turn": null } - }, - "prerequisites": [] + } }, + "effects": [], "ownership": { "default": 0 }, - "folder": null, - "sort": 0, + "flags": {}, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.5", "coreVersion": "10.291", - "createdTime": 1674494021238, - "modifiedTime": 1685840671074, + "createdTime": 1684707193273, + "modifiedTime": 1684711899404, "lastModifiedBy": "sw5ebuilder0000" - } + }, + "folder": null, + "sort": 0, + "_id": "VG9SsVkfo71xQC0A" } diff --git a/packs/ventures/legendary-multitasking.json b/packs/ventures/multitasker-legendary.json similarity index 83% rename from packs/ventures/legendary-multitasking.json rename to packs/ventures/multitasker-legendary.json index 108002238..1a6ecf935 100644 --- a/packs/ventures/legendary-multitasking.json +++ b/packs/ventures/multitasker-legendary.json @@ -1,20 +1,20 @@ { "_id": "A6I7VApYuQI0p8LE", - "name": "Legendary Multitasking", + "name": "Multitasker, Legendary", "type": "feat", "flags": {}, "img": "systems/sw5e/packs/Icons/Ventures/Venture.webp", "effects": [], "system": { "description": { - "value": "

Prerequisite: 5th rank, Split Focused venture

When operating a ship, you gain a second action you can take with the ship.

", + "value": "

Prerequisite: Multitasker, Improved; Rank 5

When operating a ship, you gain a second action you can take with the ship.

", "chat": "", "unidentified": "" }, "requirements": "", "source": "SotG", "activation": { - "type": "", + "type": "none", "cost": null, "condition": "" }, @@ -46,7 +46,7 @@ "amount": null }, "ability": null, - "actionType": null, + "actionType": "", "attackBonus": "", "chatFlavor": "", "critical": { @@ -88,10 +88,10 @@ "sort": 0, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.5", "coreVersion": "10.291", "createdTime": 1674494021242, - "modifiedTime": 1685840671106, + "modifiedTime": 1684711636485, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/ventures/protected-by-the-force.json b/packs/ventures/protected-by-the-force.json new file mode 100644 index 000000000..1f0623fc4 --- /dev/null +++ b/packs/ventures/protected-by-the-force.json @@ -0,0 +1,94 @@ +{ + "name": "Protected by the Force", + "type": "feat", + "img": "systems/sw5e/packs/Icons/Ventures/Venture.webp", + "system": { + "description": { + "value": "

Prerequisite: at least 3 levels in consular

When your ship is hit by an attack, you can use your reaction to shroud your ship in Force energy. Until the start of your next turn, you have a bonus to AC equal to your Wisdom or Charisma modifier (your choice, minimum of +1). This includes the triggering attack.
You can use this feature a number of times equal to your proficiency bonus, as shown in the consular table. You regain all expended uses when you finish a long rest.

", + "chat": "", + "unidentified": "" + }, + "requirements": "", + "source": "SotG", + "activation": { + "type": "none", + "cost": null, + "condition": "" + }, + "duration": { + "value": "", + "units": "" + }, + "cover": null, + "target": { + "value": null, + "width": null, + "units": "", + "type": "" + }, + "range": { + "value": null, + "long": null, + "units": "" + }, + "uses": { + "value": null, + "max": "", + "per": null, + "recovery": "" + }, + "consume": { + "type": "", + "target": null, + "amount": null + }, + "ability": null, + "actionType": "", + "attackBonus": "", + "chatFlavor": "", + "critical": { + "threshold": null, + "damage": "" + }, + "damage": { + "parts": [], + "versatile": "" + }, + "formula": "", + "save": { + "ability": "", + "dc": null, + "scaling": "power" + }, + "type": { + "value": "deployment", + "subtype": "venture" + }, + "recharge": { + "value": null, + "charged": false + }, + "attributes": { + "speed": { + "space": null, + "turn": null + } + } + }, + "effects": [], + "ownership": { + "default": 0 + }, + "flags": {}, + "_stats": { + "systemId": "sw5e", + "systemVersion": "2.1.5.2.4.5", + "coreVersion": "10.291", + "createdTime": 1684707193273, + "modifiedTime": 1684711994673, + "lastModifiedBy": "sw5ebuilder0000" + }, + "folder": null, + "sort": 0, + "_id": "nJP2CP5dwqAV7NKB" +} diff --git a/packs/ventures/rime-salvo.json b/packs/ventures/rime-salvo.json deleted file mode 100644 index 1883c1f35..000000000 --- a/packs/ventures/rime-salvo.json +++ /dev/null @@ -1,97 +0,0 @@ -{ - "_id": "FGQRhvmHD3GLtjbx", - "name": "Rime Salvo", - "type": "feat", - "flags": {}, - "img": "systems/sw5e/packs/Icons/Ventures/Venture.webp", - "effects": [], - "system": { - "description": { - "value": "

Prerequisite: The ability to cast tech powers, at least 1 rank in gunner

Once per turn, when you hit a target with a ship attack from a primary or secondary weapon, you may use a reaction to spend one tech point to make the target gain 1 slowed level until the end of its turn as the hull is coated in frigid carbonite.

", - "chat": "", - "unidentified": "" - }, - "requirements": "", - "source": "SotG", - "activation": { - "type": "", - "cost": null, - "condition": "" - }, - "duration": { - "value": "", - "units": "" - }, - "cover": null, - "target": { - "value": null, - "width": null, - "units": "", - "type": "" - }, - "range": { - "value": null, - "long": null, - "units": "" - }, - "uses": { - "value": null, - "max": "", - "per": null, - "recovery": "" - }, - "consume": { - "type": "", - "target": null, - "amount": null - }, - "ability": null, - "actionType": null, - "attackBonus": "", - "chatFlavor": "", - "critical": { - "threshold": null, - "damage": "" - }, - "damage": { - "parts": [], - "versatile": "" - }, - "formula": "", - "save": { - "ability": "", - "dc": null, - "scaling": "power" - }, - "type": { - "value": "deployment", - "subtype": "venture" - }, - "recharge": { - "value": null, - "charged": false - }, - "attributes": { - "speed": { - "space": null, - "turn": null - } - }, - "prerequisites": [ - "The ability to cast tech powers, at least 1 rank in gunner" - ] - }, - "ownership": { - "default": 0 - }, - "folder": null, - "sort": 0, - "_stats": { - "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", - "coreVersion": "10.291", - "createdTime": 1674494021246, - "modifiedTime": 1685840671111, - "lastModifiedBy": "sw5ebuilder0000" - } -} diff --git a/packs/ventures/sneak-firing.json b/packs/ventures/sneak-firing.json index f65c0c67a..b104db85f 100644 --- a/packs/ventures/sneak-firing.json +++ b/packs/ventures/sneak-firing.json @@ -7,7 +7,7 @@ "effects": [], "system": { "description": { - "value": "

Prerequisite: at least 1 level in operative

Once per turn, you can deal an extra 1d6 damage to one ship you hit with a ship attack if you have advantage on the attack roll. You can select this venture multiple times.

", + "value": "

Prerequisite: at least 1 level in operative

Once per turn, you can deal an extra [[/r 1d6]] damage to one ship you hit with a ship attack if you have advantage on the attack roll. You can select this venture multiple times.

", "chat": "", "unidentified": "" }, diff --git a/packs/ventures/spacecasting-greater.json b/packs/ventures/spacecasting-greater.json new file mode 100644 index 000000000..f51d1e0d3 --- /dev/null +++ b/packs/ventures/spacecasting-greater.json @@ -0,0 +1,97 @@ +{ + "_id": "PErA9WrdfMk8H3Wq", + "name": "Spacecasting, Greater", + "type": "feat", + "flags": {}, + "img": "systems/sw5e/packs/Icons/Ventures/Venture.webp", + "effects": [], + "system": { + "description": { + "value": "

Prerequisite: Improved Spacecasting venture

When casting a force or tech power while aboard your ship and in space, the power's range is instead multiplied by 100. You can not target a hostile creature with a power unless you are aware of their presence and location.
Additionally, when casting a force or tech power while aboard your ship and in space that affects an area, the area's dimensions are instead multiplied by 10.
Lastly, when casting a force or tech power while aboard your ship and in space, you instead divide by 5 when scaling damage against Tiny ships.

", + "chat": "", + "unidentified": "" + }, + "requirements": "", + "source": "SotG", + "activation": { + "type": "none", + "cost": null, + "condition": "" + }, + "duration": { + "value": "", + "units": "" + }, + "cover": null, + "target": { + "value": null, + "width": null, + "units": "", + "type": "" + }, + "range": { + "value": null, + "long": null, + "units": "" + }, + "uses": { + "value": null, + "max": "", + "per": null, + "recovery": "" + }, + "consume": { + "type": "", + "target": null, + "amount": null + }, + "ability": null, + "actionType": "", + "attackBonus": "", + "chatFlavor": "", + "critical": { + "threshold": null, + "damage": "" + }, + "damage": { + "parts": [], + "versatile": "" + }, + "formula": "", + "save": { + "ability": "", + "dc": null, + "scaling": "power" + }, + "type": { + "value": "deployment", + "subtype": "venture" + }, + "recharge": { + "value": null, + "charged": false + }, + "attributes": { + "speed": { + "space": null, + "turn": null + } + }, + "prerequisites": [ + "Improved Spacecasting venture" + ] + }, + "ownership": { + "default": 0 + }, + "folder": null, + "sort": 0, + "_stats": { + "systemId": "sw5e", + "systemVersion": "2.1.5.2.4.5", + "coreVersion": "10.291", + "createdTime": 1674494021253, + "modifiedTime": 1684711551285, + "lastModifiedBy": "sw5ebuilder0000" + } +} diff --git a/packs/ventures/spacecasting-improved.json b/packs/ventures/spacecasting-improved.json new file mode 100644 index 000000000..32fa40b15 --- /dev/null +++ b/packs/ventures/spacecasting-improved.json @@ -0,0 +1,97 @@ +{ + "_id": "l1eQtSgsUMMQef25", + "name": "Spacecasting, Improved", + "type": "feat", + "flags": {}, + "img": "systems/sw5e/packs/Icons/Ventures/Venture.webp", + "effects": [], + "system": { + "description": { + "value": "

Prerequisite: Spacecasting venture

When casting a force or tech power while aboard your ship and in space, the power's range is instead multiplied by 10. You can not target a hostile creature with a power unless you are aware of their presence and location.
Additionally, when casting a force or tech power while aboard your ship and in space that affects an area, the area's dimensions are multiplied by 2.

", + "chat": "", + "unidentified": "" + }, + "requirements": "", + "source": "SotG", + "activation": { + "type": "none", + "cost": null, + "condition": "" + }, + "duration": { + "value": "", + "units": "" + }, + "cover": null, + "target": { + "value": null, + "width": null, + "units": "", + "type": "" + }, + "range": { + "value": null, + "long": null, + "units": "" + }, + "uses": { + "value": null, + "max": "", + "per": null, + "recovery": "" + }, + "consume": { + "type": "", + "target": null, + "amount": null + }, + "ability": null, + "actionType": "", + "attackBonus": "", + "chatFlavor": "", + "critical": { + "threshold": null, + "damage": "" + }, + "damage": { + "parts": [], + "versatile": "" + }, + "formula": "", + "save": { + "ability": "", + "dc": null, + "scaling": "power" + }, + "type": { + "value": "deployment", + "subtype": "venture" + }, + "recharge": { + "value": null, + "charged": false + }, + "attributes": { + "speed": { + "space": null, + "turn": null + } + }, + "prerequisites": [ + "Spacecasting venture" + ] + }, + "ownership": { + "default": 0 + }, + "folder": null, + "sort": 0, + "_stats": { + "systemId": "sw5e", + "systemVersion": "2.1.5.2.4.5", + "coreVersion": "10.291", + "createdTime": 1674494021265, + "modifiedTime": 1684711591402, + "lastModifiedBy": "sw5ebuilder0000" + } +} diff --git a/packs/ventures/legendary-spacecasting.json b/packs/ventures/spacecasting-legendary.json similarity index 60% rename from packs/ventures/legendary-spacecasting.json rename to packs/ventures/spacecasting-legendary.json index a25a49cef..4b81b88fd 100644 --- a/packs/ventures/legendary-spacecasting.json +++ b/packs/ventures/spacecasting-legendary.json @@ -1,20 +1,20 @@ { "_id": "0scqI7Y5e2VsEjgU", - "name": "Legendary Spacecasting", + "name": "Spacecasting, Legendary", "type": "feat", "flags": {}, "img": "systems/sw5e/packs/Icons/Ventures/Venture.webp", "effects": [], "system": { "description": { - "value": "

Prerequisite: Master Spacecasting venture

When casting a force or tech power while aboard your ship and in space that affects an area, the area's dimensions are instead multiplied by 1,000.

", + "value": "

Prerequisite: Master Spacecasting venture

When casting a force or tech power while aboard your ship and in space that affects an area, the area's dimensions are instead multiplied by 1,000.
Additionally, when casting a force or tech power while aboard your ship and in space, you ignore the damage scaling against Medium and smaller ships.

", "chat": "", "unidentified": "" }, "requirements": "", "source": "SotG", "activation": { - "type": "", + "type": "none", "cost": null, "condition": "" }, @@ -46,7 +46,7 @@ "amount": null }, "ability": null, - "actionType": null, + "actionType": "", "attackBonus": "", "chatFlavor": "", "critical": { @@ -88,10 +88,10 @@ "sort": 0, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.5", "coreVersion": "10.291", "createdTime": 1674494021235, - "modifiedTime": 1685840671071, + "modifiedTime": 1684711643002, "lastModifiedBy": "sw5ebuilder0000" } } diff --git a/packs/ventures/spacecasting-master.json b/packs/ventures/spacecasting-master.json new file mode 100644 index 000000000..4e7719955 --- /dev/null +++ b/packs/ventures/spacecasting-master.json @@ -0,0 +1,97 @@ +{ + "_id": "ks1XMj0qAeKZX3cr", + "name": "Spacecasting, Master", + "type": "feat", + "flags": {}, + "img": "systems/sw5e/packs/Icons/Ventures/Venture.webp", + "effects": [], + "system": { + "description": { + "value": "

Prerequisite: Greater Spacecasting venture

When casting a force or tech power while aboard your ship and in space, the power's range is instead multiplied by 1,000. You can not target a hostile creature with a power unless you are aware of their presence and location.
Additionally, when casting a force or tech power while aboard your ship and in space that affects an area, the area's dimensions are instead multiplied by 100.
Lastly, when casting a force or tech power while aboard your ship and in space, you instead divide by 2 when scaling damage against Small and smaller ships.

", + "chat": "", + "unidentified": "" + }, + "requirements": "", + "source": "SotG", + "activation": { + "type": "none", + "cost": null, + "condition": "" + }, + "duration": { + "value": "", + "units": "" + }, + "cover": null, + "target": { + "value": null, + "width": null, + "units": "", + "type": "" + }, + "range": { + "value": null, + "long": null, + "units": "" + }, + "uses": { + "value": null, + "max": "", + "per": null, + "recovery": "" + }, + "consume": { + "type": "", + "target": null, + "amount": null + }, + "ability": null, + "actionType": "", + "attackBonus": "", + "chatFlavor": "", + "critical": { + "threshold": null, + "damage": "" + }, + "damage": { + "parts": [], + "versatile": "" + }, + "formula": "", + "save": { + "ability": "", + "dc": null, + "scaling": "power" + }, + "type": { + "value": "deployment", + "subtype": "venture" + }, + "recharge": { + "value": null, + "charged": false + }, + "attributes": { + "speed": { + "space": null, + "turn": null + } + }, + "prerequisites": [ + "Greater Spacecasting venture" + ] + }, + "ownership": { + "default": 0 + }, + "folder": null, + "sort": 0, + "_stats": { + "systemId": "sw5e", + "systemVersion": "2.1.5.2.4.5", + "coreVersion": "10.291", + "createdTime": 1674494021264, + "modifiedTime": 1684711651069, + "lastModifiedBy": "sw5ebuilder0000" + } +} diff --git a/packs/ventures/tactical-superiority.json b/packs/ventures/tactical-superiority.json index 2d0310906..ad71fe8eb 100644 --- a/packs/ventures/tactical-superiority.json +++ b/packs/ventures/tactical-superiority.json @@ -7,7 +7,7 @@ "effects": [], "system": { "description": { - "value": "

Prerequisite: at least 2 levels in scholar

When you expend a power die, roll the die as normal, but you can instead subtract it from your pool of superiority dice.

", + "value": "

Prerequisite: at least 2 levels in scholar

When you expend a power die or another die granted by a Deployment, roll the die as normal, but you can instead subtract it from your pool of superiority dice.

", "chat": "", "unidentified": "" }, diff --git a/packs/ventures/targeting-fire.json b/packs/ventures/targeting-fire.json new file mode 100644 index 000000000..ff5935867 --- /dev/null +++ b/packs/ventures/targeting-fire.json @@ -0,0 +1,94 @@ +{ + "name": "Targeting Fire", + "type": "feat", + "img": "systems/sw5e/packs/Icons/Ventures/Venture.webp", + "system": { + "description": { + "value": "

Prerequisite: at least 1 rank in gunner

When you take this Venture, you may select two areas that you are adept at targeting. You may take this Venture multiple times. Each time you do so, you may select two additional target areas.


Once per turn, when you hit a target with a ship attack from a primary or secondary weapon, you may use a reaction to either forego advantage if you have advantage, spend one tech point, or spend one force point to target a specific area of the ship causing targeted damage there.

The target gain 1 slowed level until the end of its turn as it suffers damage to its engines.

You damage the target's targeting systems. The first time the target forces you to make a saving throw before the start of your next turn, the target takes an additional [[/r 1d6]] ionic damage, and you can roll [[/r 1d4]] and add the number rolled to your saving throw.


You cause each Large or smaller ship within 100 feet of the target to make a Strength saving throw (DC = 8 + your proficiency bonus + your ship's Strength modifier). On a failure, that ship is pulled to the nearest unoccupied space adjacent to the target.

You destabilize the ship's reactor. Until the start of your next turn, if the target becomes tractored, ionized, or shocked, the reactor suffers damaging feedback, causing the ship to immediately take [[/r 1d8]] ionic damage.


You create an illusory duplicate of your ship in your space that only the target can see. The target has disadvantage on the next attack roll it makes against your ship before the start of your next turn.


You cause the target to take additional damage to the target's shields equal to your techcasting ability modifier at the start of your next turn.


You cause the target to become shocked until the end of your ship's next turn. When this attack hits a target, if there is a ship within 300 feet who is shocked, an arc of lightning courses between the two ships, dealing [[/r 1d6]] lightning damage to both of them. If there are multiple other ships who are shocked, the lightning leaps to the closest ship.


You damage the ship's weapon systems. The first time it would deal damage before the start of your next turn, that damage is reduced by [[/r 1d6]].

", + "chat": "", + "unidentified": "" + }, + "requirements": "", + "source": "SotG", + "activation": { + "type": "none", + "cost": null, + "condition": "" + }, + "duration": { + "value": "", + "units": "" + }, + "cover": null, + "target": { + "value": null, + "width": null, + "units": "", + "type": "" + }, + "range": { + "value": null, + "long": null, + "units": "" + }, + "uses": { + "value": null, + "max": "", + "per": null, + "recovery": "" + }, + "consume": { + "type": "", + "target": null, + "amount": null + }, + "ability": null, + "actionType": "", + "attackBonus": "", + "chatFlavor": "", + "critical": { + "threshold": null, + "damage": "" + }, + "damage": { + "parts": [], + "versatile": "" + }, + "formula": "", + "save": { + "ability": "", + "dc": null, + "scaling": "power" + }, + "type": { + "value": "deployment", + "subtype": "venture" + }, + "recharge": { + "value": null, + "charged": false + }, + "attributes": { + "speed": { + "space": null, + "turn": null + } + } + }, + "effects": [], + "ownership": { + "default": 0 + }, + "flags": {}, + "_stats": { + "systemId": "sw5e", + "systemVersion": "2.1.5.2.4.5", + "coreVersion": "10.291", + "createdTime": 1684707193273, + "modifiedTime": 1684710989052, + "lastModifiedBy": "sw5ebuilder0000" + }, + "folder": null, + "sort": 0, + "_id": "zt7gU7w5rphP7vYT" +} diff --git a/packs/ventures/targeting-salvo.json b/packs/ventures/targeting-salvo.json deleted file mode 100644 index ff7b2c57b..000000000 --- a/packs/ventures/targeting-salvo.json +++ /dev/null @@ -1,97 +0,0 @@ -{ - "_id": "cdJIX7FymQXYn5TZ", - "name": "Targeting Salvo", - "type": "feat", - "flags": {}, - "img": "systems/sw5e/packs/Icons/Ventures/Venture.webp", - "effects": [], - "system": { - "description": { - "value": "

Prerequisite: The ability to cast tech powers, at least 1 rank in gunner

Once per turn, when you hit a target with a ship attack from a primary or secondary weapon, you may use a reaction to spend one tech point to mark the target only visible to you. The next attack roll you make against the ship before the end of your next turn can't suffer from disadvantage.

", - "chat": "", - "unidentified": "" - }, - "requirements": "", - "source": "SotG", - "activation": { - "type": "", - "cost": null, - "condition": "" - }, - "duration": { - "value": "", - "units": "" - }, - "cover": null, - "target": { - "value": null, - "width": null, - "units": "", - "type": "" - }, - "range": { - "value": null, - "long": null, - "units": "" - }, - "uses": { - "value": null, - "max": "", - "per": null, - "recovery": "" - }, - "consume": { - "type": "", - "target": null, - "amount": null - }, - "ability": null, - "actionType": null, - "attackBonus": "", - "chatFlavor": "", - "critical": { - "threshold": null, - "damage": "" - }, - "damage": { - "parts": [], - "versatile": "" - }, - "formula": "", - "save": { - "ability": "", - "dc": null, - "scaling": "power" - }, - "type": { - "value": "deployment", - "subtype": "venture" - }, - "recharge": { - "value": null, - "charged": false - }, - "attributes": { - "speed": { - "space": null, - "turn": null - } - }, - "prerequisites": [ - "The ability to cast tech powers, at least 1 rank in gunner" - ] - }, - "ownership": { - "default": 0 - }, - "folder": null, - "sort": 0, - "_stats": { - "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", - "coreVersion": "10.291", - "createdTime": 1674494021260, - "modifiedTime": 1685840671134, - "lastModifiedBy": "sw5ebuilder0000" - } -} diff --git a/packs/ventures/split-focused.json b/packs/ventures/technological-knowledge.json similarity index 76% rename from packs/ventures/split-focused.json rename to packs/ventures/technological-knowledge.json index 9ed4b8532..68b7512f5 100644 --- a/packs/ventures/split-focused.json +++ b/packs/ventures/technological-knowledge.json @@ -1,20 +1,17 @@ { - "_id": "f4x0mJvFucA7oyaP", - "name": "Split Focused", + "name": "Technological Knowledge", "type": "feat", - "flags": {}, "img": "systems/sw5e/packs/Icons/Ventures/Venture.webp", - "effects": [], "system": { "description": { - "value": "

Prerequisite: Multitasker venture

When operating a ship, you gain a second bonus action you can take with the ship.

", + "value": "

Prerequisite: at least 3 levels in engineer

Ships become a valid target of your potent aptitude ability.

", "chat": "", "unidentified": "" }, "requirements": "", "source": "SotG", "activation": { - "type": "", + "type": "none", "cost": null, "condition": "" }, @@ -46,7 +43,7 @@ "amount": null }, "ability": null, - "actionType": null, + "actionType": "", "attackBonus": "", "chatFlavor": "", "critical": { @@ -76,22 +73,22 @@ "space": null, "turn": null } - }, - "prerequisites": [ - "Multitasker venture" - ] + } }, + "effects": [], "ownership": { "default": 0 }, - "folder": null, - "sort": 0, + "flags": {}, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.5", "coreVersion": "10.291", - "createdTime": 1674494021262, - "modifiedTime": 1685840671138, + "createdTime": 1684707193273, + "modifiedTime": 1684711193883, "lastModifiedBy": "sw5ebuilder0000" - } + }, + "folder": null, + "sort": 0, + "_id": "MpnGqZW1PxTAMrKo" } diff --git a/packs/ventures/gunning-master.json b/packs/ventures/trust-in-the-force.json similarity index 69% rename from packs/ventures/gunning-master.json rename to packs/ventures/trust-in-the-force.json index 7e8db87d5..41c14dbeb 100644 --- a/packs/ventures/gunning-master.json +++ b/packs/ventures/trust-in-the-force.json @@ -1,20 +1,17 @@ { - "_id": "IgzI7pPKUTkzKjwt", - "name": "Gunning Master", + "name": "Trust in the Force", "type": "feat", - "flags": {}, "img": "systems/sw5e/packs/Icons/Ventures/Venture.webp", - "effects": [], "system": { "description": { - "value": "

Prerequisite: 5th rank

You master a particular style of gunning. Choose one of the gunning mastery options options, detailed later in this chapter. You can't take a gunning mastery option more than once, even if you later get to choose again. You can select this venture multiple times.

", + "value": "

Prerequisite: at least 10 levels in sentinel

When you take the Dogfight action, you can make a Dexterity (Maneuvering) check (DC = 10 + the number of enemy ships you can see). On a success, the next attack made against your ship by any ship you can see is not granted advantage by the Dogfight action.

", "chat": "", "unidentified": "" }, "requirements": "", "source": "SotG", "activation": { - "type": "", + "type": "none", "cost": null, "condition": "" }, @@ -46,7 +43,7 @@ "amount": null }, "ability": null, - "actionType": null, + "actionType": "", "attackBonus": "", "chatFlavor": "", "critical": { @@ -76,22 +73,22 @@ "space": null, "turn": null } - }, - "prerequisites": [ - "5th rank" - ] + } }, + "effects": [], "ownership": { "default": 0 }, - "folder": null, - "sort": 0, + "flags": {}, "_stats": { "systemId": "sw5e", - "systemVersion": "2.1.5.2.4.6", + "systemVersion": "2.1.5.2.4.5", "coreVersion": "10.291", - "createdTime": 1674494021248, - "modifiedTime": 1685840671115, + "createdTime": 1684707193273, + "modifiedTime": 1684711438837, "lastModifiedBy": "sw5ebuilder0000" - } + }, + "folder": null, + "sort": 0, + "_id": "rrQxO9oLO6DY78mu" } diff --git a/packs/ventures/weapon-enhancement.json b/packs/ventures/weapon-enhancement.json index 316921f4f..42b63ff5b 100644 --- a/packs/ventures/weapon-enhancement.json +++ b/packs/ventures/weapon-enhancement.json @@ -9,7 +9,7 @@ "flags": {}, "system": { "description": { - "value": "

Prerequisite: The ability to cast 3rd level tech powers

\n

As an action, you may touch an unenhanced ship weapon on your ship and spend four tech points, making it an enhanced weapon. Choose one of these damage types: acid, cold, energy, fire, ion, kinetic, or lightning. For up to an hour, as long as you maintain concentration, the unenhanced ship weapon you touch has a +1 to attack rolls and deals an extra 1d4 damage of the chosen type.

", + "value": "

Prerequisite: The ability to cast 3rd level tech powers

As an action, you may touch an unenhanced ship weapon on your ship and spend four tech points, making it an enhanced weapon, for up to an hour, as long as you maintain concentration. Additionally, choose one of these damage types: acid, cold, energy, fire, ion, kinetic, or lightning. The unenhanced ship weapon you touch has a +1 to attack rolls and deals an extra 1d4 damage of the chosen type for the duration.

", "chat": "", "unidentified": "" }, diff --git a/static/packs/Icons/Enhanced Items/StrengthAdrenal.webp b/static/packs/Icons/Deprecated/StrengthAdrenal.webp similarity index 100% rename from static/packs/Icons/Enhanced Items/StrengthAdrenal.webp rename to static/packs/Icons/Deprecated/StrengthAdrenal.webp diff --git a/static/packs/Icons/Lightsaber Forms/ZhangwanForm.webp b/static/packs/Icons/Deprecated/ZhangwanForm.webp similarity index 100% rename from static/packs/Icons/Lightsaber Forms/ZhangwanForm.webp rename to static/packs/Icons/Deprecated/ZhangwanForm.webp diff --git a/static/packs/Icons/Enhanced Items/CharismaStim.webp b/static/packs/Icons/Enhanced Items/CharismaStim.webp new file mode 100644 index 000000000..819379894 Binary files /dev/null and b/static/packs/Icons/Enhanced Items/CharismaStim.webp differ diff --git a/static/packs/Icons/Enhanced Items/ConstitutionStim.webp b/static/packs/Icons/Enhanced Items/ConstitutionStim.webp new file mode 100644 index 000000000..05d6e4695 Binary files /dev/null and b/static/packs/Icons/Enhanced Items/ConstitutionStim.webp differ diff --git a/static/packs/Icons/Enhanced Items/DexterityStim.webp b/static/packs/Icons/Enhanced Items/DexterityStim.webp new file mode 100644 index 000000000..f41ad9864 Binary files /dev/null and b/static/packs/Icons/Enhanced Items/DexterityStim.webp differ diff --git a/static/packs/Icons/Enhanced Items/InquisitorSaber.webp b/static/packs/Icons/Enhanced Items/InquisitorSaber.webp index 6dbb1bb28..515b22365 100644 Binary files a/static/packs/Icons/Enhanced Items/InquisitorSaber.webp and b/static/packs/Icons/Enhanced Items/InquisitorSaber.webp differ diff --git a/static/packs/Icons/Enhanced Items/IntelligenceStim.webp b/static/packs/Icons/Enhanced Items/IntelligenceStim.webp new file mode 100644 index 000000000..026952177 Binary files /dev/null and b/static/packs/Icons/Enhanced Items/IntelligenceStim.webp differ diff --git a/static/packs/Icons/Enhanced Items/SorcerersAdrenal.webp b/static/packs/Icons/Enhanced Items/SorcerersAdrenal.webp new file mode 100644 index 000000000..719de04eb Binary files /dev/null and b/static/packs/Icons/Enhanced Items/SorcerersAdrenal.webp differ diff --git a/static/packs/Icons/Enhanced Items/StrengthStim.webp b/static/packs/Icons/Enhanced Items/StrengthStim.webp index 84d132c7e..c18920340 100644 Binary files a/static/packs/Icons/Enhanced Items/StrengthStim.webp and b/static/packs/Icons/Enhanced Items/StrengthStim.webp differ diff --git a/static/packs/Icons/Enhanced Items/WisdomStim.webp b/static/packs/Icons/Enhanced Items/WisdomStim.webp new file mode 100644 index 000000000..98f24e0a6 Binary files /dev/null and b/static/packs/Icons/Enhanced Items/WisdomStim.webp differ diff --git a/static/packs/Icons/Force Powers/Affliction.webp b/static/packs/Icons/Force Powers/Affliction.webp index 67b386beb..5c71ceedb 100644 Binary files a/static/packs/Icons/Force Powers/Affliction.webp and b/static/packs/Icons/Force Powers/Affliction.webp differ diff --git a/static/packs/Icons/Force Powers/DrainLife.webp b/static/packs/Icons/Force Powers/DrainLife.webp index 759d3ea39..c93b0f827 100644 Binary files a/static/packs/Icons/Force Powers/DrainLife.webp and b/static/packs/Icons/Force Powers/DrainLife.webp differ diff --git a/static/packs/Icons/Force Powers/DrainVitality.webp b/static/packs/Icons/Force Powers/DrainVitality.webp index eecd20de1..055b1b44c 100644 Binary files a/static/packs/Icons/Force Powers/DrainVitality.webp and b/static/packs/Icons/Force Powers/DrainVitality.webp differ diff --git a/static/packs/Icons/Force Powers/ForceIntuition.webp b/static/packs/Icons/Force Powers/ForceIntuition.webp index 9895ee846..536f279e3 100644 Binary files a/static/packs/Icons/Force Powers/ForceIntuition.webp and b/static/packs/Icons/Force Powers/ForceIntuition.webp differ diff --git a/static/packs/Icons/Force Powers/GiveLife.webp b/static/packs/Icons/Force Powers/GiveLife.webp index c76873bdc..272615055 100644 Binary files a/static/packs/Icons/Force Powers/GiveLife.webp and b/static/packs/Icons/Force Powers/GiveLife.webp differ diff --git a/static/packs/Icons/Force Powers/GreaterKinetite.webp b/static/packs/Icons/Force Powers/GreaterKinetite.webp index e52844db8..8100402c7 100644 Binary files a/static/packs/Icons/Force Powers/GreaterKinetite.webp and b/static/packs/Icons/Force Powers/GreaterKinetite.webp differ diff --git a/static/packs/Icons/Force Powers/ImprovedForceIntuition.webp b/static/packs/Icons/Force Powers/ImprovedForceIntuition.webp index e52844db8..efac2606d 100644 Binary files a/static/packs/Icons/Force Powers/ImprovedForceIntuition.webp and b/static/packs/Icons/Force Powers/ImprovedForceIntuition.webp differ diff --git a/static/packs/Icons/Force Powers/ImprovedKinetite.webp b/static/packs/Icons/Force Powers/ImprovedKinetite.webp index e52844db8..3f81844da 100644 Binary files a/static/packs/Icons/Force Powers/ImprovedKinetite.webp and b/static/packs/Icons/Force Powers/ImprovedKinetite.webp differ diff --git a/static/packs/Icons/Force Powers/Kinetite.webp b/static/packs/Icons/Force Powers/Kinetite.webp index c8936b27f..5babdf746 100644 Binary files a/static/packs/Icons/Force Powers/Kinetite.webp and b/static/packs/Icons/Force Powers/Kinetite.webp differ diff --git a/static/packs/Icons/Force Powers/Phaseshift.webp b/static/packs/Icons/Force Powers/Phaseshift.webp index e52844db8..d98af8cc1 100644 Binary files a/static/packs/Icons/Force Powers/Phaseshift.webp and b/static/packs/Icons/Force Powers/Phaseshift.webp differ diff --git a/static/packs/Icons/Force Powers/Plague.webp b/static/packs/Icons/Force Powers/Plague.webp index 67b386beb..602346c37 100644 Binary files a/static/packs/Icons/Force Powers/Plague.webp and b/static/packs/Icons/Force Powers/Plague.webp differ diff --git a/static/packs/Icons/Force Powers/RevealShatterpoint.webp b/static/packs/Icons/Force Powers/RevealShatterpoint.webp index e52844db8..6bcbf349d 100644 Binary files a/static/packs/Icons/Force Powers/RevealShatterpoint.webp and b/static/packs/Icons/Force Powers/RevealShatterpoint.webp differ diff --git a/static/packs/Icons/Force Powers/SaberDance.webp b/static/packs/Icons/Force Powers/SaberDance.webp index e52844db8..b34313a9a 100644 Binary files a/static/packs/Icons/Force Powers/SaberDance.webp and b/static/packs/Icons/Force Powers/SaberDance.webp differ diff --git a/static/packs/Icons/Force Powers/SaberSlash.webp b/static/packs/Icons/Force Powers/SaberSlash.webp index e52844db8..56a43f7bb 100644 Binary files a/static/packs/Icons/Force Powers/SaberSlash.webp and b/static/packs/Icons/Force Powers/SaberSlash.webp differ diff --git a/static/packs/Icons/Force Powers/Seethe.webp b/static/packs/Icons/Force Powers/Seethe.webp index 63f3e4d6b..f17c428a3 100644 Binary files a/static/packs/Icons/Force Powers/Seethe.webp and b/static/packs/Icons/Force Powers/Seethe.webp differ diff --git a/static/packs/Icons/Force Powers/SenseShatterpoint.webp b/static/packs/Icons/Force Powers/SenseShatterpoint.webp index e52844db8..a482ef8e0 100644 Binary files a/static/packs/Icons/Force Powers/SenseShatterpoint.webp and b/static/packs/Icons/Force Powers/SenseShatterpoint.webp differ diff --git a/static/packs/Icons/Force Powers/VitalityShield.webp b/static/packs/Icons/Force Powers/VitalityShield.webp index e52844db8..58f8e0e30 100644 Binary files a/static/packs/Icons/Force Powers/VitalityShield.webp and b/static/packs/Icons/Force Powers/VitalityShield.webp differ diff --git a/static/packs/Icons/Gaming Set/ChanceCubes.webp b/static/packs/Icons/Gaming Set/ChanceCubes.webp index 25dee141e..dc412b673 100644 Binary files a/static/packs/Icons/Gaming Set/ChanceCubes.webp and b/static/packs/Icons/Gaming Set/ChanceCubes.webp differ diff --git a/static/packs/Icons/Gaming Set/DejarikSet.webp b/static/packs/Icons/Gaming Set/DejarikSet.webp index 2325c5c00..079b12b13 100644 Binary files a/static/packs/Icons/Gaming Set/DejarikSet.webp and b/static/packs/Icons/Gaming Set/DejarikSet.webp differ diff --git a/static/packs/Icons/Gaming Set/PazaakDeck.webp b/static/packs/Icons/Gaming Set/PazaakDeck.webp index a69fda8f5..3001a6b79 100644 Binary files a/static/packs/Icons/Gaming Set/PazaakDeck.webp and b/static/packs/Icons/Gaming Set/PazaakDeck.webp differ diff --git a/static/packs/Icons/Gaming Set/SabaccDeck.webp b/static/packs/Icons/Gaming Set/SabaccDeck.webp index f78c60971..85a9bc0a8 100644 Binary files a/static/packs/Icons/Gaming Set/SabaccDeck.webp and b/static/packs/Icons/Gaming Set/SabaccDeck.webp differ diff --git a/static/packs/Icons/Kit/AlchemistSKit.webp b/static/packs/Icons/Kit/AlchemistSKit.webp index e52844db8..dedfcabe2 100644 Binary files a/static/packs/Icons/Kit/AlchemistSKit.webp and b/static/packs/Icons/Kit/AlchemistSKit.webp differ diff --git a/static/packs/Icons/Kit/ArchaeologistKit.webp b/static/packs/Icons/Kit/ArchaeologistKit.webp index e52844db8..46be1a2da 100644 Binary files a/static/packs/Icons/Kit/ArchaeologistKit.webp and b/static/packs/Icons/Kit/ArchaeologistKit.webp differ diff --git a/static/packs/Icons/Kit/Armormech.webp b/static/packs/Icons/Kit/Armormech.webp new file mode 100644 index 000000000..9500b73c4 Binary files /dev/null and b/static/packs/Icons/Kit/Armormech.webp differ diff --git a/static/packs/Icons/Kit/Armstech.webp b/static/packs/Icons/Kit/Armstech.webp new file mode 100644 index 000000000..b30706c60 Binary files /dev/null and b/static/packs/Icons/Kit/Armstech.webp differ diff --git a/static/packs/Icons/Kit/Artificer.webp b/static/packs/Icons/Kit/Artificer.webp new file mode 100644 index 000000000..92248aaca Binary files /dev/null and b/static/packs/Icons/Kit/Artificer.webp differ diff --git a/static/packs/Icons/Kit/ArtilleristSKit.webp b/static/packs/Icons/Kit/ArtilleristSKit.webp index e52844db8..e9837fc96 100644 Binary files a/static/packs/Icons/Kit/ArtilleristSKit.webp and b/static/packs/Icons/Kit/ArtilleristSKit.webp differ diff --git a/static/packs/Icons/Kit/Artist.webp b/static/packs/Icons/Kit/Artist.webp new file mode 100644 index 000000000..fdc0c7fcf Binary files /dev/null and b/static/packs/Icons/Kit/Artist.webp differ diff --git a/static/packs/Icons/Kit/Astrotech.webp b/static/packs/Icons/Kit/Astrotech.webp new file mode 100644 index 000000000..2c0d29f67 Binary files /dev/null and b/static/packs/Icons/Kit/Astrotech.webp differ diff --git a/static/packs/Icons/Kit/Audiotech.webp b/static/packs/Icons/Kit/Audiotech.webp new file mode 100644 index 000000000..9fdb9cb35 Binary files /dev/null and b/static/packs/Icons/Kit/Audiotech.webp differ diff --git a/static/packs/Icons/Kit/BioanalysisKit.webp b/static/packs/Icons/Kit/BioanalysisKit.webp index e52844db8..dcd44043c 100644 Binary files a/static/packs/Icons/Kit/BioanalysisKit.webp and b/static/packs/Icons/Kit/BioanalysisKit.webp differ diff --git a/static/packs/Icons/Kit/BiochemistSKit.webp b/static/packs/Icons/Kit/BiochemistSKit.webp index ae32e384a..a1daf8d4e 100644 Binary files a/static/packs/Icons/Kit/BiochemistSKit.webp and b/static/packs/Icons/Kit/BiochemistSKit.webp differ diff --git a/static/packs/Icons/Kit/Biotech.webp b/static/packs/Icons/Kit/Biotech.webp new file mode 100644 index 000000000..6172c3ad1 Binary files /dev/null and b/static/packs/Icons/Kit/Biotech.webp differ diff --git a/static/packs/Icons/Kit/BrewerSKit.webp b/static/packs/Icons/Kit/BrewerSKit.webp index e52844db8..c83d644cd 100644 Binary files a/static/packs/Icons/Kit/BrewerSKit.webp and b/static/packs/Icons/Kit/BrewerSKit.webp differ diff --git a/static/packs/Icons/Kit/ChefSKit.webp b/static/packs/Icons/Kit/ChefSKit.webp index 7006d27cb..a53ad1da0 100644 Binary files a/static/packs/Icons/Kit/ChefSKit.webp and b/static/packs/Icons/Kit/ChefSKit.webp differ diff --git a/static/packs/Icons/Kit/Constructor.webp b/static/packs/Icons/Kit/Constructor.webp new file mode 100644 index 000000000..5854d3a4d Binary files /dev/null and b/static/packs/Icons/Kit/Constructor.webp differ diff --git a/static/packs/Icons/Kit/Cybertech.webp b/static/packs/Icons/Kit/Cybertech.webp new file mode 100644 index 000000000..7de2341dc Binary files /dev/null and b/static/packs/Icons/Kit/Cybertech.webp differ diff --git a/static/packs/Icons/Kit/DemolitionsKit.webp b/static/packs/Icons/Kit/DemolitionsKit.webp index d3882ace2..9d837e7ca 100644 Binary files a/static/packs/Icons/Kit/DemolitionsKit.webp and b/static/packs/Icons/Kit/DemolitionsKit.webp differ diff --git a/static/packs/Icons/Kit/DisguiseKit.webp b/static/packs/Icons/Kit/DisguiseKit.webp index 8d493e968..c4f101016 100644 Binary files a/static/packs/Icons/Kit/DisguiseKit.webp and b/static/packs/Icons/Kit/DisguiseKit.webp differ diff --git a/static/packs/Icons/Kit/ForgeryKit.webp b/static/packs/Icons/Kit/ForgeryKit.webp index a50edab63..814d25ab2 100644 Binary files a/static/packs/Icons/Kit/ForgeryKit.webp and b/static/packs/Icons/Kit/ForgeryKit.webp differ diff --git a/static/packs/Icons/Kit/Gadgeteer.webp b/static/packs/Icons/Kit/Gadgeteer.webp new file mode 100644 index 000000000..87611875a Binary files /dev/null and b/static/packs/Icons/Kit/Gadgeteer.webp differ diff --git a/static/packs/Icons/Kit/Geneticist.webp b/static/packs/Icons/Kit/Geneticist.webp new file mode 100644 index 000000000..ff3ab19c9 Binary files /dev/null and b/static/packs/Icons/Kit/Geneticist.webp differ diff --git a/static/packs/Icons/Kit/Jeweler.webp b/static/packs/Icons/Kit/Jeweler.webp new file mode 100644 index 000000000..fbf6af111 Binary files /dev/null and b/static/packs/Icons/Kit/Jeweler.webp differ diff --git a/static/packs/Icons/Kit/MechanicSKit.webp b/static/packs/Icons/Kit/MechanicSKit.webp index 8d5a953e3..1bce015f5 100644 Binary files a/static/packs/Icons/Kit/MechanicSKit.webp and b/static/packs/Icons/Kit/MechanicSKit.webp differ diff --git a/static/packs/Icons/Kit/MunitionsKit.webp b/static/packs/Icons/Kit/MunitionsKit.webp index e52844db8..e4b55faa5 100644 Binary files a/static/packs/Icons/Kit/MunitionsKit.webp and b/static/packs/Icons/Kit/MunitionsKit.webp differ diff --git a/static/packs/Icons/Kit/PoisonerSKit.webp b/static/packs/Icons/Kit/PoisonerSKit.webp index 3b02d11f7..d949fa5ab 100644 Binary files a/static/packs/Icons/Kit/PoisonerSKit.webp and b/static/packs/Icons/Kit/PoisonerSKit.webp differ diff --git a/static/packs/Icons/Kit/ScavengingKit.webp b/static/packs/Icons/Kit/ScavengingKit.webp index e52844db8..85cc50ae3 100644 Binary files a/static/packs/Icons/Kit/ScavengingKit.webp and b/static/packs/Icons/Kit/ScavengingKit.webp differ diff --git a/static/packs/Icons/Kit/SecurityKit.webp b/static/packs/Icons/Kit/SecurityKit.webp index 5c6d7bfc3..1ec2ca1ff 100644 Binary files a/static/packs/Icons/Kit/SecurityKit.webp and b/static/packs/Icons/Kit/SecurityKit.webp differ diff --git a/static/packs/Icons/Kit/SlicerSKit.webp b/static/packs/Icons/Kit/SlicerSKit.webp index c4b41460e..5b4e8c0e4 100644 Binary files a/static/packs/Icons/Kit/SlicerSKit.webp and b/static/packs/Icons/Kit/SlicerSKit.webp differ diff --git a/static/packs/Icons/Kit/SpicerSKit.webp b/static/packs/Icons/Kit/SpicerSKit.webp index e52844db8..9316cf076 100644 Binary files a/static/packs/Icons/Kit/SpicerSKit.webp and b/static/packs/Icons/Kit/SpicerSKit.webp differ diff --git a/static/packs/Icons/Kit/Surveyor.webp b/static/packs/Icons/Kit/Surveyor.webp new file mode 100644 index 000000000..cdc861911 Binary files /dev/null and b/static/packs/Icons/Kit/Surveyor.webp differ diff --git a/static/packs/Icons/Kit/Synthweaver.webp b/static/packs/Icons/Kit/Synthweaver.webp new file mode 100644 index 000000000..d1434e63f Binary files /dev/null and b/static/packs/Icons/Kit/Synthweaver.webp differ diff --git a/static/packs/Icons/Kit/Tinker.webp b/static/packs/Icons/Kit/Tinker.webp new file mode 100644 index 000000000..14e65ad00 Binary files /dev/null and b/static/packs/Icons/Kit/Tinker.webp differ diff --git a/static/packs/Icons/Kit/TrapperSKit.webp b/static/packs/Icons/Kit/TrapperSKit.webp index e52844db8..c64c10785 100644 Binary files a/static/packs/Icons/Kit/TrapperSKit.webp and b/static/packs/Icons/Kit/TrapperSKit.webp differ diff --git a/static/packs/Icons/Kit/Writer.webp b/static/packs/Icons/Kit/Writer.webp new file mode 100644 index 000000000..30e21c2f0 Binary files /dev/null and b/static/packs/Icons/Kit/Writer.webp differ diff --git a/static/packs/Icons/Lightsaber Forms/AqinosForm.webp b/static/packs/Icons/Lightsaber Forms/AqinosForm.webp index e52844db8..4d6a4fd45 100644 Binary files a/static/packs/Icons/Lightsaber Forms/AqinosForm.webp and b/static/packs/Icons/Lightsaber Forms/AqinosForm.webp differ diff --git a/static/packs/Icons/Lightsaber Forms/AtaruForm.webp b/static/packs/Icons/Lightsaber Forms/AtaruForm.webp index aa6749489..45094c786 100644 Binary files a/static/packs/Icons/Lightsaber Forms/AtaruForm.webp and b/static/packs/Icons/Lightsaber Forms/AtaruForm.webp differ diff --git a/static/packs/Icons/Lightsaber Forms/BakuuniHandForm.webp b/static/packs/Icons/Lightsaber Forms/BakuuniHandForm.webp index e52844db8..f043627c1 100644 Binary files a/static/packs/Icons/Lightsaber Forms/BakuuniHandForm.webp and b/static/packs/Icons/Lightsaber Forms/BakuuniHandForm.webp differ diff --git a/static/packs/Icons/Lightsaber Forms/DjemSoForm.webp b/static/packs/Icons/Lightsaber Forms/DjemSoForm.webp index 140bba403..2f981b1e2 100644 Binary files a/static/packs/Icons/Lightsaber Forms/DjemSoForm.webp and b/static/packs/Icons/Lightsaber Forms/DjemSoForm.webp differ diff --git a/static/packs/Icons/Lightsaber Forms/DralligForm.webp b/static/packs/Icons/Lightsaber Forms/DralligForm.webp index e52844db8..cecb68446 100644 Binary files a/static/packs/Icons/Lightsaber Forms/DralligForm.webp and b/static/packs/Icons/Lightsaber Forms/DralligForm.webp differ diff --git a/static/packs/Icons/Lightsaber Forms/IshuForm.webp b/static/packs/Icons/Lightsaber Forms/IshuForm.webp index 17f245de7..e6fef9f7f 100644 Binary files a/static/packs/Icons/Lightsaber Forms/IshuForm.webp and b/static/packs/Icons/Lightsaber Forms/IshuForm.webp differ diff --git a/static/packs/Icons/Lightsaber Forms/JarKaiForm.webp b/static/packs/Icons/Lightsaber Forms/JarKaiForm.webp index 3002fdeaa..5f2516744 100644 Binary files a/static/packs/Icons/Lightsaber Forms/JarKaiForm.webp and b/static/packs/Icons/Lightsaber Forms/JarKaiForm.webp differ diff --git a/static/packs/Icons/Lightsaber Forms/JuyoForm.webp b/static/packs/Icons/Lightsaber Forms/JuyoForm.webp index b0d825054..4114cacd6 100644 Binary files a/static/packs/Icons/Lightsaber Forms/JuyoForm.webp and b/static/packs/Icons/Lightsaber Forms/JuyoForm.webp differ diff --git a/static/packs/Icons/Lightsaber Forms/MakashiForm.webp b/static/packs/Icons/Lightsaber Forms/MakashiForm.webp index 8c9ae71b2..383ba34a5 100644 Binary files a/static/packs/Icons/Lightsaber Forms/MakashiForm.webp and b/static/packs/Icons/Lightsaber Forms/MakashiForm.webp differ diff --git a/static/packs/Icons/Lightsaber Forms/NimanForm.webp b/static/packs/Icons/Lightsaber Forms/NimanForm.webp index 92d5db324..e983adcf7 100644 Binary files a/static/packs/Icons/Lightsaber Forms/NimanForm.webp and b/static/packs/Icons/Lightsaber Forms/NimanForm.webp differ diff --git a/static/packs/Icons/Lightsaber Forms/ShienForm.webp b/static/packs/Icons/Lightsaber Forms/ShienForm.webp index 140bba403..114276ee2 100644 Binary files a/static/packs/Icons/Lightsaber Forms/ShienForm.webp and b/static/packs/Icons/Lightsaber Forms/ShienForm.webp differ diff --git a/static/packs/Icons/Lightsaber Forms/Shii-ChoForm.webp b/static/packs/Icons/Lightsaber Forms/Shii-ChoForm.webp index 1c2e1a3d5..63d16b53a 100644 Binary files a/static/packs/Icons/Lightsaber Forms/Shii-ChoForm.webp and b/static/packs/Icons/Lightsaber Forms/Shii-ChoForm.webp differ diff --git a/static/packs/Icons/Lightsaber Forms/SokanForm.webp b/static/packs/Icons/Lightsaber Forms/SokanForm.webp index 45ec6ded0..b944bb778 100644 Binary files a/static/packs/Icons/Lightsaber Forms/SokanForm.webp and b/static/packs/Icons/Lightsaber Forms/SokanForm.webp differ diff --git a/static/packs/Icons/Lightsaber Forms/SoresuForm.webp b/static/packs/Icons/Lightsaber Forms/SoresuForm.webp index 61b309e6e..86b3fb94a 100644 Binary files a/static/packs/Icons/Lightsaber Forms/SoresuForm.webp and b/static/packs/Icons/Lightsaber Forms/SoresuForm.webp differ diff --git a/static/packs/Icons/Lightsaber Forms/TrakataForm.webp b/static/packs/Icons/Lightsaber Forms/TrakataForm.webp index c69db9909..f7e7e9b45 100644 Binary files a/static/packs/Icons/Lightsaber Forms/TrakataForm.webp and b/static/packs/Icons/Lightsaber Forms/TrakataForm.webp differ diff --git a/static/packs/Icons/Lightsaber Forms/TrispzestForm.webp b/static/packs/Icons/Lightsaber Forms/TrispzestForm.webp index e52844db8..860a32d36 100644 Binary files a/static/packs/Icons/Lightsaber Forms/TrispzestForm.webp and b/static/packs/Icons/Lightsaber Forms/TrispzestForm.webp differ diff --git a/static/packs/Icons/Lightsaber Forms/TwilightForm.webp b/static/packs/Icons/Lightsaber Forms/TwilightForm.webp index e52844db8..446b32112 100644 Binary files a/static/packs/Icons/Lightsaber Forms/TwilightForm.webp and b/static/packs/Icons/Lightsaber Forms/TwilightForm.webp differ diff --git a/static/packs/Icons/Lightsaber Forms/VaapadForm.webp b/static/packs/Icons/Lightsaber Forms/VaapadForm.webp index b0d825054..e7a6090d0 100644 Binary files a/static/packs/Icons/Lightsaber Forms/VaapadForm.webp and b/static/packs/Icons/Lightsaber Forms/VaapadForm.webp differ diff --git a/static/packs/Icons/Lightsaber Forms/VonilForm.webp b/static/packs/Icons/Lightsaber Forms/VonilForm.webp index 17f245de7..fc30fa90b 100644 Binary files a/static/packs/Icons/Lightsaber Forms/VonilForm.webp and b/static/packs/Icons/Lightsaber Forms/VonilForm.webp differ diff --git a/static/packs/Icons/Lightsaber Forms/YsannaniteForm.webp b/static/packs/Icons/Lightsaber Forms/YsannaniteForm.webp index 45ca5ba77..00e43875c 100644 Binary files a/static/packs/Icons/Lightsaber Forms/YsannaniteForm.webp and b/static/packs/Icons/Lightsaber Forms/YsannaniteForm.webp differ diff --git a/static/packs/Icons/Medical/Antitoxkit.webp b/static/packs/Icons/Medical/Antitoxkit.webp index 8189e2f5d..870490614 100644 Binary files a/static/packs/Icons/Medical/Antitoxkit.webp and b/static/packs/Icons/Medical/Antitoxkit.webp differ diff --git a/static/packs/Icons/Medical/ArmProsthesis.webp b/static/packs/Icons/Medical/ArmProsthesis.webp index 1a4379961..d38df047f 100644 Binary files a/static/packs/Icons/Medical/ArmProsthesis.webp and b/static/packs/Icons/Medical/ArmProsthesis.webp differ diff --git a/static/packs/Icons/Medical/EarProsthesis.webp b/static/packs/Icons/Medical/EarProsthesis.webp index 8d587f16f..4a09c4230 100644 Binary files a/static/packs/Icons/Medical/EarProsthesis.webp and b/static/packs/Icons/Medical/EarProsthesis.webp differ diff --git a/static/packs/Icons/Medical/EmergencyBattery.webp b/static/packs/Icons/Medical/EmergencyBattery.webp index cc1b14625..4c0ff427e 100644 Binary files a/static/packs/Icons/Medical/EmergencyBattery.webp and b/static/packs/Icons/Medical/EmergencyBattery.webp differ diff --git a/static/packs/Icons/Medical/EyeProsthesis.webp b/static/packs/Icons/Medical/EyeProsthesis.webp index 5828fdafa..9c4c8a121 100644 Binary files a/static/packs/Icons/Medical/EyeProsthesis.webp and b/static/packs/Icons/Medical/EyeProsthesis.webp differ diff --git a/static/packs/Icons/Medical/FacialProsthesis.webp b/static/packs/Icons/Medical/FacialProsthesis.webp index 7c534357a..1f22290ed 100644 Binary files a/static/packs/Icons/Medical/FacialProsthesis.webp and b/static/packs/Icons/Medical/FacialProsthesis.webp differ diff --git a/static/packs/Icons/Medical/FootProsthesis.webp b/static/packs/Icons/Medical/FootProsthesis.webp index e0e932601..7c73b02e8 100644 Binary files a/static/packs/Icons/Medical/FootProsthesis.webp and b/static/packs/Icons/Medical/FootProsthesis.webp differ diff --git a/static/packs/Icons/Medical/ForearmProsthesis.webp b/static/packs/Icons/Medical/ForearmProsthesis.webp index 121e72e00..62f9348d9 100644 Binary files a/static/packs/Icons/Medical/ForearmProsthesis.webp and b/static/packs/Icons/Medical/ForearmProsthesis.webp differ diff --git a/static/packs/Icons/Medical/HandProsthesis.webp b/static/packs/Icons/Medical/HandProsthesis.webp index c77fe3a06..be91f8634 100644 Binary files a/static/packs/Icons/Medical/HandProsthesis.webp and b/static/packs/Icons/Medical/HandProsthesis.webp differ diff --git a/static/packs/Icons/Medical/LegProsthesis.webp b/static/packs/Icons/Medical/LegProsthesis.webp index 10d0c2045..94e2b1321 100644 Binary files a/static/packs/Icons/Medical/LegProsthesis.webp and b/static/packs/Icons/Medical/LegProsthesis.webp differ diff --git a/static/packs/Icons/Medical/Medpac.webp b/static/packs/Icons/Medical/Medpac.webp index e6a182ccb..d9ca96af1 100644 Binary files a/static/packs/Icons/Medical/Medpac.webp and b/static/packs/Icons/Medical/Medpac.webp differ diff --git a/static/packs/Icons/Medical/Poison.webp b/static/packs/Icons/Medical/Poison.webp index 5da2a4b5b..e15c31758 100644 Binary files a/static/packs/Icons/Medical/Poison.webp and b/static/packs/Icons/Medical/Poison.webp differ diff --git a/static/packs/Icons/Medical/RepairKit.webp b/static/packs/Icons/Medical/RepairKit.webp index 8ca8b46bf..385dfaaed 100644 Binary files a/static/packs/Icons/Medical/RepairKit.webp and b/static/packs/Icons/Medical/RepairKit.webp differ diff --git a/static/packs/Icons/Medical/ThroatProsthesis.webp b/static/packs/Icons/Medical/ThroatProsthesis.webp index f55f3f85b..808c1bc05 100644 Binary files a/static/packs/Icons/Medical/ThroatProsthesis.webp and b/static/packs/Icons/Medical/ThroatProsthesis.webp differ diff --git a/static/packs/Icons/Medical/TorsoProsthesis.webp b/static/packs/Icons/Medical/TorsoProsthesis.webp index 54f3b92e4..0fa4d530b 100644 Binary files a/static/packs/Icons/Medical/TorsoProsthesis.webp and b/static/packs/Icons/Medical/TorsoProsthesis.webp differ diff --git a/static/packs/Icons/Medical/Traumakit.webp b/static/packs/Icons/Medical/Traumakit.webp index 343d74c3f..44a1322db 100644 Binary files a/static/packs/Icons/Medical/Traumakit.webp and b/static/packs/Icons/Medical/Traumakit.webp differ diff --git a/static/packs/Icons/Medical/Vitapac.webp b/static/packs/Icons/Medical/Vitapac.webp new file mode 100644 index 000000000..d14b407ed Binary files /dev/null and b/static/packs/Icons/Medical/Vitapac.webp differ diff --git a/static/packs/Icons/Musical Instrument/Bandfill.webp b/static/packs/Icons/Musical Instrument/Bandfill.webp index d5e46e6a2..2e2c561e8 100644 Binary files a/static/packs/Icons/Musical Instrument/Bandfill.webp and b/static/packs/Icons/Musical Instrument/Bandfill.webp differ diff --git a/static/packs/Icons/Musical Instrument/ChindinkaluHorn.webp b/static/packs/Icons/Musical Instrument/ChindinkaluHorn.webp index 199ba1ff1..4c1ccea5c 100644 Binary files a/static/packs/Icons/Musical Instrument/ChindinkaluHorn.webp and b/static/packs/Icons/Musical Instrument/ChindinkaluHorn.webp differ diff --git a/static/packs/Icons/Musical Instrument/Drum.webp b/static/packs/Icons/Musical Instrument/Drum.webp index 604fa0b25..789be1697 100644 Binary files a/static/packs/Icons/Musical Instrument/Drum.webp and b/static/packs/Icons/Musical Instrument/Drum.webp differ diff --git a/static/packs/Icons/Musical Instrument/Fanfar.webp b/static/packs/Icons/Musical Instrument/Fanfar.webp index 87c34ecee..01dc9db2a 100644 Binary files a/static/packs/Icons/Musical Instrument/Fanfar.webp and b/static/packs/Icons/Musical Instrument/Fanfar.webp differ diff --git a/static/packs/Icons/Musical Instrument/Fizzz.webp b/static/packs/Icons/Musical Instrument/Fizzz.webp index dab9822e8..ee4428fc9 100644 Binary files a/static/packs/Icons/Musical Instrument/Fizzz.webp and b/static/packs/Icons/Musical Instrument/Fizzz.webp differ diff --git a/static/packs/Icons/Musical Instrument/Flute.webp b/static/packs/Icons/Musical Instrument/Flute.webp index 4df50fa41..4f4425781 100644 Binary files a/static/packs/Icons/Musical Instrument/Flute.webp and b/static/packs/Icons/Musical Instrument/Flute.webp differ diff --git a/static/packs/Icons/Musical Instrument/KlooHorn.webp b/static/packs/Icons/Musical Instrument/KlooHorn.webp index cd79b09a6..f935a4443 100644 Binary files a/static/packs/Icons/Musical Instrument/KlooHorn.webp and b/static/packs/Icons/Musical Instrument/KlooHorn.webp differ diff --git a/static/packs/Icons/Musical Instrument/Lute.webp b/static/packs/Icons/Musical Instrument/Lute.webp index 12d8b1824..ad7ddedf1 100644 Binary files a/static/packs/Icons/Musical Instrument/Lute.webp and b/static/packs/Icons/Musical Instrument/Lute.webp differ diff --git a/static/packs/Icons/Musical Instrument/Mandoviol.webp b/static/packs/Icons/Musical Instrument/Mandoviol.webp index 2d055093c..c3f733ec0 100644 Binary files a/static/packs/Icons/Musical Instrument/Mandoviol.webp and b/static/packs/Icons/Musical Instrument/Mandoviol.webp differ diff --git a/static/packs/Icons/Musical Instrument/OmmniBox.webp b/static/packs/Icons/Musical Instrument/OmmniBox.webp index 7c7652374..fe942641c 100644 Binary files a/static/packs/Icons/Musical Instrument/OmmniBox.webp and b/static/packs/Icons/Musical Instrument/OmmniBox.webp differ diff --git a/static/packs/Icons/Musical Instrument/Shawm.webp b/static/packs/Icons/Musical Instrument/Shawm.webp index 259d213fd..b20a1aba3 100644 Binary files a/static/packs/Icons/Musical Instrument/Shawm.webp and b/static/packs/Icons/Musical Instrument/Shawm.webp differ diff --git a/static/packs/Icons/Musical Instrument/Slitherhorn.webp b/static/packs/Icons/Musical Instrument/Slitherhorn.webp index f0d0efec4..a6757ca97 100644 Binary files a/static/packs/Icons/Musical Instrument/Slitherhorn.webp and b/static/packs/Icons/Musical Instrument/Slitherhorn.webp differ diff --git a/static/packs/Icons/Musical Instrument/Traz.webp b/static/packs/Icons/Musical Instrument/Traz.webp index 0f345ecd3..8bfe02f27 100644 Binary files a/static/packs/Icons/Musical Instrument/Traz.webp and b/static/packs/Icons/Musical Instrument/Traz.webp differ diff --git a/static/packs/Icons/Musical Instrument/Valahorn.webp b/static/packs/Icons/Musical Instrument/Valahorn.webp index ed956c89b..9348dabf2 100644 Binary files a/static/packs/Icons/Musical Instrument/Valahorn.webp and b/static/packs/Icons/Musical Instrument/Valahorn.webp differ diff --git a/static/packs/Icons/Musical Instrument/Xantha.webp b/static/packs/Icons/Musical Instrument/Xantha.webp index b38e0beb5..d2e4d31d4 100644 Binary files a/static/packs/Icons/Musical Instrument/Xantha.webp and b/static/packs/Icons/Musical Instrument/Xantha.webp differ diff --git a/static/packs/Icons/Species/Aing-Tii.webp b/static/packs/Icons/Species/Aing-Tii.webp index 13f306b1b..559f58efb 100644 Binary files a/static/packs/Icons/Species/Aing-Tii.webp and b/static/packs/Icons/Species/Aing-Tii.webp differ diff --git a/static/packs/Icons/Species/Anx.webp b/static/packs/Icons/Species/Anx.webp index e52844db8..7a0628f9c 100644 Binary files a/static/packs/Icons/Species/Anx.webp and b/static/packs/Icons/Species/Anx.webp differ diff --git a/static/packs/Icons/Species/Culisetto.webp b/static/packs/Icons/Species/Culisetto.webp index e52844db8..afc8658ab 100644 Binary files a/static/packs/Icons/Species/Culisetto.webp and b/static/packs/Icons/Species/Culisetto.webp differ diff --git a/static/packs/Icons/Species/Diathim.webp b/static/packs/Icons/Species/Diathim.webp index e52844db8..b436c0590 100644 Binary files a/static/packs/Icons/Species/Diathim.webp and b/static/packs/Icons/Species/Diathim.webp differ diff --git a/static/packs/Icons/Species/Dowutin-Young.webp b/static/packs/Icons/Species/Dowutin-Young.webp index e52844db8..2bb3e9c26 100644 Binary files a/static/packs/Icons/Species/Dowutin-Young.webp and b/static/packs/Icons/Species/Dowutin-Young.webp differ diff --git a/static/packs/Icons/Species/Gank.webp b/static/packs/Icons/Species/Gank.webp index e52844db8..9cdd84d56 100644 Binary files a/static/packs/Icons/Species/Gank.webp and b/static/packs/Icons/Species/Gank.webp differ diff --git a/static/packs/Icons/Species/Gormak.webp b/static/packs/Icons/Species/Gormak.webp index e52844db8..3e81e3fdb 100644 Binary files a/static/packs/Icons/Species/Gormak.webp and b/static/packs/Icons/Species/Gormak.webp differ diff --git a/static/packs/Icons/Species/Houk.webp b/static/packs/Icons/Species/Houk.webp index e52844db8..0ee9e8112 100644 Binary files a/static/packs/Icons/Species/Houk.webp and b/static/packs/Icons/Species/Houk.webp differ diff --git a/static/packs/Icons/Species/Kiffar.webp b/static/packs/Icons/Species/Kiffar.webp index e52844db8..58fd03971 100644 Binary files a/static/packs/Icons/Species/Kiffar.webp and b/static/packs/Icons/Species/Kiffar.webp differ diff --git a/static/packs/Icons/Species/Massassi.webp b/static/packs/Icons/Species/Massassi.webp index e52844db8..2de3c2962 100644 Binary files a/static/packs/Icons/Species/Massassi.webp and b/static/packs/Icons/Species/Massassi.webp differ diff --git a/static/packs/Icons/Species/Pantoran.webp b/static/packs/Icons/Species/Pantoran.webp index e52844db8..0e377cc07 100644 Binary files a/static/packs/Icons/Species/Pantoran.webp and b/static/packs/Icons/Species/Pantoran.webp differ diff --git a/static/packs/Icons/Species/Quermian.webp b/static/packs/Icons/Species/Quermian.webp index e52844db8..d22d051dd 100644 Binary files a/static/packs/Icons/Species/Quermian.webp and b/static/packs/Icons/Species/Quermian.webp differ diff --git a/static/packs/Icons/Species/Selonian.webp b/static/packs/Icons/Species/Selonian.webp index e52844db8..be35cfacd 100644 Binary files a/static/packs/Icons/Species/Selonian.webp and b/static/packs/Icons/Species/Selonian.webp differ diff --git a/static/packs/Icons/Species/Theelin.webp b/static/packs/Icons/Species/Theelin.webp index e52844db8..94b6f82f1 100644 Binary files a/static/packs/Icons/Species/Theelin.webp and b/static/packs/Icons/Species/Theelin.webp differ diff --git a/static/packs/Icons/Species/TissShar.webp b/static/packs/Icons/Species/TissShar.webp index e52844db8..0c5ea7420 100644 Binary files a/static/packs/Icons/Species/TissShar.webp and b/static/packs/Icons/Species/TissShar.webp differ diff --git a/static/packs/Icons/Species/Ugor.webp b/static/packs/Icons/Species/Ugor.webp index e52844db8..0e4bc7d11 100644 Binary files a/static/packs/Icons/Species/Ugor.webp and b/static/packs/Icons/Species/Ugor.webp differ diff --git a/static/packs/Icons/Species/Xexto.webp b/static/packs/Icons/Species/Xexto.webp index e52844db8..4ebc3e3aa 100644 Binary files a/static/packs/Icons/Species/Xexto.webp and b/static/packs/Icons/Species/Xexto.webp differ diff --git a/static/packs/Icons/Species/Zabrak.webp b/static/packs/Icons/Species/Zabrak.webp index 0a1c51b82..e93e94c1e 100644 Binary files a/static/packs/Icons/Species/Zabrak.webp and b/static/packs/Icons/Species/Zabrak.webp differ diff --git a/static/packs/Icons/Species/Zilkin.webp b/static/packs/Icons/Species/Zilkin.webp index e52844db8..4010cf85f 100644 Binary files a/static/packs/Icons/Species/Zilkin.webp and b/static/packs/Icons/Species/Zilkin.webp differ diff --git a/static/packs/Icons/Spice/Andris.webp b/static/packs/Icons/Spice/Andris.webp index dd0024744..6f79f7f49 100644 Binary files a/static/packs/Icons/Spice/Andris.webp and b/static/packs/Icons/Spice/Andris.webp differ diff --git a/static/packs/Icons/Spice/Cilona.webp b/static/packs/Icons/Spice/Cilona.webp index cac578b9a..f29502c42 100644 Binary files a/static/packs/Icons/Spice/Cilona.webp and b/static/packs/Icons/Spice/Cilona.webp differ diff --git a/static/packs/Icons/Spice/Giggledust.webp b/static/packs/Icons/Spice/Giggledust.webp index 81f009e44..974b3d586 100644 Binary files a/static/packs/Icons/Spice/Giggledust.webp and b/static/packs/Icons/Spice/Giggledust.webp differ diff --git a/static/packs/Icons/Spice/Glitterstim.webp b/static/packs/Icons/Spice/Glitterstim.webp index 6916fe013..7c9adaaf7 100644 Binary files a/static/packs/Icons/Spice/Glitterstim.webp and b/static/packs/Icons/Spice/Glitterstim.webp differ diff --git a/static/packs/Icons/Spice/Karrak.webp b/static/packs/Icons/Spice/Karrak.webp index d8c5f865e..6aa0597ad 100644 Binary files a/static/packs/Icons/Spice/Karrak.webp and b/static/packs/Icons/Spice/Karrak.webp differ diff --git a/static/packs/Icons/Spice/MuonGold.webp b/static/packs/Icons/Spice/MuonGold.webp index 350dd3967..9f913d8f0 100644 Binary files a/static/packs/Icons/Spice/MuonGold.webp and b/static/packs/Icons/Spice/MuonGold.webp differ diff --git a/static/packs/Icons/Spice/Yaladai.webp b/static/packs/Icons/Spice/Yaladai.webp index 72b37b3b6..fa524dc64 100644 Binary files a/static/packs/Icons/Spice/Yaladai.webp and b/static/packs/Icons/Spice/Yaladai.webp differ diff --git a/static/packs/Icons/Spice/Yarrock.webp b/static/packs/Icons/Spice/Yarrock.webp index cfb3a22d0..f03411ebf 100644 Binary files a/static/packs/Icons/Spice/Yarrock.webp and b/static/packs/Icons/Spice/Yarrock.webp differ diff --git a/static/packs/Icons/Storage/Backpack.webp b/static/packs/Icons/Storage/Backpack.webp index 04e694541..298955c1c 100644 Binary files a/static/packs/Icons/Storage/Backpack.webp and b/static/packs/Icons/Storage/Backpack.webp differ diff --git a/static/packs/Icons/Storage/Bottle.webp b/static/packs/Icons/Storage/Bottle.webp index 45035536d..a18092cb7 100644 Binary files a/static/packs/Icons/Storage/Bottle.webp and b/static/packs/Icons/Storage/Bottle.webp differ diff --git a/static/packs/Icons/Storage/Bucket.webp b/static/packs/Icons/Storage/Bucket.webp index aba9ef1a6..b45cbb859 100644 Binary files a/static/packs/Icons/Storage/Bucket.webp and b/static/packs/Icons/Storage/Bucket.webp differ diff --git a/static/packs/Icons/Storage/Camtono.webp b/static/packs/Icons/Storage/Camtono.webp index 922083c49..63a7b917c 100644 Binary files a/static/packs/Icons/Storage/Camtono.webp and b/static/packs/Icons/Storage/Camtono.webp differ diff --git a/static/packs/Icons/Storage/Canteen.webp b/static/packs/Icons/Storage/Canteen.webp index 8e6138c0d..a9c510407 100644 Binary files a/static/packs/Icons/Storage/Canteen.webp and b/static/packs/Icons/Storage/Canteen.webp differ diff --git a/static/packs/Icons/Storage/Case-Alt.webp b/static/packs/Icons/Storage/Case-Alt.webp index 0071df391..8c177898a 100644 Binary files a/static/packs/Icons/Storage/Case-Alt.webp and b/static/packs/Icons/Storage/Case-Alt.webp differ diff --git a/static/packs/Icons/Storage/Case.webp b/static/packs/Icons/Storage/Case.webp index ffa1639c9..1be70e7b6 100644 Binary files a/static/packs/Icons/Storage/Case.webp and b/static/packs/Icons/Storage/Case.webp differ diff --git a/static/packs/Icons/Storage/Chest.webp b/static/packs/Icons/Storage/Chest.webp index bf5c2ed33..36c4c8021 100644 Binary files a/static/packs/Icons/Storage/Chest.webp and b/static/packs/Icons/Storage/Chest.webp differ diff --git a/static/packs/Icons/Storage/Crate.webp b/static/packs/Icons/Storage/Crate.webp index 654a56c00..9231ab041 100644 Binary files a/static/packs/Icons/Storage/Crate.webp and b/static/packs/Icons/Storage/Crate.webp differ diff --git a/static/packs/Icons/Storage/Flask.webp b/static/packs/Icons/Storage/Flask.webp index e52844db8..b9275df2a 100644 Binary files a/static/packs/Icons/Storage/Flask.webp and b/static/packs/Icons/Storage/Flask.webp differ diff --git a/static/packs/Icons/Storage/Hovercart.webp b/static/packs/Icons/Storage/Hovercart.webp index 26df4beb6..87c841f48 100644 Binary files a/static/packs/Icons/Storage/Hovercart.webp and b/static/packs/Icons/Storage/Hovercart.webp differ diff --git a/static/packs/Icons/Storage/Jug.webp b/static/packs/Icons/Storage/Jug.webp index e52844db8..337a6a58a 100644 Binary files a/static/packs/Icons/Storage/Jug.webp and b/static/packs/Icons/Storage/Jug.webp differ diff --git a/static/packs/Icons/Storage/Pitcher.webp b/static/packs/Icons/Storage/Pitcher.webp index e52844db8..8cdc639c7 100644 Binary files a/static/packs/Icons/Storage/Pitcher.webp and b/static/packs/Icons/Storage/Pitcher.webp differ diff --git a/static/packs/Icons/Storage/Pot.webp b/static/packs/Icons/Storage/Pot.webp index e52844db8..01ed74167 100644 Binary files a/static/packs/Icons/Storage/Pot.webp and b/static/packs/Icons/Storage/Pot.webp differ diff --git a/static/packs/Icons/Storage/Pouch.webp b/static/packs/Icons/Storage/Pouch.webp index 3528df172..17bc49348 100644 Binary files a/static/packs/Icons/Storage/Pouch.webp and b/static/packs/Icons/Storage/Pouch.webp differ diff --git a/static/packs/Icons/Storage/Sack.webp b/static/packs/Icons/Storage/Sack.webp index e52844db8..e820613d4 100644 Binary files a/static/packs/Icons/Storage/Sack.webp and b/static/packs/Icons/Storage/Sack.webp differ diff --git a/static/packs/Icons/Storage/Smugglepack.webp b/static/packs/Icons/Storage/Smugglepack.webp index b636b31c6..2e8668491 100644 Binary files a/static/packs/Icons/Storage/Smugglepack.webp and b/static/packs/Icons/Storage/Smugglepack.webp differ diff --git a/static/packs/Icons/Storage/Tankard.webp b/static/packs/Icons/Storage/Tankard.webp index e52844db8..e4b548a4d 100644 Binary files a/static/packs/Icons/Storage/Tankard.webp and b/static/packs/Icons/Storage/Tankard.webp differ diff --git a/static/packs/Icons/Storage/Vial.webp b/static/packs/Icons/Storage/Vial.webp index e52844db8..9fd66efba 100644 Binary files a/static/packs/Icons/Storage/Vial.webp and b/static/packs/Icons/Storage/Vial.webp differ diff --git a/static/packs/Icons/Utility/Bedroll.webp b/static/packs/Icons/Utility/Bedroll.webp index f5e2464ce..feeab887a 100644 Binary files a/static/packs/Icons/Utility/Bedroll.webp and b/static/packs/Icons/Utility/Bedroll.webp differ diff --git a/static/packs/Icons/Utility/Binders.webp b/static/packs/Icons/Utility/Binders.webp index b7395be8d..a577c3d82 100644 Binary files a/static/packs/Icons/Utility/Binders.webp and b/static/packs/Icons/Utility/Binders.webp differ diff --git a/static/packs/Icons/Utility/Blanket.webp b/static/packs/Icons/Utility/Blanket.webp index 6a6157b66..f80aa5cbb 100644 Binary files a/static/packs/Icons/Utility/Blanket.webp and b/static/packs/Icons/Utility/Blanket.webp differ diff --git a/static/packs/Icons/Utility/Chronometer.webp b/static/packs/Icons/Utility/Chronometer.webp index 5f3e6d8be..41a03b61c 100644 Binary files a/static/packs/Icons/Utility/Chronometer.webp and b/static/packs/Icons/Utility/Chronometer.webp differ diff --git a/static/packs/Icons/Utility/ComputerSpike.webp b/static/packs/Icons/Utility/ComputerSpike.webp index 171c26d42..dde384a13 100644 Binary files a/static/packs/Icons/Utility/ComputerSpike.webp and b/static/packs/Icons/Utility/ComputerSpike.webp differ diff --git a/static/packs/Icons/Utility/FibercordCable-50Ft-Rolled.webp b/static/packs/Icons/Utility/FibercordCable-50Ft-Rolled.webp index 080056cf2..f186da9db 100644 Binary files a/static/packs/Icons/Utility/FibercordCable-50Ft-Rolled.webp and b/static/packs/Icons/Utility/FibercordCable-50Ft-Rolled.webp differ diff --git a/static/packs/Icons/Utility/FieldRations-OneDayS.webp b/static/packs/Icons/Utility/FieldRations-OneDayS.webp index 6f415bef3..262b7e879 100644 Binary files a/static/packs/Icons/Utility/FieldRations-OneDayS.webp and b/static/packs/Icons/Utility/FieldRations-OneDayS.webp differ diff --git a/static/packs/Icons/Utility/FireExtinguisher.webp b/static/packs/Icons/Utility/FireExtinguisher.webp index e52844db8..dd8ec3920 100644 Binary files a/static/packs/Icons/Utility/FireExtinguisher.webp and b/static/packs/Icons/Utility/FireExtinguisher.webp differ diff --git a/static/packs/Icons/Utility/FusionCutter.webp b/static/packs/Icons/Utility/FusionCutter.webp index 4631b0106..cc14179cd 100644 Binary files a/static/packs/Icons/Utility/FusionCutter.webp and b/static/packs/Icons/Utility/FusionCutter.webp differ diff --git a/static/packs/Icons/Utility/Glowrod.webp b/static/packs/Icons/Utility/Glowrod.webp index 77f737229..45cad4b90 100644 Binary files a/static/packs/Icons/Utility/Glowrod.webp and b/static/packs/Icons/Utility/Glowrod.webp differ diff --git a/static/packs/Icons/Utility/GrapplingHook.webp b/static/packs/Icons/Utility/GrapplingHook.webp index 70bfa35f6..78ed2465c 100644 Binary files a/static/packs/Icons/Utility/GrapplingHook.webp and b/static/packs/Icons/Utility/GrapplingHook.webp differ diff --git a/static/packs/Icons/Utility/GravityGenerator.webp b/static/packs/Icons/Utility/GravityGenerator.webp index e52844db8..f68bd09fa 100644 Binary files a/static/packs/Icons/Utility/GravityGenerator.webp and b/static/packs/Icons/Utility/GravityGenerator.webp differ diff --git a/static/packs/Icons/Utility/HeatGenerator.webp b/static/packs/Icons/Utility/HeatGenerator.webp index 3b82ab4d1..b5da99675 100644 Binary files a/static/packs/Icons/Utility/HeatGenerator.webp and b/static/packs/Icons/Utility/HeatGenerator.webp differ diff --git a/static/packs/Icons/Utility/HomingBeacon.webp b/static/packs/Icons/Utility/HomingBeacon.webp index 2a3cc074e..025e6626c 100644 Binary files a/static/packs/Icons/Utility/HomingBeacon.webp and b/static/packs/Icons/Utility/HomingBeacon.webp differ diff --git a/static/packs/Icons/Utility/Hydrospanner.webp b/static/packs/Icons/Utility/Hydrospanner.webp index a0fb6e332..ed5409551 100644 Binary files a/static/packs/Icons/Utility/Hydrospanner.webp and b/static/packs/Icons/Utility/Hydrospanner.webp differ diff --git a/static/packs/Icons/Utility/Macrobinoculars.webp b/static/packs/Icons/Utility/Macrobinoculars.webp index f5c701ff6..3c9d75145 100644 Binary files a/static/packs/Icons/Utility/Macrobinoculars.webp and b/static/packs/Icons/Utility/Macrobinoculars.webp differ diff --git a/static/packs/Icons/Utility/MessKit.webp b/static/packs/Icons/Utility/MessKit.webp index a66f07e1f..131719222 100644 Binary files a/static/packs/Icons/Utility/MessKit.webp and b/static/packs/Icons/Utility/MessKit.webp differ diff --git a/static/packs/Icons/Utility/Mirror.webp b/static/packs/Icons/Utility/Mirror.webp index 4f998fac8..5a2511fe8 100644 Binary files a/static/packs/Icons/Utility/Mirror.webp and b/static/packs/Icons/Utility/Mirror.webp differ diff --git a/static/packs/Icons/Utility/Ram-Portable.webp b/static/packs/Icons/Utility/Ram-Portable.webp index e52844db8..ac551c4aa 100644 Binary files a/static/packs/Icons/Utility/Ram-Portable.webp and b/static/packs/Icons/Utility/Ram-Portable.webp differ diff --git a/static/packs/Icons/Utility/Ram.webp b/static/packs/Icons/Utility/Ram.webp index 3e8bbbd8d..77b1351ad 100644 Binary files a/static/packs/Icons/Utility/Ram.webp and b/static/packs/Icons/Utility/Ram.webp differ diff --git a/static/packs/Icons/Utility/RestrainingBolt.webp b/static/packs/Icons/Utility/RestrainingBolt.webp index 92aceae35..a325f9626 100644 Binary files a/static/packs/Icons/Utility/RestrainingBolt.webp and b/static/packs/Icons/Utility/RestrainingBolt.webp differ diff --git a/static/packs/Icons/Utility/SecuritySpike.webp b/static/packs/Icons/Utility/SecuritySpike.webp index 8b67dea09..3c9ed3bcc 100644 Binary files a/static/packs/Icons/Utility/SecuritySpike.webp and b/static/packs/Icons/Utility/SecuritySpike.webp differ diff --git a/static/packs/Icons/Utility/Shovel.webp b/static/packs/Icons/Utility/Shovel.webp index 5c914a0f3..a52b65a42 100644 Binary files a/static/packs/Icons/Utility/Shovel.webp and b/static/packs/Icons/Utility/Shovel.webp differ diff --git a/static/packs/Icons/Utility/Tent-Two-Person.webp b/static/packs/Icons/Utility/Tent-Two-Person.webp index e52844db8..4deecbf3d 100644 Binary files a/static/packs/Icons/Utility/Tent-Two-Person.webp and b/static/packs/Icons/Utility/Tent-Two-Person.webp differ diff --git a/static/packs/Icons/Utility/Tent.webp b/static/packs/Icons/Utility/Tent.webp index 136eebe08..e15150e44 100644 Binary files a/static/packs/Icons/Utility/Tent.webp and b/static/packs/Icons/Utility/Tent.webp differ diff --git a/static/packs/Icons/Weapon or Armor Accessory/Ammo-FeedBelt.webp b/static/packs/Icons/Weapon or Armor Accessory/Ammo-FeedBelt.webp index 1a29f13f4..5f746797b 100644 Binary files a/static/packs/Icons/Weapon or Armor Accessory/Ammo-FeedBelt.webp and b/static/packs/Icons/Weapon or Armor Accessory/Ammo-FeedBelt.webp differ diff --git a/static/packs/Icons/Weapon or Armor Accessory/AmmoPouch.webp b/static/packs/Icons/Weapon or Armor Accessory/AmmoPouch.webp index e52844db8..10c97f6f7 100644 Binary files a/static/packs/Icons/Weapon or Armor Accessory/AmmoPouch.webp and b/static/packs/Icons/Weapon or Armor Accessory/AmmoPouch.webp differ diff --git a/static/packs/Icons/Weapon or Armor Accessory/Bandolier.webp b/static/packs/Icons/Weapon or Armor Accessory/Bandolier.webp index 5718058ca..c4726ce9d 100644 Binary files a/static/packs/Icons/Weapon or Armor Accessory/Bandolier.webp and b/static/packs/Icons/Weapon or Armor Accessory/Bandolier.webp differ diff --git a/static/packs/Icons/Weapon or Armor Accessory/Bipod.webp b/static/packs/Icons/Weapon or Armor Accessory/Bipod.webp index c43b7525e..887e371c0 100644 Binary files a/static/packs/Icons/Weapon or Armor Accessory/Bipod.webp and b/static/packs/Icons/Weapon or Armor Accessory/Bipod.webp differ diff --git a/static/packs/Icons/Weapon or Armor Accessory/Friction-GripGear.webp b/static/packs/Icons/Weapon or Armor Accessory/Friction-GripGear.webp index 2c9189aad..780b8748e 100644 Binary files a/static/packs/Icons/Weapon or Armor Accessory/Friction-GripGear.webp and b/static/packs/Icons/Weapon or Armor Accessory/Friction-GripGear.webp differ diff --git a/static/packs/Icons/Weapon or Armor Accessory/Holster.webp b/static/packs/Icons/Weapon or Armor Accessory/Holster.webp index 64009a644..bde546b57 100644 Binary files a/static/packs/Icons/Weapon or Armor Accessory/Holster.webp and b/static/packs/Icons/Weapon or Armor Accessory/Holster.webp differ diff --git a/static/packs/Icons/Weapon or Armor Accessory/Jetpack.webp b/static/packs/Icons/Weapon or Armor Accessory/Jetpack.webp index 670666ac7..8fea8f235 100644 Binary files a/static/packs/Icons/Weapon or Armor Accessory/Jetpack.webp and b/static/packs/Icons/Weapon or Armor Accessory/Jetpack.webp differ diff --git a/static/packs/Icons/Weapon or Armor Accessory/PowerBelt.webp b/static/packs/Icons/Weapon or Armor Accessory/PowerBelt.webp index 1a530bf4a..ccaf148ab 100644 Binary files a/static/packs/Icons/Weapon or Armor Accessory/PowerBelt.webp and b/static/packs/Icons/Weapon or Armor Accessory/PowerBelt.webp differ diff --git a/static/packs/Icons/Weapon or Armor Accessory/PropulsionPack.webp b/static/packs/Icons/Weapon or Armor Accessory/PropulsionPack.webp index 3fd28375b..437c7be08 100644 Binary files a/static/packs/Icons/Weapon or Armor Accessory/PropulsionPack.webp and b/static/packs/Icons/Weapon or Armor Accessory/PropulsionPack.webp differ diff --git a/static/packs/Icons/Weapon or Armor Accessory/Quiver.webp b/static/packs/Icons/Weapon or Armor Accessory/Quiver.webp index e52844db8..64841e275 100644 Binary files a/static/packs/Icons/Weapon or Armor Accessory/Quiver.webp and b/static/packs/Icons/Weapon or Armor Accessory/Quiver.webp differ diff --git a/static/packs/Icons/Weapon or Armor Accessory/RemoteDetonator.webp b/static/packs/Icons/Weapon or Armor Accessory/RemoteDetonator.webp index 00c323f0f..92dcf6282 100644 Binary files a/static/packs/Icons/Weapon or Armor Accessory/RemoteDetonator.webp and b/static/packs/Icons/Weapon or Armor Accessory/RemoteDetonator.webp differ diff --git a/static/packs/Icons/Weapon or Armor Accessory/RepulsorPack.webp b/static/packs/Icons/Weapon or Armor Accessory/RepulsorPack.webp index b9b9120b3..91682554a 100644 Binary files a/static/packs/Icons/Weapon or Armor Accessory/RepulsorPack.webp and b/static/packs/Icons/Weapon or Armor Accessory/RepulsorPack.webp differ diff --git a/static/packs/Icons/Weapon or Armor Accessory/RocketBoots.webp b/static/packs/Icons/Weapon or Armor Accessory/RocketBoots.webp index d7275ed03..e1db799be 100644 Binary files a/static/packs/Icons/Weapon or Armor Accessory/RocketBoots.webp and b/static/packs/Icons/Weapon or Armor Accessory/RocketBoots.webp differ diff --git a/static/packs/Icons/Weapon or Armor Accessory/Rocketpack.webp b/static/packs/Icons/Weapon or Armor Accessory/Rocketpack.webp index e52844db8..25f89b668 100644 Binary files a/static/packs/Icons/Weapon or Armor Accessory/Rocketpack.webp and b/static/packs/Icons/Weapon or Armor Accessory/Rocketpack.webp differ diff --git a/static/packs/Icons/Weapon or Armor Accessory/ShockGloves.webp b/static/packs/Icons/Weapon or Armor Accessory/ShockGloves.webp index a6c9b924a..6de85d040 100644 Binary files a/static/packs/Icons/Weapon or Armor Accessory/ShockGloves.webp and b/static/packs/Icons/Weapon or Armor Accessory/ShockGloves.webp differ diff --git a/static/packs/Icons/Weapon or Armor Accessory/ShoulderCannon.webp b/static/packs/Icons/Weapon or Armor Accessory/ShoulderCannon.webp deleted file mode 100644 index a457aedc7..000000000 Binary files a/static/packs/Icons/Weapon or Armor Accessory/ShoulderCannon.webp and /dev/null differ diff --git a/static/packs/Icons/Weapon or Armor Accessory/StealthFieldGenerator.webp b/static/packs/Icons/Weapon or Armor Accessory/StealthFieldGenerator.webp index caa8fe3e0..f3d8f32cc 100644 Binary files a/static/packs/Icons/Weapon or Armor Accessory/StealthFieldGenerator.webp and b/static/packs/Icons/Weapon or Armor Accessory/StealthFieldGenerator.webp differ diff --git a/static/packs/Icons/Weapon or Armor Accessory/TrackerUtilityVest.webp b/static/packs/Icons/Weapon or Armor Accessory/TrackerUtilityVest.webp index 6aa2a1443..9af79fa22 100644 Binary files a/static/packs/Icons/Weapon or Armor Accessory/TrackerUtilityVest.webp and b/static/packs/Icons/Weapon or Armor Accessory/TrackerUtilityVest.webp differ diff --git a/static/packs/Icons/Weapon or Armor Accessory/Tripod.webp b/static/packs/Icons/Weapon or Armor Accessory/Tripod.webp index 727068993..0a92f6520 100644 Binary files a/static/packs/Icons/Weapon or Armor Accessory/Tripod.webp and b/static/packs/Icons/Weapon or Armor Accessory/Tripod.webp differ diff --git a/static/system.json b/static/system.json index 5bbbe3c28..4cb84e291 100644 --- a/static/system.json +++ b/static/system.json @@ -2,7 +2,7 @@ "id": "sw5e", "title": "SW 5th Edition", "description": "A comprehensive game system for running games of SW 5th Edition in the Foundry VTT environment.", - "version": "2.1.5.2.4.7", + "version": "2.1.5.2.4.8", "compatibility": { "minimum": "10.291", "verified": "10" diff --git a/static/template.json b/static/template.json index 58563156a..f96990d41 100644 --- a/static/template.json +++ b/static/template.json @@ -1155,7 +1155,10 @@ "species": { "templates": ["speciesDescription"], "identifier": "", - "advancement": [] + "advancement": [], + "details": { + "isDroid": false + } }, "tool": { "templates": ["itemDescription", "physicalItem"], diff --git a/static/templates/items/backpack.hbs b/static/templates/items/backpack.hbs index 53729850e..741572408 100644 --- a/static/templates/items/backpack.hbs +++ b/static/templates/items/backpack.hbs @@ -20,7 +20,7 @@