From 99dd294c2b153beae824ac8dd41cd56f0acb729b Mon Sep 17 00:00:00 2001 From: QckSilverDragon Date: Thu, 5 Dec 2024 00:04:57 -0600 Subject: [PATCH 01/11] Expanding perk requirements --- i18n/en.yaml | 1 + system/src/templates.mjs | 3 +- system/template.json | 30 ++++++- system/templates/item/perk-sheet.hbs | 10 +-- system/templates/item/perk/attributes-tab.hbs | 50 ------------ system/templates/item/perk/attributes.hbs | 24 ++++++ .../templates/item/perk/requirements-tab.hbs | 80 +++++++++++++++++++ 7 files changed, 141 insertions(+), 57 deletions(-) delete mode 100644 system/templates/item/perk/attributes-tab.hbs create mode 100644 system/templates/item/perk/attributes.hbs create mode 100644 system/templates/item/perk/requirements-tab.hbs diff --git a/i18n/en.yaml b/i18n/en.yaml index 1b938e44..962e8da0 100644 --- a/i18n/en.yaml +++ b/i18n/en.yaml @@ -465,6 +465,7 @@ FALLOUT.TEMPLATES.Junk: Junk FALLOUT.TEMPLATES.kgs: kg FALLOUT.TEMPLATES.lbs: lb FALLOUT.TEMPLATES.Learned: Learned +FALLOUT.TEMPLATES.LevelIncrease: Level Increase FALLOUT.TEMPLATES.LOCATIONS_INJURIES: LOCATIONS & INJURIES FALLOUT.TEMPLATES.Locations: Locations FALLOUT.TEMPLATES.Luck: Luck diff --git a/system/src/templates.mjs b/system/src/templates.mjs index 0c0afd95..b9ad617f 100644 --- a/system/src/templates.mjs +++ b/system/src/templates.mjs @@ -137,7 +137,8 @@ export default async function preloadHandlebarsTemplates() { "systems/fallout/templates/item/miscellany/attributes-tab.hbs", "systems/fallout/templates/item/object_or_structure/attributes-tab.hbs", "systems/fallout/templates/item/origin/attributes-tab.hbs", - "systems/fallout/templates/item/perk/attributes-tab.hbs", + "systems/fallout/templates/item/perk/requirements-tab.hbs", + "systems/fallout/templates/item/perk/attributes.hbs", "systems/fallout/templates/item/robot_armor/attributes-tab.hbs", "systems/fallout/templates/item/robot_mod/attributes-tab.hbs", "systems/fallout/templates/item/skill/attributes-tab.hbs", diff --git a/system/template.json b/system/template.json index 591344d6..d6d89333 100644 --- a/system/template.json +++ b/system/template.json @@ -1142,7 +1142,35 @@ "max": 1, "value": 0 }, - "requirements": "", + "requirements": { + "legacy": "", + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "notRobot": false, + "noCompanion": false, + "notRadiationImmune": false + }, "templates": [ "base" ] diff --git a/system/templates/item/perk-sheet.hbs b/system/templates/item/perk-sheet.hbs index f3073d87..d0104be8 100644 --- a/system/templates/item/perk-sheet.hbs +++ b/system/templates/item/perk-sheet.hbs @@ -3,14 +3,14 @@ {{> item/_shared-partials/header}}
- {{> item/perk/attributes-tab}} {{> item/_shared-partials/description-tab}} + {{> item/perk/requirements-tab}} {{> item/_shared-partials/effects-tab}} {{> item/_shared-partials/source}}
diff --git a/system/templates/item/perk/attributes-tab.hbs b/system/templates/item/perk/attributes-tab.hbs deleted file mode 100644 index 7bbc9cd3..00000000 --- a/system/templates/item/perk/attributes-tab.hbs +++ /dev/null @@ -1,50 +0,0 @@ -
- -
- - -
-
- - - - - - - -
-
-
- -
- - - -
- -
diff --git a/system/templates/item/perk/attributes.hbs b/system/templates/item/perk/attributes.hbs new file mode 100644 index 00000000..8d41a931 --- /dev/null +++ b/system/templates/item/perk/attributes.hbs @@ -0,0 +1,24 @@ +
+ {{#each FALLOUT.ATTRIBUTES as |attribute key|}} + {{> specialAttribute + attribute=(lookup ../system.requirements.attributes key) + key=key + }} + {{/each}} +
+ +{{#*inline "specialAttribute"}} +
+
+ {{subString key 0 1}} +
+
+ +
+
+{{/inline}} diff --git a/system/templates/item/perk/requirements-tab.hbs b/system/templates/item/perk/requirements-tab.hbs new file mode 100644 index 00000000..cfc1ec68 --- /dev/null +++ b/system/templates/item/perk/requirements-tab.hbs @@ -0,0 +1,80 @@ +
+ + {{> item/perk/attributes}} + +
+
+
+ + +
+ +
+
+ + {{#if (gt system.rank.max 1)}} +
+
+ + + +
+
+ {{/if}} +
+ + +
+
+ + +
+
+ + + + + + + +
+
+
+
+
+ +
From ea49b55499c9a3853cf70252f8b6961a56bb8f84 Mon Sep 17 00:00:00 2001 From: QckSilverDragon Date: Thu, 5 Dec 2024 00:04:57 -0600 Subject: [PATCH 02/11] Expanding perk requirements --- i18n/en.yaml | 8 + system/src/templates.mjs | 3 +- system/template.json | 33 +++- system/templates/item/perk-sheet.hbs | 10 +- system/templates/item/perk/attributes-tab.hbs | 50 ------- system/templates/item/perk/attributes.hbs | 24 +++ .../templates/item/perk/requirements-tab.hbs | 141 ++++++++++++++++++ 7 files changed, 212 insertions(+), 57 deletions(-) delete mode 100644 system/templates/item/perk/attributes-tab.hbs create mode 100644 system/templates/item/perk/attributes.hbs create mode 100644 system/templates/item/perk/requirements-tab.hbs diff --git a/i18n/en.yaml b/i18n/en.yaml index 1b938e44..9ef0fb29 100644 --- a/i18n/en.yaml +++ b/i18n/en.yaml @@ -215,6 +215,13 @@ FALLOUT.Item.Origin.Traits.label: Origin Traits FALLOUT.Item.Origin.Traits.prompt: Select Trait... FALLOUT.Item.PowerArmor.Attach: Attach FALLOUT.Item.PowerArmor.Attached: Attached +FALLOUT.Item.Perk.legacy: Legacy Requirements +FALLOUT.Item.Perk.not_ghoul: Not a Ghoul +FALLOUT.Item.Perk.not_human: Not a Human +FALLOUT.Item.Perk.not_radiation_immune: Not Immune to Radiation +FALLOUT.Item.Perk.not_robot: Not a Robot +FALLOUT.Item.Perk.not_supermutant: Not a Supermutant +FALLOUT.Item.Perk.Warning.legacy: This is the original requirments info. Will be removed at a later update. FALLOUT.Item.PowerArmor.AttachedToFrame: Attached to Frame FALLOUT.Item.PowerArmor.Frame: Frame FALLOUT.Item.PowerArmor.IsFrame: Is Frame @@ -465,6 +472,7 @@ FALLOUT.TEMPLATES.Junk: Junk FALLOUT.TEMPLATES.kgs: kg FALLOUT.TEMPLATES.lbs: lb FALLOUT.TEMPLATES.Learned: Learned +FALLOUT.TEMPLATES.LevelIncrease: Level Increase FALLOUT.TEMPLATES.LOCATIONS_INJURIES: LOCATIONS & INJURIES FALLOUT.TEMPLATES.Locations: Locations FALLOUT.TEMPLATES.Luck: Luck diff --git a/system/src/templates.mjs b/system/src/templates.mjs index 0c0afd95..b9ad617f 100644 --- a/system/src/templates.mjs +++ b/system/src/templates.mjs @@ -137,7 +137,8 @@ export default async function preloadHandlebarsTemplates() { "systems/fallout/templates/item/miscellany/attributes-tab.hbs", "systems/fallout/templates/item/object_or_structure/attributes-tab.hbs", "systems/fallout/templates/item/origin/attributes-tab.hbs", - "systems/fallout/templates/item/perk/attributes-tab.hbs", + "systems/fallout/templates/item/perk/requirements-tab.hbs", + "systems/fallout/templates/item/perk/attributes.hbs", "systems/fallout/templates/item/robot_armor/attributes-tab.hbs", "systems/fallout/templates/item/robot_mod/attributes-tab.hbs", "systems/fallout/templates/item/skill/attributes-tab.hbs", diff --git a/system/template.json b/system/template.json index 591344d6..c93707dc 100644 --- a/system/template.json +++ b/system/template.json @@ -1142,7 +1142,38 @@ "max": 1, "value": 0 }, - "requirements": "", + "requirements": { + "legacy": "", + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "noCompanion": false, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "templates": [ "base" ] diff --git a/system/templates/item/perk-sheet.hbs b/system/templates/item/perk-sheet.hbs index f3073d87..d0104be8 100644 --- a/system/templates/item/perk-sheet.hbs +++ b/system/templates/item/perk-sheet.hbs @@ -3,14 +3,14 @@ {{> item/_shared-partials/header}}
- {{> item/perk/attributes-tab}} {{> item/_shared-partials/description-tab}} + {{> item/perk/requirements-tab}} {{> item/_shared-partials/effects-tab}} {{> item/_shared-partials/source}}
diff --git a/system/templates/item/perk/attributes-tab.hbs b/system/templates/item/perk/attributes-tab.hbs deleted file mode 100644 index 7bbc9cd3..00000000 --- a/system/templates/item/perk/attributes-tab.hbs +++ /dev/null @@ -1,50 +0,0 @@ -
- -
- - -
-
- - - - - - - -
-
-
- -
- - - -
- -
diff --git a/system/templates/item/perk/attributes.hbs b/system/templates/item/perk/attributes.hbs new file mode 100644 index 00000000..8d41a931 --- /dev/null +++ b/system/templates/item/perk/attributes.hbs @@ -0,0 +1,24 @@ +
+ {{#each FALLOUT.ATTRIBUTES as |attribute key|}} + {{> specialAttribute + attribute=(lookup ../system.requirements.attributes key) + key=key + }} + {{/each}} +
+ +{{#*inline "specialAttribute"}} +
+
+ {{subString key 0 1}} +
+
+ +
+
+{{/inline}} diff --git a/system/templates/item/perk/requirements-tab.hbs b/system/templates/item/perk/requirements-tab.hbs new file mode 100644 index 00000000..8fb338a7 --- /dev/null +++ b/system/templates/item/perk/requirements-tab.hbs @@ -0,0 +1,141 @@ +
+ + {{> item/perk/attributes}} + +
+
+
+ + +
+ +
+
+ + {{#if (gt system.rank.max 1)}} +
+ + +
+ +
+
+ {{/if}} + +
+ + +
+
+ + + + + + + +
+
+
+
+ + +
+
+ + + +
+ +
+ + + +
+ +
+ + + +
+ +
+ + + +
+ +
+ + + +
+
+
+ +
+ + + +
+
From f8e3124de953a318993d1467a2c12d7fec6139ac Mon Sep 17 00:00:00 2001 From: QckSilverDragon Date: Tue, 10 Dec 2024 23:35:08 -0600 Subject: [PATCH 03/11] mostly complete. --- i18n/en.yaml | 14 ++-- system/src/handlebars.mjs | 54 ++++++++++++++- system/src/templates.mjs | 1 + system/template.json | 22 +++--- system/templates/item/perk-sheet.hbs | 2 +- .../templates/item/perk/description-tab.hbs | 62 +++++++++++++++++ .../templates/item/perk/requirements-tab.hbs | 69 +++++++------------ 7 files changed, 160 insertions(+), 64 deletions(-) create mode 100644 system/templates/item/perk/description-tab.hbs diff --git a/i18n/en.yaml b/i18n/en.yaml index 9ef0fb29..571ddd31 100644 --- a/i18n/en.yaml +++ b/i18n/en.yaml @@ -215,12 +215,15 @@ FALLOUT.Item.Origin.Traits.label: Origin Traits FALLOUT.Item.Origin.Traits.prompt: Select Trait... FALLOUT.Item.PowerArmor.Attach: Attach FALLOUT.Item.PowerArmor.Attached: Attached +FALLOUT.Item.Perk.isCompanion: Is a Companion FALLOUT.Item.Perk.legacy: Legacy Requirements -FALLOUT.Item.Perk.not_ghoul: Not a Ghoul -FALLOUT.Item.Perk.not_human: Not a Human -FALLOUT.Item.Perk.not_radiation_immune: Not Immune to Radiation -FALLOUT.Item.Perk.not_robot: Not a Robot -FALLOUT.Item.Perk.not_supermutant: Not a Supermutant +FALLOUT.Item.Perk.level: Level +FALLOUT.Item.Perk.levelIncrease: Level Increase +FALLOUT.Item.Perk.notGhoul: Not a Ghoul +FALLOUT.Item.Perk.notHuman: Not a Human +FALLOUT.Item.Perk.notRadiationImmune: Not Immune to Radiation +FALLOUT.Item.Perk.notRobot: Not a Robot +FALLOUT.Item.Perk.notSupermutant: Not a Supermutant FALLOUT.Item.Perk.Warning.legacy: This is the original requirments info. Will be removed at a later update. FALLOUT.Item.PowerArmor.AttachedToFrame: Attached to Frame FALLOUT.Item.PowerArmor.Frame: Frame @@ -472,7 +475,6 @@ FALLOUT.TEMPLATES.Junk: Junk FALLOUT.TEMPLATES.kgs: kg FALLOUT.TEMPLATES.lbs: lb FALLOUT.TEMPLATES.Learned: Learned -FALLOUT.TEMPLATES.LevelIncrease: Level Increase FALLOUT.TEMPLATES.LOCATIONS_INJURIES: LOCATIONS & INJURIES FALLOUT.TEMPLATES.Locations: Locations FALLOUT.TEMPLATES.Luck: Luck diff --git a/system/src/handlebars.mjs b/system/src/handlebars.mjs index 0cfad730..02a0e650 100644 --- a/system/src/handlebars.mjs +++ b/system/src/handlebars.mjs @@ -66,6 +66,55 @@ export default function registerHandlebarsHelpers() { return listString; }); + Handlebars.registerHelper("listPerkRequirements", function(requirements) { + const elements = []; + + for (const key in requirements) { + const resultHtml = document.createElement("span"); + if (key === "attributes") { + for (const att in requirements[key]) { + if (requirements[key][att].value <= 0) continue; + + let attAbbrName = game.i18n.localize( + `FALLOUT.AbilityAbbr.${att}` + ); + + + resultHtml.dataset.key = key; + resultHtml.innerHTML = `${attAbbrName.toUpperCase()} ${requirements[key][att].value}`; + elements.push(resultHtml.outerHTML); + } + } + else { + const requirement = requirements[key]; + + if (!requirement) continue; + + let requirementName = game.i18n.localize( + `FALLOUT.Item.Perk.${key}` + ); + + if ((typeof requirement) === "number" && requirement >= 1) requirementName += ` ${requirement}`; + + + resultHtml.dataset.key = key; + resultHtml.innerHTML = requirementName; + elements.push(resultHtml.outerHTML); + } + } + + let listString = ""; + + if (elements.length > 0) { + listString = elements.join(", "); + } + else { + listString = "—"; + } + + return listString; + }); + Handlebars.registerHelper("listWeaponQualities", function(qualities) { const elements = []; @@ -102,6 +151,7 @@ export default function registerHandlebarsHelpers() { return listString; }); + Handlebars.registerHelper("toLowerCase", function(str) { return str.toLowerCase(); }); @@ -203,7 +253,7 @@ export default function registerHandlebarsHelpers() { // }); Handlebars.registerHelper("isWeaponUsingMeleeBonus", function(weapon, actor) { - if ((weapon.system.weaponType === "unarmed" || weapon.system.weaponType === "meleeWeapons") && actor?.type !== "creature") { + if ((weapon.system.weaponType === "unarmed" || weapon.system.weaponType === "meleeWeapons") && actor?.type !== "creature") { return true; } else { @@ -238,7 +288,7 @@ export default function registerHandlebarsHelpers() { }); Handlebars.registerHelper("enrichHtmlHelper", function(rawText) { - return TextEditor.enrichHTML(rawText, {async: false}); + return TextEditor.enrichHTML(rawText, { async: false }); }); // coloring input fields diff --git a/system/src/templates.mjs b/system/src/templates.mjs index b9ad617f..b5fdf934 100644 --- a/system/src/templates.mjs +++ b/system/src/templates.mjs @@ -137,6 +137,7 @@ export default async function preloadHandlebarsTemplates() { "systems/fallout/templates/item/miscellany/attributes-tab.hbs", "systems/fallout/templates/item/object_or_structure/attributes-tab.hbs", "systems/fallout/templates/item/origin/attributes-tab.hbs", + "systems/fallout/templates/item/perk/description-tab.hbs", "systems/fallout/templates/item/perk/requirements-tab.hbs", "systems/fallout/templates/item/perk/attributes.hbs", "systems/fallout/templates/item/robot_armor/attributes-tab.hbs", diff --git a/system/template.json b/system/template.json index c93707dc..d46874e2 100644 --- a/system/template.json +++ b/system/template.json @@ -1136,43 +1136,43 @@ "skills": "" }, "perk": { + "isCompanion": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, "requirements": { - "legacy": "", + "level": 1, + "levelIncrease": 0, "attributes": { - "agi": { + "str": { "value": 0 }, - "cha": { + "per": { "value": 0 }, "end": { "value": 0 }, - "int": { + "cha": { "value": 0 }, - "luc": { + "int": { "value": 0 }, - "per": { + "agi": { "value": 0 }, - "str": { + "luc": { "value": 0 } }, - "noCompanion": false, "notGhoul": false, "notHuman": false, "notRadiationImmune": false, "notRobot": false, - "notSupermutant": false + "notSupermutant": false, + "legacy": "" }, "templates": [ "base" diff --git a/system/templates/item/perk-sheet.hbs b/system/templates/item/perk-sheet.hbs index d0104be8..e2bd6fd1 100644 --- a/system/templates/item/perk-sheet.hbs +++ b/system/templates/item/perk-sheet.hbs @@ -21,7 +21,7 @@
- {{> item/_shared-partials/description-tab}} + {{> item/perk/description-tab}} {{> item/perk/requirements-tab}} {{> item/_shared-partials/effects-tab}} {{> item/_shared-partials/source}} diff --git a/system/templates/item/perk/description-tab.hbs b/system/templates/item/perk/description-tab.hbs new file mode 100644 index 00000000..138b599f --- /dev/null +++ b/system/templates/item/perk/description-tab.hbs @@ -0,0 +1,62 @@ +
+ {{!-- Want to list the perk requirements above the descriptions for easy view. --}} +
+ + + + + + + + + + +
+
+ + + {{localize 'FALLOUT.TEMPLATES.Requirements'}}: + + {{{listPerkRequirements system.requirements}}} + +
+ +
+

{{localize "FALLOUT.TEMPLATES.Description"}}

+ {{ +editor descriptionHTML + button=true + editable=editable + owner=owner + rollData=rollData + target="system.description" + }} +
+
+ + + + + +{{#*inline "specialAttribute"}} +
+
+ {{subString key 0 1}} +
+
+ +
+
+{{/inline}} diff --git a/system/templates/item/perk/requirements-tab.hbs b/system/templates/item/perk/requirements-tab.hbs index f29580b7..07967e6a 100644 --- a/system/templates/item/perk/requirements-tab.hbs +++ b/system/templates/item/perk/requirements-tab.hbs @@ -6,69 +6,38 @@
+ value="{{system.requirements.level}}" />
{{#if (gt system.rank.max 1)}}
- +
+ value="{{system.requirements.levelIncrease}}" />
{{/if}} - -
- - -
-
- - - - - - - -
-
-
+ +
From 27ea0d458770c1adb80a9194f208fe6b1306ddb2 Mon Sep 17 00:00:00 2001 From: Paul Maskelyne Date: Thu, 12 Dec 2024 12:33:21 +0000 Subject: [PATCH 04/11] update pack schema after migrating old requirements --- ...out_rpg__quickstart__QVmdwFQgCjY85CTc.json | 508 ++++++++++++++++++ ...e_nation_by_storm____beJfGkUq386Kw4Sj.json | 33 ++ .../_la_fantoma___wUoc5IDZQ0ye1TDw.json | 33 ++ .../action_boy___girl__cCrLiQ8zNWW3LAC6.json | 33 ++ ...adamantium_skeleton__tdm3ETgFN8PA7ZE0.json | 37 +- .../adrenalin_rush__9KkBBnH3N7yhEeMB.json | 37 +- ...ce_from_married_men__B5AHVLoXVF8buanM.json | 33 ++ ...erience_to_remember__4iTCNKydcsh3PHwY.json | 33 ++ .../animal_friend__IVL33DFzxdmpj143.json | 37 +- .../aquaboy___aquagirl__z1OueIn6GiTrDVw7.json | 37 +- .../perks.db/armorer__EQjZHUxYinodOU6G.json | 37 +- ...art_of_the_tomahawk__I7DFjAhnEzDZmdL7.json | 33 ++ ...ack_of_the_fishmen___9uBD2OLMA2YtE3ST.json | 33 ++ ...k_of_the_metal_men___NNhKS3XzGuAnXNmq.json | 33 ++ ...ose_pesky_gun_laws___Zl8Mt7ll7IqbgFq2.json | 33 ++ .../perks.db/awareness__JHMLajHU7sioJT9v.json | 37 +- .../perks.db/barbarian__j5SfukNzX12lRmwB.json | 37 +- .../perks.db/basher__A0UTRQ94MdLa3v2i.json | 37 +- ...ofing_your_campsite__5tgqF87DaXrrz59x.json | 33 ++ .../better_criticals__Xrh0LthwODfn0McZ.json | 37 +- ...are_the_man_handler__BvqY6Zk4bfPSpIj7.json | 33 ++ .../big_leagues__P5eJ7NOJMV8r9cHo.json | 37 +- ...widow___lady_killer__3bfAQcNKzjD0aOJ8.json | 37 +- .../blacksmith__422BCVbfcp5q8M8I.json | 37 +- .../perks.db/blitz__U8yM23ldUGYYtta1.json | 37 +- .../blood_on_the_harp__56snTc6VYoTJqCMi.json | 33 ++ .../bloody_mess__jhef5zecOk3vQhGy.json | 37 +- ...ive_than_lockpicks___Q6MhXT1qvcpX6fxU.json | 33 ++ .../boxing_times__9rp4u6tgFbJk9GRT.json | 33 ++ .../perks.db/can_do___xTNbBLx2nxvf1mIE.json | 37 +- .../cap_collector__BKTkXhJHSgVjdsKT.json | 37 +- ...bbits_of_appalachia__wwIthL6FW1dIq1MU.json | 33 ++ .../cautious_nature__xwXPepqdLzr8uPMX.json | 37 +- .../center_mass__Nc22rM5RB37dOPcO.json | 37 +- .../chem_resistant__49AOicQFjlfIKNUe.json | 37 +- .../perks.db/chemist__HUmwhrS7v9g31nOG.json | 37 +- ...ometh_the_trickster__MKt5lgPvnlrnMV9S.json | 33 ++ .../perks.db/commando__H6W082nVJtDeSthQ.json | 37 +- ..._kazi_vs__manta_man__qItV5QGk0sN0md6p.json | 33 ++ .../comprehension__51j1AqLl4zHqoVsN.json | 37 +- .../concentrated_fire__YLA9JETKbkkHd3uz.json | 37 +- ...s_of_a_housebreaker__PCA8zoHuaLjnsF7g.json | 33 ++ .../coupon_spectacular__grJRadyKsz8Eu0cJ.json | 33 ++ ...urse_of_the_burned___Cx5ysG2Z0XPE6DZn.json | 33 ++ .../daring_nature__VTtncpMUhGBxjmlQ.json | 37 +- .../deadly_lasers___YeQmWe6K2QMAEaep.json | 33 ++ .../demolition_expert__ureiid51WVHnCcSG.json | 37 +- ...slaves__demon_sands__FHMZ8ohO5uegkBHL.json | 33 ++ .../perks.db/dodger__5r60cyfjkvkYlTvs.json | 37 +- .../perks.db/dogmeat__6VAkIp310dSGvCj7.json | 37 +- .../down_home_cookin___1aIYFwFQGic2zHjK.json | 33 ++ ..._of_de_capitalists___35g6izwF0LhTPGMO.json | 33 ++ .../duck_and_cover___gD1wycvvp1ivtXdY.json | 33 ++ ..._war_maiden_of_mars__OIVq6l91X8x6r6zi.json | 33 ++ .../entomologist__Vk0RIc9X6HaypmwJ.json | 37 +- .../farming_the_wastes__TmIh9ecBP1YvDwdF.json | 33 ++ .../fast_metabolism__T3vX1fP7cSG5v0zh.json | 37 +- .../faster_healing__TTCwoZV141ZGuMjs.json | 37 +- .../fatherless_cur___sWkveVPjKk45QqwF.json | 33 ++ ...istling_in_the_dark__cPjofC2nJegzoPXS.json | 33 ++ ...02_urban_camouflage__AVB1RZC2w05dkUbZ.json | 33 ++ ...epaint_fundamentals__vYiPt2jg7x1f0NTl.json | 33 ++ ..._you_re_looking_for__g6qVETrGj3ide6hr.json | 33 ++ ..._05_who_goes_there___lZ0REnexDQeH2cmK.json | 33 ++ ...board__sudden_death__DHdPahzQ9HMZ0FXb.json | 33 ++ ...p_on_the_communists__5rxzpSKhciVgbmzP.json | 33 ++ ..._camouflage_special__l9jhloiw4Sylv6Y3.json | 33 ++ ...ook_better_in_black__nWVbU3dqMxeoxPoT.json | 33 ++ ..._through_the_tulips__xBewaCbKbQO5BQKp.json | 33 ++ .../perks.db/finesse__DlJVCaT4RLT38Kgs.json | 37 +- .../fixin__things__7gsRBEPt328MaEyI.json | 33 ++ .../fortune_finder__zQpZJuiwAC8Zk9a0.json | 37 +- .../future_of_warfare___PBp0DOgO6fmob9LU.json | 33 ++ ...uture_weapons_today__LJXpGjoI1HYU6Heb.json | 33 ++ ...and_gamma_radiation__kYMZ1knDNl0hLeI8.json | 33 ++ .../get_off_my_lawn__6b46sO6gPyRRziMy.json | 33 ++ .../perks.db/ghost__wC8TgVkF6OhFY9XR.json | 37 +- ...ant_insects_invade___fMq7BDUKGUIZDOEY.json | 33 ++ ...iant_super_weapons___JGsQpE2E1zseUEdM.json | 33 ++ ...rim_reaper_s_sprint__YDRoA6dGjWXy06hf.json | 37 +- ...to_hunting_commies___BoK3Po9WKYHAv4Y9.json | 33 ++ .../perks.db/gun_fu__Nei43KlUxbHLw6MI.json | 37 +- .../perks.db/gun_nut__Ba5yPRdNAvjM5StI.json | 37 +- .../gunslinger__ugnoJLCjVbVsAqOj.json | 37 +- .../perks.db/hacker__NMrJsMFjSLAYtHAU.json | 37 +- ...ardy_as_a_sasquatch__5FSxhtSwphd72BS1.json | 33 ++ .../perks.db/healer__LzDGf5TGlzcOBgFd.json | 37 +- .../perks.db/heave_ho___FLW7Fx5HVaIxuekh.json | 37 +- ...homesteading_horror__6XStNgfUJG92au27.json | 33 ++ .../perks.db/hunter__zB82J3WJ7ld01RYR.json | 37 +- ...nting_in_the_wastes__p8cH2qolrlrnLKIt.json | 33 ++ .../i_married_a_robot__xfBuEJQHYAmds5XG.json | 33 ++ ...f_the_corsair_queen__bzXcVbZZtHhGCcOs.json | 33 ++ .../infiltrator__SihEoKZZ7VgRmxgK.json | 37 +- ...t_repellent_special__qxfqtIIZynyM2qIj.json | 33 ++ .../inspirational__YrVruOKk8Wy2YOc9.json | 37 +- .../intense_training__P3SMmJulZT5OyArI.json | 37 +- .../perks.db/iron_fist__mU5YvUEtBshgRPFD.json | 37 +- ...e_of_the_bat_babies__FgiFIu2LmrckPy5Y.json | 33 ++ ...nktown_jerky_vendor__4uNzMc2WNqMYZEuW.json | 37 +- .../jury_rigging__trdF2qUBRHrj3YNW.json | 37 +- .../laser_commander__VtCwIMtash7XcwxP.json | 37 +- ...acceptable_overkill__nRkIZJRQqkTsqQV7.json | 33 ++ .../lead_belly__wE5dyJKCl7gysWci.json | 37 +- .../life_giver__w1Vn3NXOGw30Hi13.json | 37 +- ..._long_best_friends___SKyP3uQ4CQCcdKZs.json | 33 ++ .../light_step__iMnBN75TTp1DuKzk.json | 37 +- ...s_for_little_ladies__YUHxXpiMFWmEtbXB.json | 33 ++ ..._with_flying_colors__xRA5ktVoyWDHRy8N.json | 33 ++ ...n_the_snows_of_lust__pIGqn3CdOhsyQyhx.json | 33 ++ ...ts_surgical_journal__scI8HRzH0QjDb1bh.json | 33 ++ .../master_thief__nOpsl2puqWzQJT4t.json | 37 +- .../perks.db/medic__fMU0zfQYyhkwZ6Ck.json | 37 +- .../meeting_people__tKQ4oQiQxWoM10p6.json | 33 ++ .../perks.db/meltdown__SFhtHQk4lztiJ8gw.json | 37 +- .../mister_sandman__ycaluMjkY5xApFFl.json | 37 +- .../moving_target__URnrv6ebs1Oqso2m.json | 37 +- ...master_key_exposed___dx2dkCtFBWb5kukV.json | 33 ++ ...mysterious_stranger__EYZgPc9OM7qsPpT1.json | 37 +- .../nerd_rage___gbPgHoavxEEaYC4j.json | 37 +- .../night_person__jqGwYM88awxTPn46.json | 37 +- ...tmare_in_the_garden__C2pRfk15zpFV3sgG.json | 33 ++ .../perks.db/ninja__82n08gxPWsoaLlvK.json | 37 +- .../nuclear_physicist__zlPvWlAVWezHiFXX.json | 37 +- .../nuke_the_man___H27K9ike953ZIyRl.json | 33 ++ ...k_in_5_seconds_flat__mrgLpKa5RkDmIWHq.json | 33 ++ .../pain_train__TzAVKNEtdWWgfx4u.json | 37 +- .../paralyzing_palm__Epn0E2yMAxTmSOFX.json | 37 +- ...ty_boy___party_girl__iDaMlrcxl6kEm3Ex.json | 37 +- .../pathfinder__RhITTHDy13MufCZy.json | 37 +- .../pharma_farma__E3vqYT7JvmyDeFyU.json | 37 +- .../pickpocket__e4HPClvz4fA06tUc.json | 37 +- .../piercing_strike__H6x4BnrUSmI33dwZ.json | 37 +- ..._weapon_of_tomorrow__SbayR4I8JCyymq0a.json | 33 ++ ...programmer_s_digest__xmOWzjBpDXRfPa9Y.json | 33 ++ .../pyromaniac__aNO3ZBQmBGS9A94C.json | 37 +- .../quick_draw__Xz1V9etWzTtwt5x5.json | 37 +- .../quick_hands__2UGzU0qmtozi4QZK.json | 37 +- .../rad_resistance__TFJbnmRbE7cisziV.json | 37 +- .../perks.db/refractor__myJS8tB5FHk3Jo65.json | 37 +- .../perks.db/ricochet__E6eCO6Hq6gb4KGmQ.json | 37 +- .../perks.db/rifleman__RkftnkHGKVnz6URN.json | 37 +- ...ise_of_the_mutants___Gn880XN7Auhdop6S.json | 33 ++ .../robotics_expert__GiPKNxmrkWA2k76W.json | 37 +- ...cience_for_toddlers__3gc78PRC1se8qefU.json | 33 ++ .../perks.db/science___UzRkuAJkvYqK8jrl.json | 37 +- .../science_gone_mad___fDu6KU5u17sqA1hf.json | 33 ++ .../perks.db/scoundrel__j4XUYfEZwmvkfXBe.json | 37 +- .../perks.db/scrapper__dIQkAZGEzdR8j2BB.json | 37 +- .../perks.db/scrounger__zXQUHfk3g9d7WDG1.json | 37 +- ...elf_defense_secrets__yXOy24286aAjL5ID.json | 33 ++ .../shotgun_surgeon__SfcMrqZU78wIJQ0r.json | 37 +- .../size_matters__fGZ6h4VtddiXvpZ3.json | 37 +- .../perks.db/skilled__PtWvAVSdwEPjeRb3.json | 37 +- .../perks.db/slayer__6U2ulr6F0lUbJoYl.json | 37 +- .../smooth_talker__fhBw3zhOo6EuZy2j.json | 37 +- .../perks.db/snakeater__Y7s5hBuYxnIYz4T4.json | 37 +- .../perks.db/sniper__cJGae8CyPIfp6tj7.json | 37 +- .../solar_powered__FXbX2ktBJkb6uFIG.json | 37 +- .../steady_aim__qrXcBKc5MX1lTmKa.json | 37 +- ...eet_guns_of_detroit__iQofqWEFwGokog1G.json | 33 ++ .../strong_back__6UWfRLqNydpXobqM.json | 37 +- ...ounded_by_the_dead___pk42jPbAVMosmA0k.json | 33 ++ .../perks.db/tag___4QXLYHaB9WGmGVY1.json | 37 +- ...ake_aim__army_style__oRB1ZIvzhsUMElSc.json | 33 ++ ...nktown_jerky_vendor__Qf4PBCvZdSvPAeX7.json | 33 ++ ...talk_yourself_sober__Jip3JdMpV9HTHujn.json | 33 ++ ...terrifying_presence__CaZiVRLhAUoxj0en.json | 37 +- ...a_squirrel_massacre__kQD85MOcz1B4KHsV.json | 33 ++ ...radiation_poisoning__BSi2qWkBGOJKFFED.json | 33 ++ ..._future_of_hunting___kBFXBzcatoT884Je.json | 33 ++ ...h_of_harper_s_ferry__3caIOATNwBm6EPuh.json | 33 ++ ...f_the_virgin_eaters__KEpm4gH8RvMjhpoO.json | 33 ++ ..._russian_s_revenge___LSUSRTgMyqfN1EQx.json | 33 ++ ...t_doomsday_device____zZg9mSTuufYGzSib.json | 33 ++ ...e_ohio_river_hermit__7vvLcpVth2gMnB7o.json | 33 ++ ...e_secretary_charmer__disfFslU7fhYTIlC.json | 33 ++ ...the_starlet_sniper___x6hpmUJFDTD3Iw82.json | 33 ++ ...ay_s_super_soldiers__eTkUS79PttpiHVm0.json | 33 ++ .../perks.db/toughness__OL6ocnHhOZW4mxns.json | 37 +- ...the_pterror_dactyls__VrMFCFltA2MKaCcH.json | 33 ++ .../trim_the_fat___siFrRn6TjSmxGKas.json | 33 ++ ...true_police_stories__DC6xyEVANOUPyy1I.json | 33 ++ ..._army_goes_to_space__lkAJKVOfU1DfjLU9.json | 33 ++ ..._the_ux_ron_galaxy___Lf2VvWWVug9jj5Ly.json | 33 ++ ...aerobics_for_ghouls__xXZcXGsZY6g4QkTl.json | 33 ++ ..._is_plasma__anyway___MsNkQ2J8T75NE3uJ.json | 33 ++ ...at_sorcery_is_this___1KDDs6qPimKnwL9r.json | 33 ++ ...pable_grog_na_rok____7heg2KN3JXIllHT2.json | 33 ++ ...ots_rule_the_world___9LAlQMlnpZ2lYqKV.json | 33 ++ .../10mm_auto_pistol__bKHsUZI6Z6xrAEHg.json | 4 + .../10mm_pistol__mRB3W7wrHDbWhb9i.json | 4 + .../_44_pistol__wqNw0xItJ29W24sm.json | 4 + ...uminum_baseball_bat__mmmxQfbZxwNWA45f.json | 4 + .../assault_rifle__ZN2h6VGlcHQKzveB.json | 4 + .../baseball_bat__d0qmxHsuKN14qmua.json | 4 + .../baseball_grenade__vXTMQj76ShuwQXkd.json | 4 + .../weapons.db/baton__jZstb7cuVXCJXPnj.json | 4 + .../weapons.db/board__CKolMtDxOzC8QdSD.json | 4 + .../bottlecap_mine__4YCB81rMWJSZcgRI.json | 4 + .../boxing_glove__DnWvHyfz74QnnnGv.json | 4 + .../buzz_saw__QYgc3wH8JS3YGJ34.json | 4 + .../combat_knife__6xbkky55saFOXZSk.json | 4 + .../combat_rifle__qRc6hN6zHdrsZ0nd.json | 4 + .../combat_shotgun__CUlCBsWk1qipT1Ff.json | 4 + .../deathclaw_gauntlet__VBDdPeRHrRcaZhGn.json | 4 + ...uble_barrel_shotgun__tNyHslvLL11qSlhc.json | 4 + .../weapons.db/fat_man__5gIryFE7WITrmSvY.json | 4 + .../weapons.db/flamer__75n1EFSJw8xxti6s.json | 4 + .../weapons.db/flamer__q3RjTNEYvfHVBzVk.json | 4 + .../flare_gun__nZ7XeE2gQy2EEgWH.json | 4 + .../frag_grenade__3CZ7jbXV7I5z757E.json | 4 + .../frag_mine__Ai4EeSDZl48zoJoL.json | 4 + .../gamma_gun__ECuihimhpmedOziD.json | 4 + .../gatling_laser__uyx46lw2PXh08m1P.json | 4 + .../gauss_rifle__Ee4TwfZnYmCF8CDE.json | 4 + .../gun_bash__1h___tWhlezJ5cgDZ7SQO.json | 4 + .../gun_bash__pSshPAISbTrdooAk.json | 4 + .../handy_rock__OF1614SY9gYdGnjI.json | 4 + .../heavy_incinerator__ccLXYRUueArLgLst.json | 4 + .../hunting_rifle__bpbgoX9mNr23pFHR.json | 4 + .../institute_laser__fJI5l0xbl26ylvTI.json | 4 + .../weapons.db/javelin__iodz4xm3QDXNuhxf.json | 4 + .../junk_jet__CyxEyS2RLOuMLMa1.json | 4 + .../knuckles__yB39echbNG7KpWny.json | 4 + .../laser_emitter__ppzmY6xo2f66TmMC.json | 4 + .../laser_gun__NRN7soVtcTwCRqaL.json | 4 + .../laser_musket__o1QbQfhTLFphrxkB.json | 4 + .../lead_pipe__Xq6k6PuQQbneO6w0.json | 4 + .../weapons.db/machete__uGNGa0KBcJq3YFvc.json | 4 + .../weapons.db/minigun__5TAOMd3GGpapiM6Q.json | 4 + .../missile_launcher__s3RYAqoL6U3CVVeb.json | 4 + .../molotov_cocktail__NXjKSH1aRmZkq5PJ.json | 4 + .../nuka_grenade__As1o8LGO3CIaY2mD.json | 4 + .../nuke_mine__9wxUVAnr3YsD3Uol.json | 4 + .../weapons.db/pincer__VFRfwbor9PwEKdRZ.json | 4 + .../pipe_bolt_action__obRp9CZJJ6liIl49.json | 4 + .../pipe_gun__PiFmAFrgnIJqwkNw.json | 4 + .../pipe_revolver__ldIbeCgUhfS2AVHV.json | 4 + .../pipe_wrench__ehsLCAMtk39LFHVa.json | 4 + .../plasma_grenade__tedK8NNLvjIQf4wm.json | 4 + .../plasma_gun__M4xWjxuABTWOefg2.json | 4 + .../plasma_mine__AjqE0fT244w92onq.json | 4 + .../pool_cue__7lXJbtwhMJwqp40D.json | 4 + .../power_fist__aIMdoy67zhbaYcQG.json | 4 + .../pulse_grenade__LCUp8GGg6nyJ8wa9.json | 4 + .../pulse_mine__eILamwepNIAhOY0J.json | 4 + .../railway_rifle__iUh6c0EcJfZil9cZ.json | 4 + .../weapons.db/ripper__EktSYEw86GEcqHeE.json | 4 + .../rolling_pin__66p1lQmwPXZINPKn.json | 4 + .../shishkebab__8RVrftHzFootwBD5.json | 4 + .../sledgehammer__yrLghAxk6uynbFaq.json | 4 + .../submachine_gun__244Kf3MVUhEQQGsw.json | 4 + .../super_sledge__ADp33L4FN7QcbCJy.json | 4 + .../switchblade__ijD12AylGdTDshsy.json | 4 + .../weapons.db/sword__M9xO5ZKoGsqbPxWr.json | 4 + .../syringer__3wCThKbCsMgAdrSg.json | 4 + .../throwing_knives__61inErKDohHmHoAV.json | 4 + .../tire_iron__Pdmfy50DEM5oB9js.json | 4 + .../tomahawk__pYMfuytsOCR3mxW8.json | 4 + .../unarmed_strike__QuYxQccl5EHdXTcT.json | 4 + .../walking_cane__1bgEBl5eFgkcDxmL.json | 4 + 262 files changed, 7219 insertions(+), 186 deletions(-) diff --git a/data/packs/fallout_adventures.db/fallout_rpg__quickstart__QVmdwFQgCjY85CTc.json b/data/packs/fallout_adventures.db/fallout_rpg__quickstart__QVmdwFQgCjY85CTc.json index 000154e4..d72333b4 100644 --- a/data/packs/fallout_adventures.db/fallout_rpg__quickstart__QVmdwFQgCjY85CTc.json +++ b/data/packs/fallout_adventures.db/fallout_rpg__quickstart__QVmdwFQgCjY85CTc.json @@ -119,6 +119,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false @@ -337,6 +341,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": true @@ -555,6 +563,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false @@ -1334,6 +1346,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false @@ -1738,6 +1754,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false @@ -2332,6 +2352,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false @@ -3084,6 +3108,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false @@ -3302,6 +3330,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false @@ -3520,6 +3552,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": true @@ -4329,6 +4365,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false @@ -4733,6 +4773,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false @@ -5325,6 +5369,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false @@ -6664,6 +6712,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false @@ -6882,6 +6934,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false @@ -7100,6 +7156,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false @@ -7541,6 +7601,39 @@ "value": 1 }, "requirements": "CHA 7", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" @@ -7579,6 +7672,39 @@ "value": 0 }, "requirements": "LCK 7", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" @@ -8028,6 +8154,14 @@ "poison": 0, "radiation": 0 }, + "skill": { + "tags": { + "additionalTags": [ + ], + "bonus": 0, + "max": 3 + } + }, "trait": "" }, "type": "character" @@ -8725,6 +8859,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false @@ -8943,6 +9081,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false @@ -9161,6 +9303,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false @@ -9853,6 +9999,39 @@ "value": 1 }, "requirements": "INT 8", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" @@ -9891,6 +10070,39 @@ "value": 0 }, "requirements": "Pip-Boy", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" @@ -10200,6 +10412,14 @@ "poison": 0, "radiation": 0 }, + "skill": { + "tags": { + "additionalTags": [ + ], + "bonus": 0, + "max": 3 + } + }, "trait": "" }, "type": "character" @@ -10866,6 +11086,39 @@ "value": 1 }, "requirements": "END 6, not a robot", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" @@ -10966,6 +11219,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false @@ -11184,6 +11441,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false @@ -11402,6 +11663,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": true @@ -11663,6 +11928,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false @@ -12517,6 +12786,14 @@ "poison": 0, "radiation": 0 }, + "skill": { + "tags": { + "additionalTags": [ + ], + "bonus": 0, + "max": 3 + } + }, "trait": "" }, "type": "character" @@ -13214,6 +13491,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false @@ -13434,6 +13715,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false @@ -13665,6 +13950,39 @@ "value": 1 }, "requirements": "INT 7, Level 1+", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" @@ -14386,6 +14704,14 @@ "poison": 0, "radiation": 0 }, + "skill": { + "tags": { + "additionalTags": [ + ], + "bonus": 0, + "max": 3 + } + }, "trait": "" }, "type": "character" @@ -15083,6 +15409,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false @@ -15301,6 +15631,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false @@ -15519,6 +15853,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false @@ -15737,6 +16075,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false @@ -16191,6 +16533,39 @@ "value": 1 }, "requirements": "STR 8", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" @@ -16498,6 +16873,14 @@ "poison": 0, "radiation": 0 }, + "skill": { + "tags": { + "additionalTags": [ + ], + "bonus": 0, + "max": 3 + } + }, "trait": "" }, "type": "robot" @@ -17164,6 +17547,39 @@ "value": 1 }, "requirements": "INT 6", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" @@ -17264,6 +17680,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false @@ -17482,6 +17902,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false @@ -17700,6 +18124,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false @@ -17920,6 +18348,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false @@ -18138,6 +18570,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false @@ -18933,6 +19369,14 @@ "poison": 0, "radiation": 0 }, + "skill": { + "tags": { + "additionalTags": [ + ], + "bonus": 0, + "max": 3 + } + }, "trait": "" }, "type": "character" @@ -19108,6 +19552,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false @@ -19705,6 +20153,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false @@ -20453,6 +20905,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false @@ -21171,6 +21627,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false @@ -21391,6 +21851,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false @@ -22398,6 +22862,14 @@ "action": "unnasigned", "uuid": "" }, + "skill": { + "tags": { + "additionalTags": [ + ], + "bonus": 0, + "max": 3 + } + }, "trait": "", "wealth": "1" }, @@ -22520,6 +22992,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false @@ -23273,6 +23749,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false @@ -23491,6 +23971,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false @@ -23709,6 +24193,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": true @@ -23927,6 +24415,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": true @@ -24968,6 +25460,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false @@ -25287,6 +25783,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false @@ -25763,6 +26263,14 @@ "action": "unnasigned", "uuid": "" }, + "skill": { + "tags": { + "additionalTags": [ + ], + "bonus": 0, + "max": 3 + } + }, "trait": "", "wealth": "1" }, diff --git a/data/packs/perks.db/10_number_1_hits____rock_o_bot_takes_the_nation_by_storm____beJfGkUq386Kw4Sj.json b/data/packs/perks.db/10_number_1_hits____rock_o_bot_takes_the_nation_by_storm____beJfGkUq386Kw4Sj.json index 24ecf4a7..67debc21 100644 --- a/data/packs/perks.db/10_number_1_hits____rock_o_bot_takes_the_nation_by_storm____beJfGkUq386Kw4Sj.json +++ b/data/packs/perks.db/10_number_1_hits____rock_o_bot_takes_the_nation_by_storm____beJfGkUq386Kw4Sj.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/_la_fantoma___wUoc5IDZQ0ye1TDw.json b/data/packs/perks.db/_la_fantoma___wUoc5IDZQ0ye1TDw.json index dc7dbb28..4984c72f 100644 --- a/data/packs/perks.db/_la_fantoma___wUoc5IDZQ0ye1TDw.json +++ b/data/packs/perks.db/_la_fantoma___wUoc5IDZQ0ye1TDw.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/action_boy___girl__cCrLiQ8zNWW3LAC6.json b/data/packs/perks.db/action_boy___girl__cCrLiQ8zNWW3LAC6.json index b95c8866..6e542b12 100644 --- a/data/packs/perks.db/action_boy___girl__cCrLiQ8zNWW3LAC6.json +++ b/data/packs/perks.db/action_boy___girl__cCrLiQ8zNWW3LAC6.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/adamantium_skeleton__tdm3ETgFN8PA7ZE0.json b/data/packs/perks.db/adamantium_skeleton__tdm3ETgFN8PA7ZE0.json index f5cb8de8..98d4e9cc 100644 --- a/data/packs/perks.db/adamantium_skeleton__tdm3ETgFN8PA7ZE0.json +++ b/data/packs/perks.db/adamantium_skeleton__tdm3ETgFN8PA7ZE0.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Adamantium Skeleton", "system": { - "description": "

When you suffer damage, the amount of damage needed to inflict a critical hit on you increases by your rank in this perk. For example, if you have one rank in this perk, you suffer a critical hit from 6 or more damage, rather than 5 or more. Each time you take this perk, the level requirement increases by 3.

", + "description": "

When you suffer damage, the amount of damage needed to inflict a critical hit on you increases by your rank in this perk. For example, if you have one rank in this perk, you suffer a critical hit from 6 or more damage, rather than 5 or more. Each time you take this perk, the level requirement increases by 3.

\n

Requirements: END 7, Level 1+

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 3, "value": 0 }, - "requirements": "END 7, Level 1+", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/adrenalin_rush__9KkBBnH3N7yhEeMB.json b/data/packs/perks.db/adrenalin_rush__9KkBBnH3N7yhEeMB.json index 946214d7..6c4c8424 100644 --- a/data/packs/perks.db/adrenalin_rush__9KkBBnH3N7yhEeMB.json +++ b/data/packs/perks.db/adrenalin_rush__9KkBBnH3N7yhEeMB.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Adrenalin Rush", "system": { - "description": "

When your health is below its maximum value, you count your STR score as 10 for all purposes when attempting a STR-based skill test or melee attack.

", + "description": "

When your health is below its maximum value, you count your STR score as 10 for all purposes when attempting a STR-based skill test or melee attack.

\n

Requirements: STR 7

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 1, "value": 0 }, - "requirements": "STR 7", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/advice_from_married_men__B5AHVLoXVF8buanM.json b/data/packs/perks.db/advice_from_married_men__B5AHVLoXVF8buanM.json index 4f20733d..b57114c9 100644 --- a/data/packs/perks.db/advice_from_married_men__B5AHVLoXVF8buanM.json +++ b/data/packs/perks.db/advice_from_married_men__B5AHVLoXVF8buanM.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/an_experience_to_remember__4iTCNKydcsh3PHwY.json b/data/packs/perks.db/an_experience_to_remember__4iTCNKydcsh3PHwY.json index f2b62dc7..cf20e0e0 100644 --- a/data/packs/perks.db/an_experience_to_remember__4iTCNKydcsh3PHwY.json +++ b/data/packs/perks.db/an_experience_to_remember__4iTCNKydcsh3PHwY.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/animal_friend__IVL33DFzxdmpj143.json b/data/packs/perks.db/animal_friend__IVL33DFzxdmpj143.json index c4af40b2..ca483e7b 100644 --- a/data/packs/perks.db/animal_friend__IVL33DFzxdmpj143.json +++ b/data/packs/perks.db/animal_friend__IVL33DFzxdmpj143.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Animal Friend", "system": { - "description": "

At rank 1, whenever a creature NPC with the Mammal, Lizard, or Insect keyword would attack you, roll 1DCD: on any result other than an Effect, the creature chooses not to attack you, although it may still attack another character it can target.

\n

At rank 2, you can attempt a CHA + Survival test with a difficulty of 2 as a major action. If you succeed, the animal treats you as friendly and will attack anyone who attacks you. Mighty and Legendary animals are unaffected by this perk. Each time you take this perk, the level requirement increases by 5.

", + "description": "

At rank 1, whenever a creature NPC with the Mammal, Lizard, or Insect keyword would attack you, roll 1DCD: on any result other than an Effect, the creature chooses not to attack you, although it may still attack another character it can target.

\n

At rank 2, you can attempt a CHA + Survival test with a difficulty of 2 as a major action. If you succeed, the animal treats you as friendly and will attack anyone who attacks you. Mighty and Legendary animals are unaffected by this perk. Each time you take this perk, the level requirement increases by 5.

\n

Requirements: CHA 6, Level 1+

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 2, "value": 0 }, - "requirements": "CHA 6, Level 1+", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/aquaboy___aquagirl__z1OueIn6GiTrDVw7.json b/data/packs/perks.db/aquaboy___aquagirl__z1OueIn6GiTrDVw7.json index 449f14cc..f0145e19 100644 --- a/data/packs/perks.db/aquaboy___aquagirl__z1OueIn6GiTrDVw7.json +++ b/data/packs/perks.db/aquaboy___aquagirl__z1OueIn6GiTrDVw7.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Aquaboy / Aquagirl", "system": { - "description": "

Water is your ally. At rank 1, you no longer take radiation damage from swimming in irradiated water, and you can hold your breath for twice as long as normal.

\n

At rank 2, enemies add +2 to the difficulty to tests to detect you while you are submerged underwater. Each time you take this perk, the level requirement increases by 3.

", + "description": "

Water is your ally. At rank 1, you no longer take radiation damage from swimming in irradiated water, and you can hold your breath for twice as long as normal.

\n

At rank 2, enemies add +2 to the difficulty to tests to detect you while you are submerged underwater. Each time you take this perk, the level requirement increases by 3.

\n

Requirements: END 5, Level 1+

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 2, "value": 0 }, - "requirements": "END 5, Level 1+", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/armorer__EQjZHUxYinodOU6G.json b/data/packs/perks.db/armorer__EQjZHUxYinodOU6G.json index b19bc0f4..8a98bdf1 100644 --- a/data/packs/perks.db/armorer__EQjZHUxYinodOU6G.json +++ b/data/packs/perks.db/armorer__EQjZHUxYinodOU6G.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Armorer", "system": { - "description": "

You can modify armor with armor mods. Each rank in this perk unlocks an additional rank of mods: rank 1 unlocks rank 1 mods, rank 2 unlocks rank 2 mods, etc.

\n

Each time you take this perk, the level requirement increases by 4.

", + "description": "

You can modify armor with armor mods. Each rank in this perk unlocks an additional rank of mods: rank 1 unlocks rank 1 mods, rank 2 unlocks rank 2 mods, etc.

\n

Each time you take this perk, the level requirement increases by 4.

\n

Requirements: STR 5, INT 6

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 4, "value": 0 }, - "requirements": "STR 5, INT 6", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/art_of_the_tomahawk__I7DFjAhnEzDZmdL7.json b/data/packs/perks.db/art_of_the_tomahawk__I7DFjAhnEzDZmdL7.json index be634d7e..4e7630bc 100644 --- a/data/packs/perks.db/art_of_the_tomahawk__I7DFjAhnEzDZmdL7.json +++ b/data/packs/perks.db/art_of_the_tomahawk__I7DFjAhnEzDZmdL7.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/attack_of_the_fishmen___9uBD2OLMA2YtE3ST.json b/data/packs/perks.db/attack_of_the_fishmen___9uBD2OLMA2YtE3ST.json index ca1f8d89..e2ec198b 100644 --- a/data/packs/perks.db/attack_of_the_fishmen___9uBD2OLMA2YtE3ST.json +++ b/data/packs/perks.db/attack_of_the_fishmen___9uBD2OLMA2YtE3ST.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/attack_of_the_metal_men___NNhKS3XzGuAnXNmq.json b/data/packs/perks.db/attack_of_the_metal_men___NNhKS3XzGuAnXNmq.json index a45f6252..14849555 100644 --- a/data/packs/perks.db/attack_of_the_metal_men___NNhKS3XzGuAnXNmq.json +++ b/data/packs/perks.db/attack_of_the_metal_men___NNhKS3XzGuAnXNmq.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/avoid_those_pesky_gun_laws___Zl8Mt7ll7IqbgFq2.json b/data/packs/perks.db/avoid_those_pesky_gun_laws___Zl8Mt7ll7IqbgFq2.json index 082e6acf..f304d52e 100644 --- a/data/packs/perks.db/avoid_those_pesky_gun_laws___Zl8Mt7ll7IqbgFq2.json +++ b/data/packs/perks.db/avoid_those_pesky_gun_laws___Zl8Mt7ll7IqbgFq2.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/awareness__JHMLajHU7sioJT9v.json b/data/packs/perks.db/awareness__JHMLajHU7sioJT9v.json index 14dc68ad..61beb5a2 100644 --- a/data/packs/perks.db/awareness__JHMLajHU7sioJT9v.json +++ b/data/packs/perks.db/awareness__JHMLajHU7sioJT9v.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Awareness", "system": { - "description": "

When you take the Aim minor action at a target within Close range, you spot their weaknesses and can attack more efficiently. The next attack you make against that target gains the Piercing 1 damage effect, or improves the rating of any existing Piercing X damage effect by 1.

", + "description": "

When you take the Aim minor action at a target within Close range, you spot their weaknesses and can attack more efficiently. The next attack you make against that target gains the Piercing 1 damage effect, or improves the rating of any existing Piercing X damage effect by 1.

\n

Requirements: PER 7

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 1, "value": 0 }, - "requirements": "PER 7", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/barbarian__j5SfukNzX12lRmwB.json b/data/packs/perks.db/barbarian__j5SfukNzX12lRmwB.json index 98f089ba..73bc1c8e 100644 --- a/data/packs/perks.db/barbarian__j5SfukNzX12lRmwB.json +++ b/data/packs/perks.db/barbarian__j5SfukNzX12lRmwB.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Barbarian", "system": { - "description": "

Your physical Damage Resistance increases on all hit locations based on your STR. You do not gain this benefit while wearing Power Armor.

\n
    \n
  • STR 7–8: +1 physical DR
  • \n
  • STR 9–10: +2 physical DR
  • \n
  • STR 11+: +3 physical DR
  • \n
\n

 

", + "description": "

Your physical Damage Resistance increases on all hit locations based on your STR. You do not gain this benefit while wearing Power Armor.

\n
    \n
  • STR 7–8: +1 physical DR
  • \n
  • STR 9–10: +2 physical DR
  • \n
  • STR 11+: +3 physical DR
  • \n
\n

 

\n

Requirements: STR 7, Level 4+, not a robot

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 1, "value": 0 }, - "requirements": "STR 7, Level 4+, not a robot", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/basher__A0UTRQ94MdLa3v2i.json b/data/packs/perks.db/basher__A0UTRQ94MdLa3v2i.json index d820c280..e8ffe687 100644 --- a/data/packs/perks.db/basher__A0UTRQ94MdLa3v2i.json +++ b/data/packs/perks.db/basher__A0UTRQ94MdLa3v2i.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Basher", "system": { - "description": "

When you make a melee attack by bashing with your gun (see p.111), your attack gains the Vicious damage effect.

", + "description": "

When you make a melee attack by bashing with your gun (see p.111), your attack gains the Vicious damage effect.

\n

Requirements: STR 6

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 1, "value": 0 }, - "requirements": "STR 6", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/bear_proofing_your_campsite__5tgqF87DaXrrz59x.json b/data/packs/perks.db/bear_proofing_your_campsite__5tgqF87DaXrrz59x.json index cb214cd7..2a8c4b2d 100644 --- a/data/packs/perks.db/bear_proofing_your_campsite__5tgqF87DaXrrz59x.json +++ b/data/packs/perks.db/bear_proofing_your_campsite__5tgqF87DaXrrz59x.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/better_criticals__Xrh0LthwODfn0McZ.json b/data/packs/perks.db/better_criticals__Xrh0LthwODfn0McZ.json index 25a7ba66..cfde42f4 100644 --- a/data/packs/perks.db/better_criticals__Xrh0LthwODfn0McZ.json +++ b/data/packs/perks.db/better_criticals__Xrh0LthwODfn0McZ.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Better Criticals", "system": { - "description": "

When you inflict one or more points of damage to an enemy, you may spend 1 Luck Point to automatically inflict a critical hit, causing an injury.

", + "description": "

When you inflict one or more points of damage to an enemy, you may spend 1 Luck Point to automatically inflict a critical hit, causing an injury.

\n

Requirements: LCK 9

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 1, "value": 0 }, - "requirements": "LCK 9", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/beware_the_man_handler__BvqY6Zk4bfPSpIj7.json b/data/packs/perks.db/beware_the_man_handler__BvqY6Zk4bfPSpIj7.json index e027d0a9..eca09177 100644 --- a/data/packs/perks.db/beware_the_man_handler__BvqY6Zk4bfPSpIj7.json +++ b/data/packs/perks.db/beware_the_man_handler__BvqY6Zk4bfPSpIj7.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/big_leagues__P5eJ7NOJMV8r9cHo.json b/data/packs/perks.db/big_leagues__P5eJ7NOJMV8r9cHo.json index dd81b28a..a99b0ca9 100644 --- a/data/packs/perks.db/big_leagues__P5eJ7NOJMV8r9cHo.json +++ b/data/packs/perks.db/big_leagues__P5eJ7NOJMV8r9cHo.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Big Leagues", "system": { - "description": "

When you make a melee attack with a two-handed melee weapon, the weapon gains the Vicious damage effect.

", + "description": "

When you make a melee attack with a two-handed melee weapon, the weapon gains the Vicious damage effect.

\n

Requirements: STR 8

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 1, "value": 0 }, - "requirements": "STR 8", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/black_widow___lady_killer__3bfAQcNKzjD0aOJ8.json b/data/packs/perks.db/black_widow___lady_killer__3bfAQcNKzjD0aOJ8.json index bee6da9d..c3dc1daa 100644 --- a/data/packs/perks.db/black_widow___lady_killer__3bfAQcNKzjD0aOJ8.json +++ b/data/packs/perks.db/black_widow___lady_killer__3bfAQcNKzjD0aOJ8.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Black Widow / Lady Killer", "system": { - "description": "

The Black Widow perk affects men and masculine characters, while the Lady Killer perk affects women and feminine characters—they are otherwise identical. When you attempt a CHA based skill test to influence a character of the chosen gender, you may re-roll 1d20. In addition, your attacks inflict +1DCD additional damage against characters of the chosen gender.

", + "description": "

The Black Widow perk affects men and masculine characters, while the Lady Killer perk affects women and feminine characters—they are otherwise identical. When you attempt a CHA based skill test to influence a character of the chosen gender, you may re-roll 1d20. In addition, your attacks inflict +1DCD additional damage against characters of the chosen gender.

\n

Requirements: CHA 6

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 1, "value": 0 }, - "requirements": "CHA 6", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/blacksmith__422BCVbfcp5q8M8I.json b/data/packs/perks.db/blacksmith__422BCVbfcp5q8M8I.json index 348efa4f..9b206cc0 100644 --- a/data/packs/perks.db/blacksmith__422BCVbfcp5q8M8I.json +++ b/data/packs/perks.db/blacksmith__422BCVbfcp5q8M8I.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Blacksmith", "system": { - "description": "

You can modify melee weapons with weapon mods. Each rank in this perk unlocks an additional rank of melee weapon mods: rank 1 unlocks rank 1 mods, rank 2 unlocks rank 2 mods, and rank 3 unlocks rank 3 mods. Each time you take this perk, the level requirement increases by 4.

", + "description": "

You can modify melee weapons with weapon mods. Each rank in this perk unlocks an additional rank of melee weapon mods: rank 1 unlocks rank 1 mods, rank 2 unlocks rank 2 mods, and rank 3 unlocks rank 3 mods. Each time you take this perk, the level requirement increases by 4.

\n

Requirements: STR 6, Level 2+

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 3, "value": 0 }, - "requirements": "STR 6, Level 2+", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/blitz__U8yM23ldUGYYtta1.json b/data/packs/perks.db/blitz__U8yM23ldUGYYtta1.json index 1f8bd702..ecf2ba0f 100644 --- a/data/packs/perks.db/blitz__U8yM23ldUGYYtta1.json +++ b/data/packs/perks.db/blitz__U8yM23ldUGYYtta1.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Blitz", "system": { - "description": "

When you move into reach of an opponent and make a melee attack against them in one turn, you may re-roll one d20 on your attack.

\n

At rank 2, you also inflict +1CD damage with that attack. Each time you take this perk, the level requirement increases by 3.

", + "description": "

When you move into reach of an opponent and make a melee attack against them in one turn, you may re-roll one d20 on your attack.

\n

At rank 2, you also inflict +1CD damage with that attack. Each time you take this perk, the level requirement increases by 3.

\n

Requirements: AGI 9, Level 1+

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 2, "value": 0 }, - "requirements": "AGI 9, Level 1+", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/blood_on_the_harp__56snTc6VYoTJqCMi.json b/data/packs/perks.db/blood_on_the_harp__56snTc6VYoTJqCMi.json index 13874330..e83d6738 100644 --- a/data/packs/perks.db/blood_on_the_harp__56snTc6VYoTJqCMi.json +++ b/data/packs/perks.db/blood_on_the_harp__56snTc6VYoTJqCMi.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/bloody_mess__jhef5zecOk3vQhGy.json b/data/packs/perks.db/bloody_mess__jhef5zecOk3vQhGy.json index ad5bac5a..44b1ca4f 100644 --- a/data/packs/perks.db/bloody_mess__jhef5zecOk3vQhGy.json +++ b/data/packs/perks.db/bloody_mess__jhef5zecOk3vQhGy.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Bloody Mess", "system": { - "description": "

When you inflict a critical hit, roll 1DCD; if you roll an Effect, you inflict one additional injury to a random location.

", + "description": "

When you inflict a critical hit, roll 1DCD; if you roll an Effect, you inflict one additional injury to a random location.

\n

Requirements: LCK 6

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 1, "value": 0 }, - "requirements": "LCK 6", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/bobby_pins__more_effective_than_lockpicks___Q6MhXT1qvcpX6fxU.json b/data/packs/perks.db/bobby_pins__more_effective_than_lockpicks___Q6MhXT1qvcpX6fxU.json index 3e6b6b91..7c32d6ca 100644 --- a/data/packs/perks.db/bobby_pins__more_effective_than_lockpicks___Q6MhXT1qvcpX6fxU.json +++ b/data/packs/perks.db/bobby_pins__more_effective_than_lockpicks___Q6MhXT1qvcpX6fxU.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/boxing_times__9rp4u6tgFbJk9GRT.json b/data/packs/perks.db/boxing_times__9rp4u6tgFbJk9GRT.json index f7acbbf2..9c9d991b 100644 --- a/data/packs/perks.db/boxing_times__9rp4u6tgFbJk9GRT.json +++ b/data/packs/perks.db/boxing_times__9rp4u6tgFbJk9GRT.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/can_do___xTNbBLx2nxvf1mIE.json b/data/packs/perks.db/can_do___xTNbBLx2nxvf1mIE.json index 40384861..877e07db 100644 --- a/data/packs/perks.db/can_do___xTNbBLx2nxvf1mIE.json +++ b/data/packs/perks.db/can_do___xTNbBLx2nxvf1mIE.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Can Do!", "system": { - "description": "

When you are scavenging a location that contains food, you gain 1 additional random food item, without spending AP.

", + "description": "

When you are scavenging a location that contains food, you gain 1 additional random food item, without spending AP.

\n

Requirements: LCK 5

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 1, "value": 0 }, - "requirements": "LCK 5", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/cap_collector__BKTkXhJHSgVjdsKT.json b/data/packs/perks.db/cap_collector__BKTkXhJHSgVjdsKT.json index e9771e91..3631a184 100644 --- a/data/packs/perks.db/cap_collector__BKTkXhJHSgVjdsKT.json +++ b/data/packs/perks.db/cap_collector__BKTkXhJHSgVjdsKT.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Cap Collector", "system": { - "description": "

When you buy or sell items, you may increase or decrease the price of the goods being traded by 10%.

", + "description": "

When you buy or sell items, you may increase or decrease the price of the goods being traded by 10%.

\n

Requirements: CHA 5

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 1, "value": 0 }, - "requirements": "CHA 5", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/carnivorous_rabbits_of_appalachia__wwIthL6FW1dIq1MU.json b/data/packs/perks.db/carnivorous_rabbits_of_appalachia__wwIthL6FW1dIq1MU.json index 381f1755..cc017f0d 100644 --- a/data/packs/perks.db/carnivorous_rabbits_of_appalachia__wwIthL6FW1dIq1MU.json +++ b/data/packs/perks.db/carnivorous_rabbits_of_appalachia__wwIthL6FW1dIq1MU.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/cautious_nature__xwXPepqdLzr8uPMX.json b/data/packs/perks.db/cautious_nature__xwXPepqdLzr8uPMX.json index 69d29ebd..420ebca3 100644 --- a/data/packs/perks.db/cautious_nature__xwXPepqdLzr8uPMX.json +++ b/data/packs/perks.db/cautious_nature__xwXPepqdLzr8uPMX.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Cautious Nature", "system": { - "description": "

Whenever you attempt a skill test, and you buy one or more d20s by spending Action Points, you may re-roll 1d20 on that test. You may not purchase this perk if you have Daring Nature.

", + "description": "

Whenever you attempt a skill test, and you buy one or more d20s by spending Action Points, you may re-roll 1d20 on that test. You may not purchase this perk if you have Daring Nature.

\n

Requirements: PER 7

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 1, "value": 0 }, - "requirements": "PER 7", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/center_mass__Nc22rM5RB37dOPcO.json b/data/packs/perks.db/center_mass__Nc22rM5RB37dOPcO.json index 0f0c3cbf..525d2e86 100644 --- a/data/packs/perks.db/center_mass__Nc22rM5RB37dOPcO.json +++ b/data/packs/perks.db/center_mass__Nc22rM5RB37dOPcO.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Center Mass", "system": { - "description": "

When you make a ranged attack, you may choose to strike your target’s Torso location (or equivalent, for creatures that use a different location table) without increasing the difficulty of the attack. In addition, you may re-roll 1d20 when making the test for your attack.

", + "description": "

When you make a ranged attack, you may choose to strike your target’s Torso location (or equivalent, for creatures that use a different location table) without increasing the difficulty of the attack. In addition, you may re-roll 1d20 when making the test for your attack.

\n

Requirements: AGI 7

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 1, "value": 0 }, - "requirements": "AGI 7", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/chem_resistant__49AOicQFjlfIKNUe.json b/data/packs/perks.db/chem_resistant__49AOicQFjlfIKNUe.json index b47c1990..11b63fb8 100644 --- a/data/packs/perks.db/chem_resistant__49AOicQFjlfIKNUe.json +++ b/data/packs/perks.db/chem_resistant__49AOicQFjlfIKNUe.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Chem Resistant", "system": { - "description": "

At rank 1, roll one fewer CD when determining if you become addicted to chems,
to a minimum of 0.

\n

At rank 2, you cannot become addicted to chems. Each time you take this perk, the level requirement increases by 4.

", + "description": "

At rank 1, roll one fewer CD when determining if you become addicted to chems,
to a minimum of 0.

\n

At rank 2, you cannot become addicted to chems. Each time you take this perk, the level requirement increases by 4.

\n

Requirements: END 7, Level 1+

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 2, "value": 0 }, - "requirements": "END 7, Level 1+", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/chemist__HUmwhrS7v9g31nOG.json b/data/packs/perks.db/chemist__HUmwhrS7v9g31nOG.json index 1dd4f0ff..c2c7e714 100644 --- a/data/packs/perks.db/chemist__HUmwhrS7v9g31nOG.json +++ b/data/packs/perks.db/chemist__HUmwhrS7v9g31nOG.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Chemist", "system": { - "description": "

Chems you create last twice as long as normal (see p.164). In addition, you unlock chems recipes that have this perk as a requirement.

", + "description": "

Chems you create last twice as long as normal (see p.164). In addition, you unlock chems recipes that have this perk as a requirement.

\n

Requirements: INT 7

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 1, "value": 0 }, - "requirements": "INT 7", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/cometh_the_trickster__MKt5lgPvnlrnMV9S.json b/data/packs/perks.db/cometh_the_trickster__MKt5lgPvnlrnMV9S.json index 71546824..0aaee7ea 100644 --- a/data/packs/perks.db/cometh_the_trickster__MKt5lgPvnlrnMV9S.json +++ b/data/packs/perks.db/cometh_the_trickster__MKt5lgPvnlrnMV9S.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/commando__H6W082nVJtDeSthQ.json b/data/packs/perks.db/commando__H6W082nVJtDeSthQ.json index 44a5ac57..eb3eab36 100644 --- a/data/packs/perks.db/commando__H6W082nVJtDeSthQ.json +++ b/data/packs/perks.db/commando__H6W082nVJtDeSthQ.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Commando", "system": { - "description": "

When you make a ranged attack with any weapon with a Fire Rate of 3 or higher (except heavy weapons), you add +1DCD per rank to the weapon’s damage. Each time you take this perk, the level requirement increases by 3.

", + "description": "

When you make a ranged attack with any weapon with a Fire Rate of 3 or higher (except heavy weapons), you add +1DCD per rank to the weapon’s damage. Each time you take this perk, the level requirement increases by 3.

\n

Requirements: AGI 8, Level 2+

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 2, "value": 0 }, - "requirements": "AGI 8, Level 2+", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/commie_kazi_vs__manta_man__qItV5QGk0sN0md6p.json b/data/packs/perks.db/commie_kazi_vs__manta_man__qItV5QGk0sN0md6p.json index 0b69c53c..ab47ea10 100644 --- a/data/packs/perks.db/commie_kazi_vs__manta_man__qItV5QGk0sN0md6p.json +++ b/data/packs/perks.db/commie_kazi_vs__manta_man__qItV5QGk0sN0md6p.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/comprehension__51j1AqLl4zHqoVsN.json b/data/packs/perks.db/comprehension__51j1AqLl4zHqoVsN.json index bd7f7f23..4bb4dfad 100644 --- a/data/packs/perks.db/comprehension__51j1AqLl4zHqoVsN.json +++ b/data/packs/perks.db/comprehension__51j1AqLl4zHqoVsN.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Comprehension", "system": { - "description": "

After you use the bonus gained from reading a magazine, roll 1 CD. If you roll an Effect, you may use that bonus one additional time.

", + "description": "

After you use the bonus gained from reading a magazine, roll 1 CD. If you roll an Effect, you may use that bonus one additional time.

\n

Requirements: INT 6

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 1, "value": 0 }, - "requirements": "INT 6", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/concentrated_fire__YLA9JETKbkkHd3uz.json b/data/packs/perks.db/concentrated_fire__YLA9JETKbkkHd3uz.json index 20de6484..915b496d 100644 --- a/data/packs/perks.db/concentrated_fire__YLA9JETKbkkHd3uz.json +++ b/data/packs/perks.db/concentrated_fire__YLA9JETKbkkHd3uz.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Concentrated Fire", "system": { - "description": "

When you make a ranged attack and spend ammunition to increase the damage, you may re-roll up to 3 CD for your damage roll.

", + "description": "

When you make a ranged attack and spend ammunition to increase the damage, you may re-roll up to 3 CD for your damage roll.

\n

Requirements: PER 8, AGI 6

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 1, "value": 0 }, - "requirements": "PER 8, AGI 6", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/confessions_of_a_housebreaker__PCA8zoHuaLjnsF7g.json b/data/packs/perks.db/confessions_of_a_housebreaker__PCA8zoHuaLjnsF7g.json index 2f8ee898..690ec000 100644 --- a/data/packs/perks.db/confessions_of_a_housebreaker__PCA8zoHuaLjnsF7g.json +++ b/data/packs/perks.db/confessions_of_a_housebreaker__PCA8zoHuaLjnsF7g.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/coupon_spectacular__grJRadyKsz8Eu0cJ.json b/data/packs/perks.db/coupon_spectacular__grJRadyKsz8Eu0cJ.json index 0ea4c610..2f407ebe 100644 --- a/data/packs/perks.db/coupon_spectacular__grJRadyKsz8Eu0cJ.json +++ b/data/packs/perks.db/coupon_spectacular__grJRadyKsz8Eu0cJ.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/curse_of_the_burned___Cx5ysG2Z0XPE6DZn.json b/data/packs/perks.db/curse_of_the_burned___Cx5ysG2Z0XPE6DZn.json index 3ab4027f..be17cf56 100644 --- a/data/packs/perks.db/curse_of_the_burned___Cx5ysG2Z0XPE6DZn.json +++ b/data/packs/perks.db/curse_of_the_burned___Cx5ysG2Z0XPE6DZn.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/daring_nature__VTtncpMUhGBxjmlQ.json b/data/packs/perks.db/daring_nature__VTtncpMUhGBxjmlQ.json index e36577b2..f1138b24 100644 --- a/data/packs/perks.db/daring_nature__VTtncpMUhGBxjmlQ.json +++ b/data/packs/perks.db/daring_nature__VTtncpMUhGBxjmlQ.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Daring Nature", "system": { - "description": "

Whenever you attempt a skill test, and you buy one or more d20s by giving the gamemaster Action Points, you may re-roll 1d20 on that test. You may not purchase this perk if you have Cautious Nature.

", + "description": "

Whenever you attempt a skill test, and you buy one or more d20s by giving the gamemaster Action Points, you may re-roll 1d20 on that test. You may not purchase this perk if you have Cautious Nature.

\n

Requirements: LCK 7

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 1, "value": 0 }, - "requirements": "LCK 7", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/deadly_lasers___YeQmWe6K2QMAEaep.json b/data/packs/perks.db/deadly_lasers___YeQmWe6K2QMAEaep.json index 73260beb..a0297ab0 100644 --- a/data/packs/perks.db/deadly_lasers___YeQmWe6K2QMAEaep.json +++ b/data/packs/perks.db/deadly_lasers___YeQmWe6K2QMAEaep.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/demolition_expert__ureiid51WVHnCcSG.json b/data/packs/perks.db/demolition_expert__ureiid51WVHnCcSG.json index 1b88d82b..7abf97e8 100644 --- a/data/packs/perks.db/demolition_expert__ureiid51WVHnCcSG.json +++ b/data/packs/perks.db/demolition_expert__ureiid51WVHnCcSG.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Demolition Expert", "system": { - "description": "

When you make an attack using a weapon with the Blast quality, the attack gains the Vicious damage effect. In addition, you unlock explosives recipes which have this perk as a requirement.

", + "description": "

When you make an attack using a weapon with the Blast quality, the attack gains the Vicious damage effect. In addition, you unlock explosives recipes which have this perk as a requirement.

\n

Requirements: PER 6, LCK 6

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 1, "value": 0 }, - "requirements": "PER 6, LCK 6", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/demon_slaves__demon_sands__FHMZ8ohO5uegkBHL.json b/data/packs/perks.db/demon_slaves__demon_sands__FHMZ8ohO5uegkBHL.json index 2d9cc80a..425b8b8f 100644 --- a/data/packs/perks.db/demon_slaves__demon_sands__FHMZ8ohO5uegkBHL.json +++ b/data/packs/perks.db/demon_slaves__demon_sands__FHMZ8ohO5uegkBHL.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/dodger__5r60cyfjkvkYlTvs.json b/data/packs/perks.db/dodger__5r60cyfjkvkYlTvs.json index db436d0d..01d18c3d 100644 --- a/data/packs/perks.db/dodger__5r60cyfjkvkYlTvs.json +++ b/data/packs/perks.db/dodger__5r60cyfjkvkYlTvs.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Dodger", "system": { - "description": "

At rank 1, when you take the Defend major action, you reduce the difficulty of the skill test by 1. At rank 2, the AP cost to further increase your Defense is reduced to 1 AP. Each time you take this perk, the level requirement increases by 6.

", + "description": "

At rank 1, when you take the Defend major action, you reduce the difficulty of the skill test by 1. At rank 2, the AP cost to further increase your Defense is reduced to 1 AP. Each time you take this perk, the level requirement increases by 6.

\n

Requirements: AGI 6, Level 4

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 2, "value": 0 }, - "requirements": "AGI 6, Level 4", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/dogmeat__6VAkIp310dSGvCj7.json b/data/packs/perks.db/dogmeat__6VAkIp310dSGvCj7.json index 2d2e8f8a..58453e27 100644 --- a/data/packs/perks.db/dogmeat__6VAkIp310dSGvCj7.json +++ b/data/packs/perks.db/dogmeat__6VAkIp310dSGvCj7.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Dogmeat", "system": { - "description": "

You aren’t alone in the wilderness. You have a pet dog that serves as a friend and ally in dangerous times. The dog has the profile shown to the side and is treated as an allied NPC creature under your command (see p.338). If you need to forage for food and water, your dog looks after themselves. If your dog is slain, then you either find a new dog before the next adventure, or you may trade this perk for a different one after this adventure.

", + "description": "

You aren’t alone in the wilderness. You have a pet dog that serves as a friend and ally in dangerous times. The dog has the profile shown to the side and is treated as an allied NPC creature under your command (see p.338). If you need to forage for food and water, your dog looks after themselves. If your dog is slain, then you either find a new dog before the next adventure, or you may trade this perk for a different one after this adventure.

\n

Requirements: CHA 5

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 1, "value": 0 }, - "requirements": "CHA 5", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/down_home_cookin___1aIYFwFQGic2zHjK.json b/data/packs/perks.db/down_home_cookin___1aIYFwFQGic2zHjK.json index dd54d678..9b335a83 100644 --- a/data/packs/perks.db/down_home_cookin___1aIYFwFQGic2zHjK.json +++ b/data/packs/perks.db/down_home_cookin___1aIYFwFQGic2zHjK.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/dr__brainwash_and_his_army_of_de_capitalists___35g6izwF0LhTPGMO.json b/data/packs/perks.db/dr__brainwash_and_his_army_of_de_capitalists___35g6izwF0LhTPGMO.json index 8e01b458..35fcc680 100644 --- a/data/packs/perks.db/dr__brainwash_and_his_army_of_de_capitalists___35g6izwF0LhTPGMO.json +++ b/data/packs/perks.db/dr__brainwash_and_his_army_of_de_capitalists___35g6izwF0LhTPGMO.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/duck_and_cover___gD1wycvvp1ivtXdY.json b/data/packs/perks.db/duck_and_cover___gD1wycvvp1ivtXdY.json index dbb0f08a..d1581fbc 100644 --- a/data/packs/perks.db/duck_and_cover___gD1wycvvp1ivtXdY.json +++ b/data/packs/perks.db/duck_and_cover___gD1wycvvp1ivtXdY.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/enter_maula__war_maiden_of_mars__OIVq6l91X8x6r6zi.json b/data/packs/perks.db/enter_maula__war_maiden_of_mars__OIVq6l91X8x6r6zi.json index 94224973..9ac0a3a7 100644 --- a/data/packs/perks.db/enter_maula__war_maiden_of_mars__OIVq6l91X8x6r6zi.json +++ b/data/packs/perks.db/enter_maula__war_maiden_of_mars__OIVq6l91X8x6r6zi.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/entomologist__Vk0RIc9X6HaypmwJ.json b/data/packs/perks.db/entomologist__Vk0RIc9X6HaypmwJ.json index 736dd42d..aaf129d2 100644 --- a/data/packs/perks.db/entomologist__Vk0RIc9X6HaypmwJ.json +++ b/data/packs/perks.db/entomologist__Vk0RIc9X6HaypmwJ.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Entomologist", "system": { - "description": "

When you make an attack against an NPC with the Insect keyword, your attack gains the Piercing 1 damage effect, or improves the rating of any Piercing X effect the weapon has by +1.

", + "description": "

When you make an attack against an NPC with the Insect keyword, your attack gains the Piercing 1 damage effect, or improves the rating of any Piercing X effect the weapon has by +1.

\n

Requirements: INT 7

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 1, "value": 0 }, - "requirements": "INT 7", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/farming_the_wastes__TmIh9ecBP1YvDwdF.json b/data/packs/perks.db/farming_the_wastes__TmIh9ecBP1YvDwdF.json index 0c1b1039..c6e83dcd 100644 --- a/data/packs/perks.db/farming_the_wastes__TmIh9ecBP1YvDwdF.json +++ b/data/packs/perks.db/farming_the_wastes__TmIh9ecBP1YvDwdF.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/fast_metabolism__T3vX1fP7cSG5v0zh.json b/data/packs/perks.db/fast_metabolism__T3vX1fP7cSG5v0zh.json index d9319e3b..54c4cf7a 100644 --- a/data/packs/perks.db/fast_metabolism__T3vX1fP7cSG5v0zh.json +++ b/data/packs/perks.db/fast_metabolism__T3vX1fP7cSG5v0zh.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Fast Metabolism", "system": { - "description": "

When you regain one or more HP from any source other than rest, increase the total HP regained by +1 per rank in this perk. Each time you take this perk, the level requirement increases by 3.

", + "description": "

When you regain one or more HP from any source other than rest, increase the total HP regained by +1 per rank in this perk. Each time you take this perk, the level requirement increases by 3.

\n

Requirements: END 6, Level 1+, not a robot

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 3, "value": 0 }, - "requirements": "END 6, Level 1+, not a robot", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/faster_healing__TTCwoZV141ZGuMjs.json b/data/packs/perks.db/faster_healing__TTCwoZV141ZGuMjs.json index 4dacd335..b60d194b 100644 --- a/data/packs/perks.db/faster_healing__TTCwoZV141ZGuMjs.json +++ b/data/packs/perks.db/faster_healing__TTCwoZV141ZGuMjs.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Faster Healing", "system": { - "description": "

When you make an END + Survival test to heal your own injuries, the first additional d20 you buy is free. The normal maximum of 5d20 still applies.

", + "description": "

When you make an END + Survival test to heal your own injuries, the first additional d20 you buy is free. The normal maximum of 5d20 still applies.

\n

Requirements: END 6, not a robot

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 1, "value": 0 }, - "requirements": "END 6, not a robot", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/fatherless_cur___sWkveVPjKk45QqwF.json b/data/packs/perks.db/fatherless_cur___sWkveVPjKk45QqwF.json index 9a344b48..ad1d1d4a 100644 --- a/data/packs/perks.db/fatherless_cur___sWkveVPjKk45QqwF.json +++ b/data/packs/perks.db/fatherless_cur___sWkveVPjKk45QqwF.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/fh_5_01_whistling_in_the_dark__cPjofC2nJegzoPXS.json b/data/packs/perks.db/fh_5_01_whistling_in_the_dark__cPjofC2nJegzoPXS.json index 414e63f1..31caf7cf 100644 --- a/data/packs/perks.db/fh_5_01_whistling_in_the_dark__cPjofC2nJegzoPXS.json +++ b/data/packs/perks.db/fh_5_01_whistling_in_the_dark__cPjofC2nJegzoPXS.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/fh_5_02_urban_camouflage__AVB1RZC2w05dkUbZ.json b/data/packs/perks.db/fh_5_02_urban_camouflage__AVB1RZC2w05dkUbZ.json index 10b58f3c..c915d0c0 100644 --- a/data/packs/perks.db/fh_5_02_urban_camouflage__AVB1RZC2w05dkUbZ.json +++ b/data/packs/perks.db/fh_5_02_urban_camouflage__AVB1RZC2w05dkUbZ.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/fh_5_03_facepaint_fundamentals__vYiPt2jg7x1f0NTl.json b/data/packs/perks.db/fh_5_03_facepaint_fundamentals__vYiPt2jg7x1f0NTl.json index 6a84f26f..ef8c3122 100644 --- a/data/packs/perks.db/fh_5_03_facepaint_fundamentals__vYiPt2jg7x1f0NTl.json +++ b/data/packs/perks.db/fh_5_03_facepaint_fundamentals__vYiPt2jg7x1f0NTl.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/fh_5_04_not_the_soldiers_you_re_looking_for__g6qVETrGj3ide6hr.json b/data/packs/perks.db/fh_5_04_not_the_soldiers_you_re_looking_for__g6qVETrGj3ide6hr.json index 7cbeba05..3e9b8d4f 100644 --- a/data/packs/perks.db/fh_5_04_not_the_soldiers_you_re_looking_for__g6qVETrGj3ide6hr.json +++ b/data/packs/perks.db/fh_5_04_not_the_soldiers_you_re_looking_for__g6qVETrGj3ide6hr.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/fh_5_05_who_goes_there___lZ0REnexDQeH2cmK.json b/data/packs/perks.db/fh_5_05_who_goes_there___lZ0REnexDQeH2cmK.json index 1e924177..2aa42102 100644 --- a/data/packs/perks.db/fh_5_05_who_goes_there___lZ0REnexDQeH2cmK.json +++ b/data/packs/perks.db/fh_5_05_who_goes_there___lZ0REnexDQeH2cmK.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/fh_5_06_squeaky_floorboard__sudden_death__DHdPahzQ9HMZ0FXb.json b/data/packs/perks.db/fh_5_06_squeaky_floorboard__sudden_death__DHdPahzQ9HMZ0FXb.json index 1e7ae422..70ea7856 100644 --- a/data/packs/perks.db/fh_5_06_squeaky_floorboard__sudden_death__DHdPahzQ9HMZ0FXb.json +++ b/data/packs/perks.db/fh_5_06_squeaky_floorboard__sudden_death__DHdPahzQ9HMZ0FXb.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/fh_5_07_getting_the_drop_on_the_communists__5rxzpSKhciVgbmzP.json b/data/packs/perks.db/fh_5_07_getting_the_drop_on_the_communists__5rxzpSKhciVgbmzP.json index e55e40e6..f9fa1bc1 100644 --- a/data/packs/perks.db/fh_5_07_getting_the_drop_on_the_communists__5rxzpSKhciVgbmzP.json +++ b/data/packs/perks.db/fh_5_07_getting_the_drop_on_the_communists__5rxzpSKhciVgbmzP.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/fh_5_08_bushes__boxes__and_beehives__camouflage_special__l9jhloiw4Sylv6Y3.json b/data/packs/perks.db/fh_5_08_bushes__boxes__and_beehives__camouflage_special__l9jhloiw4Sylv6Y3.json index 31a58660..3d8bfb23 100644 --- a/data/packs/perks.db/fh_5_08_bushes__boxes__and_beehives__camouflage_special__l9jhloiw4Sylv6Y3.json +++ b/data/packs/perks.db/fh_5_08_bushes__boxes__and_beehives__camouflage_special__l9jhloiw4Sylv6Y3.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/fh_5_09_look_better_in_black__nWVbU3dqMxeoxPoT.json b/data/packs/perks.db/fh_5_09_look_better_in_black__nWVbU3dqMxeoxPoT.json index c7481c8d..150ccc68 100644 --- a/data/packs/perks.db/fh_5_09_look_better_in_black__nWVbU3dqMxeoxPoT.json +++ b/data/packs/perks.db/fh_5_09_look_better_in_black__nWVbU3dqMxeoxPoT.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/fh_5_10_tiptoe_through_the_tulips__xBewaCbKbQO5BQKp.json b/data/packs/perks.db/fh_5_10_tiptoe_through_the_tulips__xBewaCbKbQO5BQKp.json index eeef057d..88f8f65c 100644 --- a/data/packs/perks.db/fh_5_10_tiptoe_through_the_tulips__xBewaCbKbQO5BQKp.json +++ b/data/packs/perks.db/fh_5_10_tiptoe_through_the_tulips__xBewaCbKbQO5BQKp.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/finesse__DlJVCaT4RLT38Kgs.json b/data/packs/perks.db/finesse__DlJVCaT4RLT38Kgs.json index 39203bf7..6d4525bd 100644 --- a/data/packs/perks.db/finesse__DlJVCaT4RLT38Kgs.json +++ b/data/packs/perks.db/finesse__DlJVCaT4RLT38Kgs.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Finesse", "system": { - "description": "

Once per combat encounter, you may re-roll all the DCD on a single damage roll without spending any Luck points.

", + "description": "

Once per combat encounter, you may re-roll all the DCD on a single damage roll without spending any Luck points.

\n

Requirements: AGI 9

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 1, "value": 0 }, - "requirements": "AGI 9", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/fixin__things__7gsRBEPt328MaEyI.json b/data/packs/perks.db/fixin__things__7gsRBEPt328MaEyI.json index dc8e3480..f42eba31 100644 --- a/data/packs/perks.db/fixin__things__7gsRBEPt328MaEyI.json +++ b/data/packs/perks.db/fixin__things__7gsRBEPt328MaEyI.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/fortune_finder__zQpZJuiwAC8Zk9a0.json b/data/packs/perks.db/fortune_finder__zQpZJuiwAC8Zk9a0.json index 39a23610..0231f319 100644 --- a/data/packs/perks.db/fortune_finder__zQpZJuiwAC8Zk9a0.json +++ b/data/packs/perks.db/fortune_finder__zQpZJuiwAC8Zk9a0.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Fortune Finder", "system": { - "description": "

Whenever you roll to determine how much money you find, you find more. At rank 1, you find +3DCD additional caps. At rank 2, you find +6DCD additional caps. At rank 3, you find +10CD additional caps. Each time you take this perk, the level requirement increases by 4.

", + "description": "

Whenever you roll to determine how much money you find, you find more. At rank 1, you find +3DCD additional caps. At rank 2, you find +6DCD additional caps. At rank 3, you find +10CD additional caps. Each time you take this perk, the level requirement increases by 4.

\n

Requirements: LCK 5, Level 2+

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 3, "value": 0 }, - "requirements": "LCK 5, Level 2+", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/future_of_warfare___PBp0DOgO6fmob9LU.json b/data/packs/perks.db/future_of_warfare___PBp0DOgO6fmob9LU.json index 69f38593..f1b6c365 100644 --- a/data/packs/perks.db/future_of_warfare___PBp0DOgO6fmob9LU.json +++ b/data/packs/perks.db/future_of_warfare___PBp0DOgO6fmob9LU.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/future_weapons_today__LJXpGjoI1HYU6Heb.json b/data/packs/perks.db/future_weapons_today__LJXpGjoI1HYU6Heb.json index af543e73..beafb58f 100644 --- a/data/packs/perks.db/future_weapons_today__LJXpGjoI1HYU6Heb.json +++ b/data/packs/perks.db/future_weapons_today__LJXpGjoI1HYU6Heb.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/geckos_and_gamma_radiation__kYMZ1knDNl0hLeI8.json b/data/packs/perks.db/geckos_and_gamma_radiation__kYMZ1knDNl0hLeI8.json index 3bf6005f..dca31261 100644 --- a/data/packs/perks.db/geckos_and_gamma_radiation__kYMZ1knDNl0hLeI8.json +++ b/data/packs/perks.db/geckos_and_gamma_radiation__kYMZ1knDNl0hLeI8.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/get_off_my_lawn__6b46sO6gPyRRziMy.json b/data/packs/perks.db/get_off_my_lawn__6b46sO6gPyRRziMy.json index 620433ae..cd78e2b3 100644 --- a/data/packs/perks.db/get_off_my_lawn__6b46sO6gPyRRziMy.json +++ b/data/packs/perks.db/get_off_my_lawn__6b46sO6gPyRRziMy.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/ghost__wC8TgVkF6OhFY9XR.json b/data/packs/perks.db/ghost__wC8TgVkF6OhFY9XR.json index affd1b7a..396ace27 100644 --- a/data/packs/perks.db/ghost__wC8TgVkF6OhFY9XR.json +++ b/data/packs/perks.db/ghost__wC8TgVkF6OhFY9XR.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Ghost", "system": { - "description": "

Whenever you attempt an AGI + Sneak test in shadows or darkness, the first additional d20 you buy is free. The normal maximum of 5d20 still applies.

", + "description": "

Whenever you attempt an AGI + Sneak test in shadows or darkness, the first additional d20 you buy is free. The normal maximum of 5d20 still applies.

\n

Requirements: PER, AGI 6

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 1, "value": 0 }, - "requirements": "PER, AGI 6", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/giant_insects_invade___fMq7BDUKGUIZDOEY.json b/data/packs/perks.db/giant_insects_invade___fMq7BDUKGUIZDOEY.json index da2c86f7..4eafd849 100644 --- a/data/packs/perks.db/giant_insects_invade___fMq7BDUKGUIZDOEY.json +++ b/data/packs/perks.db/giant_insects_invade___fMq7BDUKGUIZDOEY.json @@ -17,6 +17,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/giant_super_weapons___JGsQpE2E1zseUEdM.json b/data/packs/perks.db/giant_super_weapons___JGsQpE2E1zseUEdM.json index 2b8dcc74..f22f10b8 100644 --- a/data/packs/perks.db/giant_super_weapons___JGsQpE2E1zseUEdM.json +++ b/data/packs/perks.db/giant_super_weapons___JGsQpE2E1zseUEdM.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/grim_reaper_s_sprint__YDRoA6dGjWXy06hf.json b/data/packs/perks.db/grim_reaper_s_sprint__YDRoA6dGjWXy06hf.json index 2d042abe..13a08ea5 100644 --- a/data/packs/perks.db/grim_reaper_s_sprint__YDRoA6dGjWXy06hf.json +++ b/data/packs/perks.db/grim_reaper_s_sprint__YDRoA6dGjWXy06hf.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Grim Reaper's Sprint", "system": { - "description": "

When you make an attack which kills one or more enemies, roll 1DCD. If you roll an Effect, add 2 AP to the group’s pool.

", + "description": "

When you make an attack which kills one or more enemies, roll 1DCD. If you roll an Effect, add 2 AP to the group’s pool.

\n

Requirements: LCK 8

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 1, "value": 0 }, - "requirements": "LCK 8", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/guide_to_hunting_commies___BoK3Po9WKYHAv4Y9.json b/data/packs/perks.db/guide_to_hunting_commies___BoK3Po9WKYHAv4Y9.json index 0691167b..44369542 100644 --- a/data/packs/perks.db/guide_to_hunting_commies___BoK3Po9WKYHAv4Y9.json +++ b/data/packs/perks.db/guide_to_hunting_commies___BoK3Po9WKYHAv4Y9.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/gun_fu__Nei43KlUxbHLw6MI.json b/data/packs/perks.db/gun_fu__Nei43KlUxbHLw6MI.json index 8feb7b9b..318aab45 100644 --- a/data/packs/perks.db/gun_fu__Nei43KlUxbHLw6MI.json +++ b/data/packs/perks.db/gun_fu__Nei43KlUxbHLw6MI.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Gun Fu", "system": { - "description": "

When you succeed at a ranged attack, you may spend 1 AP and 1 ammo to hit a second target within Close range of your initial target. The second target takes the same damage as the initial target. At rank 2, you may spend 2 AP and 2 ammo to hit two additional targets. At rank 3, you may spend 3 AP and 3 ammo to hit three additional targets. Each time you take this perk, the level requirement increases by 5.

", + "description": "

When you succeed at a ranged attack, you may spend 1 AP and 1 ammo to hit a second target within Close range of your initial target. The second target takes the same damage as the initial target. At rank 2, you may spend 2 AP and 2 ammo to hit two additional targets. At rank 3, you may spend 3 AP and 3 ammo to hit three additional targets. Each time you take this perk, the level requirement increases by 5.

\n

Requirements: AGI 10, Level 1+

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 3, "value": 0 }, - "requirements": "AGI 10, Level 1+", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/gun_nut__Ba5yPRdNAvjM5StI.json b/data/packs/perks.db/gun_nut__Ba5yPRdNAvjM5StI.json index 3ff78a74..b8d77994 100644 --- a/data/packs/perks.db/gun_nut__Ba5yPRdNAvjM5StI.json +++ b/data/packs/perks.db/gun_nut__Ba5yPRdNAvjM5StI.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Gun Nut", "system": { - "description": "

You can modify small guns and heavy weapons with weapon mods. Each rank in this perk unlocks an additional rank of weapon mods: rank 1 unlocks rank 1 mods, rank 2 unlocks rank 2 mods, etc. Each time you take this perk, the level requirement increases by 4.

", + "description": "

You can modify small guns and heavy weapons with weapon mods. Each rank in this perk unlocks an additional rank of weapon mods: rank 1 unlocks rank 1 mods, rank 2 unlocks rank 2 mods, etc. Each time you take this perk, the level requirement increases by 4.

\n

Requirements: INT 6, Level 2+

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 4, "value": 0 }, - "requirements": "INT 6, Level 2+", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/gunslinger__ugnoJLCjVbVsAqOj.json b/data/packs/perks.db/gunslinger__ugnoJLCjVbVsAqOj.json index 3c661ae9..00f3cbaa 100644 --- a/data/packs/perks.db/gunslinger__ugnoJLCjVbVsAqOj.json +++ b/data/packs/perks.db/gunslinger__ugnoJLCjVbVsAqOj.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Gunslinger", "system": { - "description": "

When you make an attack with a onehanded ranged weapon with a Fire Rate of 2 or lower, you increase the weapon’s damage by +1CD per rank. In addition, you may re-roll the hit location die. Each time you take this perk, the level requirement increases by 4.

", + "description": "

When you make an attack with a onehanded ranged weapon with a Fire Rate of 2 or lower, you increase the weapon’s damage by +1CD per rank. In addition, you may re-roll the hit location die. Each time you take this perk, the level requirement increases by 4.

\n

Requirements: AGI 7, Level 2+

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 2, "value": 0 }, - "requirements": "AGI 7, Level 2+", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/hacker__NMrJsMFjSLAYtHAU.json b/data/packs/perks.db/hacker__NMrJsMFjSLAYtHAU.json index b832e2b9..9b8d3177 100644 --- a/data/packs/perks.db/hacker__NMrJsMFjSLAYtHAU.json +++ b/data/packs/perks.db/hacker__NMrJsMFjSLAYtHAU.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Hacker", "system": { - "description": "

The difficulty of skill tests to hack computers is decreased by 1, to a minimum of 0.

", + "description": "

The difficulty of skill tests to hack computers is decreased by 1, to a minimum of 0.

\n

Requirements: INT 8

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 1, "value": 0 }, - "requirements": "INT 8", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/hardy_as_a_sasquatch__5FSxhtSwphd72BS1.json b/data/packs/perks.db/hardy_as_a_sasquatch__5FSxhtSwphd72BS1.json index 030df9bd..a903a43b 100644 --- a/data/packs/perks.db/hardy_as_a_sasquatch__5FSxhtSwphd72BS1.json +++ b/data/packs/perks.db/hardy_as_a_sasquatch__5FSxhtSwphd72BS1.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/healer__LzDGf5TGlzcOBgFd.json b/data/packs/perks.db/healer__LzDGf5TGlzcOBgFd.json index dafee3c0..e3529e7a 100644 --- a/data/packs/perks.db/healer__LzDGf5TGlzcOBgFd.json +++ b/data/packs/perks.db/healer__LzDGf5TGlzcOBgFd.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Healer", "system": { - "description": "

When you heal a patient’s HP using the First Aid action, increase the amount of HP healed by +1 per rank in this perk. Each time you take this perk, the level requirement increases by 5.

", + "description": "

When you heal a patient’s HP using the First Aid action, increase the amount of HP healed by +1 per rank in this perk. Each time you take this perk, the level requirement increases by 5.

\n

Requirements: INT 7, Level 1+

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 3, "value": 0 }, - "requirements": "INT 7, Level 1+", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/heave_ho___FLW7Fx5HVaIxuekh.json b/data/packs/perks.db/heave_ho___FLW7Fx5HVaIxuekh.json index 44fbbfd5..f170fb0f 100644 --- a/data/packs/perks.db/heave_ho___FLW7Fx5HVaIxuekh.json +++ b/data/packs/perks.db/heave_ho___FLW7Fx5HVaIxuekh.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Heave Ho!", "system": { - "description": "

When you make a thrown weapon attack, you may spend 1 AP to increase the Range of the weapon by one step—from Close to Medium, or from Medium to Long.

", + "description": "

When you make a thrown weapon attack, you may spend 1 AP to increase the Range of the weapon by one step—from Close to Medium, or from Medium to Long.

\n

Requirements: STR 8

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 1, "value": 0 }, - "requirements": "STR 8", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/homesteading_horror__6XStNgfUJG92au27.json b/data/packs/perks.db/homesteading_horror__6XStNgfUJG92au27.json index df138db9..47f61d6a 100644 --- a/data/packs/perks.db/homesteading_horror__6XStNgfUJG92au27.json +++ b/data/packs/perks.db/homesteading_horror__6XStNgfUJG92au27.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/hunter__zB82J3WJ7ld01RYR.json b/data/packs/perks.db/hunter__zB82J3WJ7ld01RYR.json index 796bea72..51271242 100644 --- a/data/packs/perks.db/hunter__zB82J3WJ7ld01RYR.json +++ b/data/packs/perks.db/hunter__zB82J3WJ7ld01RYR.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Hunter", "system": { - "description": "

When you make an attack against an NPC with one of the Mammal, Lizard, or Insect keywords and the Mutated keyword, your attack gains the Vicious damage effect, if it did not already have that effect.

", + "description": "

When you make an attack against an NPC with one of the Mammal, Lizard, or Insect keywords and the Mutated keyword, your attack gains the Vicious damage effect, if it did not already have that effect.

\n

Requirements: END 6

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 1, "value": 0 }, - "requirements": "END 6", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/hunting_in_the_wastes__p8cH2qolrlrnLKIt.json b/data/packs/perks.db/hunting_in_the_wastes__p8cH2qolrlrnLKIt.json index a89ccb98..d631f099 100644 --- a/data/packs/perks.db/hunting_in_the_wastes__p8cH2qolrlrnLKIt.json +++ b/data/packs/perks.db/hunting_in_the_wastes__p8cH2qolrlrnLKIt.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/i_married_a_robot__xfBuEJQHYAmds5XG.json b/data/packs/perks.db/i_married_a_robot__xfBuEJQHYAmds5XG.json index 2e5e9cc0..9e8ec960 100644 --- a/data/packs/perks.db/i_married_a_robot__xfBuEJQHYAmds5XG.json +++ b/data/packs/perks.db/i_married_a_robot__xfBuEJQHYAmds5XG.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/in_the_bosom_of_the_corsair_queen__bzXcVbZZtHhGCcOs.json b/data/packs/perks.db/in_the_bosom_of_the_corsair_queen__bzXcVbZZtHhGCcOs.json index cad22f01..bf5c347d 100644 --- a/data/packs/perks.db/in_the_bosom_of_the_corsair_queen__bzXcVbZZtHhGCcOs.json +++ b/data/packs/perks.db/in_the_bosom_of_the_corsair_queen__bzXcVbZZtHhGCcOs.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/infiltrator__SihEoKZZ7VgRmxgK.json b/data/packs/perks.db/infiltrator__SihEoKZZ7VgRmxgK.json index 344bd56c..6731e143 100644 --- a/data/packs/perks.db/infiltrator__SihEoKZZ7VgRmxgK.json +++ b/data/packs/perks.db/infiltrator__SihEoKZZ7VgRmxgK.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Infiltrator", "system": { - "description": "

When you attempt a Lockpick skill test to unlock a door or container, you may re-roll 1d20.

", + "description": "

When you attempt a Lockpick skill test to unlock a door or container, you may re-roll 1d20.

\n

Requirements: PER 8

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 1, "value": 0 }, - "requirements": "PER 8", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/insect_repellent_special__qxfqtIIZynyM2qIj.json b/data/packs/perks.db/insect_repellent_special__qxfqtIIZynyM2qIj.json index 89513155..dab9663b 100644 --- a/data/packs/perks.db/insect_repellent_special__qxfqtIIZynyM2qIj.json +++ b/data/packs/perks.db/insect_repellent_special__qxfqtIIZynyM2qIj.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/inspirational__YrVruOKk8Wy2YOc9.json b/data/packs/perks.db/inspirational__YrVruOKk8Wy2YOc9.json index 509d0e53..5e73d35c 100644 --- a/data/packs/perks.db/inspirational__YrVruOKk8Wy2YOc9.json +++ b/data/packs/perks.db/inspirational__YrVruOKk8Wy2YOc9.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Inspirational", "system": { - "description": "

Because you lead by example, the maximum number of AP the group may save is increased by 1.

", + "description": "

Because you lead by example, the maximum number of AP the group may save is increased by 1.

\n

Requirements: CHA 8

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 1, "value": 0 }, - "requirements": "CHA 8", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/intense_training__P3SMmJulZT5OyArI.json b/data/packs/perks.db/intense_training__P3SMmJulZT5OyArI.json index 99c3dcea..f8e07e36 100644 --- a/data/packs/perks.db/intense_training__P3SMmJulZT5OyArI.json +++ b/data/packs/perks.db/intense_training__P3SMmJulZT5OyArI.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Intense Training", "system": { - "description": "

Increase any one S.P.E.C.I.A.L attribute by 1 rank. As usual, your S.P.E.C.I.A.L attributes cannot be increased beyond 10 using this method. Each time you take this perk, the level requirement increases by 2.

", + "description": "

Increase any one S.P.E.C.I.A.L attribute by 1 rank. As usual, your S.P.E.C.I.A.L attributes cannot be increased beyond 10 using this method. Each time you take this perk, the level requirement increases by 2.

\n

Requirements: Level 2+

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 10, "value": 0 }, - "requirements": "Level 2+", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/iron_fist__mU5YvUEtBshgRPFD.json b/data/packs/perks.db/iron_fist__mU5YvUEtBshgRPFD.json index 86972d1c..af09fb01 100644 --- a/data/packs/perks.db/iron_fist__mU5YvUEtBshgRPFD.json +++ b/data/packs/perks.db/iron_fist__mU5YvUEtBshgRPFD.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Iron Fist", "system": { - "description": "

At rank 1, your unarmed attacks inflict +1DCD damage. At rank 2, your unarmed attacks also gain the Vicious damage effect. Each time you take this perk, the level requirement increases by 5.

", + "description": "

At rank 1, your unarmed attacks inflict +1DCD damage. At rank 2, your unarmed attacks also gain the Vicious damage effect. Each time you take this perk, the level requirement increases by 5.

\n

Requirements: STR 6, Level 1+

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 2, "value": 0 }, - "requirements": "STR 6, Level 1+", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/jungle_of_the_bat_babies__FgiFIu2LmrckPy5Y.json b/data/packs/perks.db/jungle_of_the_bat_babies__FgiFIu2LmrckPy5Y.json index 4b931610..90594b46 100644 --- a/data/packs/perks.db/jungle_of_the_bat_babies__FgiFIu2LmrckPy5Y.json +++ b/data/packs/perks.db/jungle_of_the_bat_babies__FgiFIu2LmrckPy5Y.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/junktown_jerky_vendor__4uNzMc2WNqMYZEuW.json b/data/packs/perks.db/junktown_jerky_vendor__4uNzMc2WNqMYZEuW.json index 50a04776..22b9df54 100644 --- a/data/packs/perks.db/junktown_jerky_vendor__4uNzMc2WNqMYZEuW.json +++ b/data/packs/perks.db/junktown_jerky_vendor__4uNzMc2WNqMYZEuW.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Junktown Jerky Vendor", "system": { - "description": "

The difficulty of any CHA + Barter test you attempt to buy or sell goods is reduced by 1, to a minimum of 0.

", + "description": "

The difficulty of any CHA + Barter test you attempt to buy or sell goods is reduced by 1, to a minimum of 0.

\n

Requirements: CHA 8

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 1, "value": 0 }, - "requirements": "CHA 8", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/jury_rigging__trdF2qUBRHrj3YNW.json b/data/packs/perks.db/jury_rigging__trdF2qUBRHrj3YNW.json index ea3cfffa..cdd32eb6 100644 --- a/data/packs/perks.db/jury_rigging__trdF2qUBRHrj3YNW.json +++ b/data/packs/perks.db/jury_rigging__trdF2qUBRHrj3YNW.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Jury Rigging", "system": { - "description": "

You can repair an item without needing to expend any components. However, the repair is temporary, and the item will break again on the next complication you suffer while using it. The complication range of all skill tests to use the item increases by 1, to the roll of a 19–20.

", + "description": "

You can repair an item without needing to expend any components. However, the repair is temporary, and the item will break again on the next complication you suffer while using it. The complication range of all skill tests to use the item increases by 1, to the roll of a 19–20.

\n

Requirements: None

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 1, "value": 0 }, - "requirements": "None", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/laser_commander__VtCwIMtash7XcwxP.json b/data/packs/perks.db/laser_commander__VtCwIMtash7XcwxP.json index 6bbf596f..f9198058 100644 --- a/data/packs/perks.db/laser_commander__VtCwIMtash7XcwxP.json +++ b/data/packs/perks.db/laser_commander__VtCwIMtash7XcwxP.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Laser Commander", "system": { - "description": "

When you make an attack with a ranged energy weapon, the damage is increased by +1DDCD per rank in this perk. Each time you take this perk, the level requirement increases by 4.

", + "description": "

When you make an attack with a ranged energy weapon, the damage is increased by +1DDCD per rank in this perk. Each time you take this perk, the level requirement increases by 4.

\n

Requirements: PER 8, Level 2+

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 2, "value": 0 }, - "requirements": "PER 8, Level 2+", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/lasers___hunting__acceptable_overkill__nRkIZJRQqkTsqQV7.json b/data/packs/perks.db/lasers___hunting__acceptable_overkill__nRkIZJRQqkTsqQV7.json index 46620e62..ababba6b 100644 --- a/data/packs/perks.db/lasers___hunting__acceptable_overkill__nRkIZJRQqkTsqQV7.json +++ b/data/packs/perks.db/lasers___hunting__acceptable_overkill__nRkIZJRQqkTsqQV7.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/lead_belly__wE5dyJKCl7gysWci.json b/data/packs/perks.db/lead_belly__wE5dyJKCl7gysWci.json index 9b1e16d9..f1005b8d 100644 --- a/data/packs/perks.db/lead_belly__wE5dyJKCl7gysWci.json +++ b/data/packs/perks.db/lead_belly__wE5dyJKCl7gysWci.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Lead Belly", "system": { - "description": "

At rank 1, you may re-roll the CD to determine if you suffer radiation damage from irradiated food or drink. At rank 2, you are immune to radiation damage from consuming irradiated food or drink. Each time you take this perk, the level requirement increases by 4.

", + "description": "

At rank 1, you may re-roll the CD to determine if you suffer radiation damage from irradiated food or drink. At rank 2, you are immune to radiation damage from consuming irradiated food or drink. Each time you take this perk, the level requirement increases by 4.

\n

Requirements: END 6, Level 1+

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 2, "value": 0 }, - "requirements": "END 6, Level 1+", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/life_giver__w1Vn3NXOGw30Hi13.json b/data/packs/perks.db/life_giver__w1Vn3NXOGw30Hi13.json index bd17b680..5ab2546f 100644 --- a/data/packs/perks.db/life_giver__w1Vn3NXOGw30Hi13.json +++ b/data/packs/perks.db/life_giver__w1Vn3NXOGw30Hi13.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Life Giver", "system": { - "description": "

Increase your maximum health points by your Endurance rank. Each time you take this perk, the level requirement increases by 5.

", + "description": "

Increase your maximum health points by your Endurance rank. Each time you take this perk, the level requirement increases by 5.

\n

Requirements: Level 5+

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 5, "value": 0 }, - "requirements": "Level 5+", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/life_long_best_friends___SKyP3uQ4CQCcdKZs.json b/data/packs/perks.db/life_long_best_friends___SKyP3uQ4CQCcdKZs.json index 6e523619..aec2f6f4 100644 --- a/data/packs/perks.db/life_long_best_friends___SKyP3uQ4CQCcdKZs.json +++ b/data/packs/perks.db/life_long_best_friends___SKyP3uQ4CQCcdKZs.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/light_step__iMnBN75TTp1DuKzk.json b/data/packs/perks.db/light_step__iMnBN75TTp1DuKzk.json index a7f6b393..78fd8505 100644 --- a/data/packs/perks.db/light_step__iMnBN75TTp1DuKzk.json +++ b/data/packs/perks.db/light_step__iMnBN75TTp1DuKzk.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Light Step", "system": { - "description": "

When you roll to generate any complications on an Agility-based skill test, you may ignore one complication for every 1 AP spent. In addition, you may re-roll 1d20 on any AGI + Athletics test to avoid traps triggered by pressure plates or similar mechanisms.

", + "description": "

When you roll to generate any complications on an Agility-based skill test, you may ignore one complication for every 1 AP spent. In addition, you may re-roll 1d20 on any AGI + Athletics test to avoid traps triggered by pressure plates or similar mechanisms.

\n

Requirements: None

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 1, "value": 0 }, - "requirements": "None", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/little_guns_for_little_ladies__YUHxXpiMFWmEtbXB.json b/data/packs/perks.db/little_guns_for_little_ladies__YUHxXpiMFWmEtbXB.json index f883e995..201de0a6 100644 --- a/data/packs/perks.db/little_guns_for_little_ladies__YUHxXpiMFWmEtbXB.json +++ b/data/packs/perks.db/little_guns_for_little_ladies__YUHxXpiMFWmEtbXB.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/locksmith_certification_special___pass_with_flying_colors__xRA5ktVoyWDHRy8N.json b/data/packs/perks.db/locksmith_certification_special___pass_with_flying_colors__xRA5ktVoyWDHRy8N.json index 6e9a690d..62020352 100644 --- a/data/packs/perks.db/locksmith_certification_special___pass_with_flying_colors__xRA5ktVoyWDHRy8N.json +++ b/data/packs/perks.db/locksmith_certification_special___pass_with_flying_colors__xRA5ktVoyWDHRy8N.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/lost_in_the_snows_of_lust__pIGqn3CdOhsyQyhx.json b/data/packs/perks.db/lost_in_the_snows_of_lust__pIGqn3CdOhsyQyhx.json index cfd2fbb3..dab96e99 100644 --- a/data/packs/perks.db/lost_in_the_snows_of_lust__pIGqn3CdOhsyQyhx.json +++ b/data/packs/perks.db/lost_in_the_snows_of_lust__pIGqn3CdOhsyQyhx.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/massachusetts_surgical_journal__scI8HRzH0QjDb1bh.json b/data/packs/perks.db/massachusetts_surgical_journal__scI8HRzH0QjDb1bh.json index a8411fe1..e89fb714 100644 --- a/data/packs/perks.db/massachusetts_surgical_journal__scI8HRzH0QjDb1bh.json +++ b/data/packs/perks.db/massachusetts_surgical_journal__scI8HRzH0QjDb1bh.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/master_thief__nOpsl2puqWzQJT4t.json b/data/packs/perks.db/master_thief__nOpsl2puqWzQJT4t.json index 453c5100..035bd2ee 100644 --- a/data/packs/perks.db/master_thief__nOpsl2puqWzQJT4t.json +++ b/data/packs/perks.db/master_thief__nOpsl2puqWzQJT4t.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Master Thief", "system": { - "description": "

When you are attempting to pick a lock or pickpocket somebody, the difficulty of the opponent’s skill test to detect you increases by +1.

", + "description": "

When you are attempting to pick a lock or pickpocket somebody, the difficulty of the opponent’s skill test to detect you increases by +1.

\n

Requirements: PER 8, AGI 9

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 1, "value": 0 }, - "requirements": "PER 8, AGI 9", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/medic__fMU0zfQYyhkwZ6Ck.json b/data/packs/perks.db/medic__fMU0zfQYyhkwZ6Ck.json index 402f4142..3c91b6dd 100644 --- a/data/packs/perks.db/medic__fMU0zfQYyhkwZ6Ck.json +++ b/data/packs/perks.db/medic__fMU0zfQYyhkwZ6Ck.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Medic", "system": { - "description": "

When you use the First Aid action to try to treat an injury, you can re-roll 1d20.

", + "description": "

When you use the First Aid action to try to treat an injury, you can re-roll 1d20.

\n

Requirements: INT 8

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 1, "value": 0 }, - "requirements": "INT 8", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/meeting_people__tKQ4oQiQxWoM10p6.json b/data/packs/perks.db/meeting_people__tKQ4oQiQxWoM10p6.json index c55ec764..063ed59b 100644 --- a/data/packs/perks.db/meeting_people__tKQ4oQiQxWoM10p6.json +++ b/data/packs/perks.db/meeting_people__tKQ4oQiQxWoM10p6.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/meltdown__SFhtHQk4lztiJ8gw.json b/data/packs/perks.db/meltdown__SFhtHQk4lztiJ8gw.json index e179d23c..ae4ece63 100644 --- a/data/packs/perks.db/meltdown__SFhtHQk4lztiJ8gw.json +++ b/data/packs/perks.db/meltdown__SFhtHQk4lztiJ8gw.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Meltdown", "system": { - "description": "

When you kill an enemy with an energy weapon, they explode. Roll a number of DDCD equal to half the weapon’s damage rating (round down). For each Effect rolled, one creature within Close range of the exploding enemy (starting with the closest) suffers energy damage equal to the total rolled on the DDCD.

", + "description": "

When you kill an enemy with an energy weapon, they explode. Roll a number of DDCD equal to half the weapon’s damage rating (round down). For each Effect rolled, one creature within Close range of the exploding enemy (starting with the closest) suffers energy damage equal to the total rolled on the DDCD.

\n

Requirements: PER 10

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 1, "value": 0 }, - "requirements": "PER 10", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/mister_sandman__ycaluMjkY5xApFFl.json b/data/packs/perks.db/mister_sandman__ycaluMjkY5xApFFl.json index ffeb58d1..e4653753 100644 --- a/data/packs/perks.db/mister_sandman__ycaluMjkY5xApFFl.json +++ b/data/packs/perks.db/mister_sandman__ycaluMjkY5xApFFl.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Mister Sandman", "system": { - "description": "

When you make a sneak attack with a silenced or suppressed weapon, the damage is increased by +2CD. You cannot gain this benefit while in Power Armor.

", + "description": "

When you make a sneak attack with a silenced or suppressed weapon, the damage is increased by +2CD. You cannot gain this benefit while in Power Armor.

\n

Requirements: AGI 9

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 1, "value": 0 }, - "requirements": "AGI 9", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/moving_target__URnrv6ebs1Oqso2m.json b/data/packs/perks.db/moving_target__URnrv6ebs1Oqso2m.json index 91c65b08..60796e6d 100644 --- a/data/packs/perks.db/moving_target__URnrv6ebs1Oqso2m.json +++ b/data/packs/perks.db/moving_target__URnrv6ebs1Oqso2m.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Moving Target", "system": { - "description": "

When you take the Sprint action, your Defense increases by +1 until the start of your next turn.

", + "description": "

When you take the Sprint action, your Defense increases by +1 until the start of your next turn.

\n

Requirements: AGI 6

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 1, "value": 0 }, - "requirements": "AGI 6", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/mysteries_of_the_master_key_exposed___dx2dkCtFBWb5kukV.json b/data/packs/perks.db/mysteries_of_the_master_key_exposed___dx2dkCtFBWb5kukV.json index d0657392..a6a6d121 100644 --- a/data/packs/perks.db/mysteries_of_the_master_key_exposed___dx2dkCtFBWb5kukV.json +++ b/data/packs/perks.db/mysteries_of_the_master_key_exposed___dx2dkCtFBWb5kukV.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/mysterious_stranger__EYZgPc9OM7qsPpT1.json b/data/packs/perks.db/mysterious_stranger__EYZgPc9OM7qsPpT1.json index ae2c2099..21e7ee79 100644 --- a/data/packs/perks.db/mysterious_stranger__EYZgPc9OM7qsPpT1.json +++ b/data/packs/perks.db/mysterious_stranger__EYZgPc9OM7qsPpT1.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Mysterious Stranger", "system": { - "description": "

From time to time, a Mysterious Stranger comes to your aid, with lethal results. At the start of a combat encounter, you may spend 1 Luck point. If you do so, then at any point during the scene, the GM may have the Mysterious Stranger appear, make a single ranged attack against an enemy you attacked, or who just attacked you, and then vanish. If you spend a Luck point and the Mysterious Stranger does not appear, the GM must refund the Luck point you spent.

\n

The stranger has an AGI of 10, a Small Guns skill of 6, and counts Small Guns as a Tag skill. They always roll 3d20 for attacks, rather than 2d20, and their attack—using a custom .44 Magnum revolver—inflicts 8CD Piercing 1, Vicious physical damage. They always appear within their weapon’s ideal range. Any attempt to find where the Stranger went after their attack fails.

", + "description": "

From time to time, a Mysterious Stranger comes to your aid, with lethal results. At the start of a combat encounter, you may spend 1 Luck point. If you do so, then at any point during the scene, the GM may have the Mysterious Stranger appear, make a single ranged attack against an enemy you attacked, or who just attacked you, and then vanish. If you spend a Luck point and the Mysterious Stranger does not appear, the GM must refund the Luck point you spent.

\n

The stranger has an AGI of 10, a Small Guns skill of 6, and counts Small Guns as a Tag skill. They always roll 3d20 for attacks, rather than 2d20, and their attack—using a custom .44 Magnum revolver—inflicts 8CD Piercing 1, Vicious physical damage. They always appear within their weapon’s ideal range. Any attempt to find where the Stranger went after their attack fails.

\n

Requirements: LCK 7

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 1, "value": 0 }, - "requirements": "LCK 7", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/nerd_rage___gbPgHoavxEEaYC4j.json b/data/packs/perks.db/nerd_rage___gbPgHoavxEEaYC4j.json index 0ec64fb0..a8908083 100644 --- a/data/packs/perks.db/nerd_rage___gbPgHoavxEEaYC4j.json +++ b/data/packs/perks.db/nerd_rage___gbPgHoavxEEaYC4j.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Nerd Rage!", "system": { - "description": "

While your health is reduced to less than ¼ of your maximum, you add +1 to your physical DR, +1 to your energy DR, and +1 CD to the damage of all your attacks.

\n

At rank 2, this increases to +2 DR, and +2 CD damage. At rank 3, this increases to +3 DR and +3 CD damage.

\n

Each time you take this perk, the level requirement increases by 5.

", + "description": "

While your health is reduced to less than ¼ of your maximum, you add +1 to your physical DR, +1 to your energy DR, and +1 CD to the damage of all your attacks.

\n

At rank 2, this increases to +2 DR, and +2 CD damage. At rank 3, this increases to +3 DR and +3 CD damage.

\n

Each time you take this perk, the level requirement increases by 5.

\n

Requirements: INT 8, Level 2+

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 3, "value": 0 }, - "requirements": "INT 8, Level 2+", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/night_person__jqGwYM88awxTPn46.json b/data/packs/perks.db/night_person__jqGwYM88awxTPn46.json index b599ae53..02c04e7e 100644 --- a/data/packs/perks.db/night_person__jqGwYM88awxTPn46.json +++ b/data/packs/perks.db/night_person__jqGwYM88awxTPn46.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Night Person", "system": { - "description": "

You reduce any difficulty increases due to darkness by 1.

", + "description": "

You reduce any difficulty increases due to darkness by 1.

\n

Requirements: PER 7

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 1, "value": 0 }, - "requirements": "PER 7", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/nightmare_in_the_garden__C2pRfk15zpFV3sgG.json b/data/packs/perks.db/nightmare_in_the_garden__C2pRfk15zpFV3sgG.json index 93ee43e2..e4682eb6 100644 --- a/data/packs/perks.db/nightmare_in_the_garden__C2pRfk15zpFV3sgG.json +++ b/data/packs/perks.db/nightmare_in_the_garden__C2pRfk15zpFV3sgG.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/ninja__82n08gxPWsoaLlvK.json b/data/packs/perks.db/ninja__82n08gxPWsoaLlvK.json index 806530b7..dabf1662 100644 --- a/data/packs/perks.db/ninja__82n08gxPWsoaLlvK.json +++ b/data/packs/perks.db/ninja__82n08gxPWsoaLlvK.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Ninja", "system": { - "description": "

When you make a sneak attack with a melee weapon or unarmed attack, the damage is increased by +2 CD. You cannot gain this benefit while in Power Armor.

", + "description": "

When you make a sneak attack with a melee weapon or unarmed attack, the damage is increased by +2 CD. You cannot gain this benefit while in Power Armor.

\n

Requirements: AGI 8

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 1, "value": 0 }, - "requirements": "AGI 8", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/nuclear_physicist__zlPvWlAVWezHiFXX.json b/data/packs/perks.db/nuclear_physicist__zlPvWlAVWezHiFXX.json index 093fa9cc..f567d6c9 100644 --- a/data/packs/perks.db/nuclear_physicist__zlPvWlAVWezHiFXX.json +++ b/data/packs/perks.db/nuclear_physicist__zlPvWlAVWezHiFXX.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Nuclear Physicist", "system": { - "description": "

Whenever you use a weapon that inflicts radiation damage, or has the Radioactive damage effect, each Effect you roll inflicts one additional point of radiation damage.

\n

In addition, fusion cores you use have 3 additional charges.

", + "description": "

Whenever you use a weapon that inflicts radiation damage, or has the Radioactive damage effect, each Effect you roll inflicts one additional point of radiation damage.

\n

In addition, fusion cores you use have 3 additional charges.

\n

Requirements: INT 9

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 1, "value": 0 }, - "requirements": "INT 9", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/nuke_the_man___H27K9ike953ZIyRl.json b/data/packs/perks.db/nuke_the_man___H27K9ike953ZIyRl.json index 2330e997..121390cc 100644 --- a/data/packs/perks.db/nuke_the_man___H27K9ike953ZIyRl.json +++ b/data/packs/perks.db/nuke_the_man___H27K9ike953ZIyRl.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/open_any_lock_in_5_seconds_flat__mrgLpKa5RkDmIWHq.json b/data/packs/perks.db/open_any_lock_in_5_seconds_flat__mrgLpKa5RkDmIWHq.json index f1f7aa1d..f350d990 100644 --- a/data/packs/perks.db/open_any_lock_in_5_seconds_flat__mrgLpKa5RkDmIWHq.json +++ b/data/packs/perks.db/open_any_lock_in_5_seconds_flat__mrgLpKa5RkDmIWHq.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/pain_train__TzAVKNEtdWWgfx4u.json b/data/packs/perks.db/pain_train__TzAVKNEtdWWgfx4u.json index 11aa801d..f602856a 100644 --- a/data/packs/perks.db/pain_train__TzAVKNEtdWWgfx4u.json +++ b/data/packs/perks.db/pain_train__TzAVKNEtdWWgfx4u.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Pain Train", "system": { - "description": "

You may Charge as a major action if you are wearing Power Armor or are a super mutant. This is a movement action, and you may not Move or Sprint in the same turn. When you take this action, you move into reach of an enemy within Medium range (1 zone) and make a STR + Athletics test with a difficulty of 2. If you succeed, the enemy suffers damage equal to your normal unarmed damage, and is knocked prone.

\n

At rank 2, you add +1DCD and the Stun damage effect to the damage inflicted. At the GM’s discretion, especially large or sturdy creatures cannot be knocked prone by this action. Each time you take this perk, the level requirement increases by 5.

", + "description": "

You may Charge as a major action if you are wearing Power Armor or are a super mutant. This is a movement action, and you may not Move or Sprint in the same turn. When you take this action, you move into reach of an enemy within Medium range (1 zone) and make a STR + Athletics test with a difficulty of 2. If you succeed, the enemy suffers damage equal to your normal unarmed damage, and is knocked prone.

\n

At rank 2, you add +1DCD and the Stun damage effect to the damage inflicted. At the GM’s discretion, especially large or sturdy creatures cannot be knocked prone by this action. Each time you take this perk, the level requirement increases by 5.

\n

Requirements: STR 9, END 7, Level 1+

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 2, "value": 0 }, - "requirements": "STR 9, END 7, Level 1+", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/paralyzing_palm__Epn0E2yMAxTmSOFX.json b/data/packs/perks.db/paralyzing_palm__Epn0E2yMAxTmSOFX.json index a8ebc071..7ca327ac 100644 --- a/data/packs/perks.db/paralyzing_palm__Epn0E2yMAxTmSOFX.json +++ b/data/packs/perks.db/paralyzing_palm__Epn0E2yMAxTmSOFX.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Paralyzing Palm", "system": { - "description": "

When you make an unarmed attack, and choose to strike a specific location, your attack gains the Stun damage effect.

", + "description": "

When you make an unarmed attack, and choose to strike a specific location, your attack gains the Stun damage effect.

\n

Requirements: STR 8

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 1, "value": 0 }, - "requirements": "STR 8", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/party_boy___party_girl__iDaMlrcxl6kEm3Ex.json b/data/packs/perks.db/party_boy___party_girl__iDaMlrcxl6kEm3Ex.json index dfdfcdfc..11b54d8b 100644 --- a/data/packs/perks.db/party_boy___party_girl__iDaMlrcxl6kEm3Ex.json +++ b/data/packs/perks.db/party_boy___party_girl__iDaMlrcxl6kEm3Ex.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Party Boy / Party Girl", "system": { - "description": "

You cannot become addicted to alcoholic drinks, and whenever you drink an alcoholic drink, you heal +2 HP.

", + "description": "

You cannot become addicted to alcoholic drinks, and whenever you drink an alcoholic drink, you heal +2 HP.

\n

Requirements: END 6, CHA 7

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 1, "value": 0 }, - "requirements": "END 6, CHA 7", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/pathfinder__RhITTHDy13MufCZy.json b/data/packs/perks.db/pathfinder__RhITTHDy13MufCZy.json index aeee4edd..b63877ed 100644 --- a/data/packs/perks.db/pathfinder__RhITTHDy13MufCZy.json +++ b/data/packs/perks.db/pathfinder__RhITTHDy13MufCZy.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Pathfinder", "system": { - "description": "

When travelling over long distances through the wilderness, a successful PER + Survival test (with a difficulty determined by the GM, based on the terrain) reduces the travel time by half.

", + "description": "

When travelling over long distances through the wilderness, a successful PER + Survival test (with a difficulty determined by the GM, based on the terrain) reduces the travel time by half.

\n

Requirements: PER 6, END 6

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 1, "value": 0 }, - "requirements": "PER 6, END 6", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/pharma_farma__E3vqYT7JvmyDeFyU.json b/data/packs/perks.db/pharma_farma__E3vqYT7JvmyDeFyU.json index 38506676..a894ce39 100644 --- a/data/packs/perks.db/pharma_farma__E3vqYT7JvmyDeFyU.json +++ b/data/packs/perks.db/pharma_farma__E3vqYT7JvmyDeFyU.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Pharma Farma", "system": { - "description": "

When you are scavenging a location that contains medicine or chems, you find one additional item, randomly determined, without spending AP.

", + "description": "

When you are scavenging a location that contains medicine or chems, you find one additional item, randomly determined, without spending AP.

\n

Requirements: LCK 6

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 1, "value": 0 }, - "requirements": "LCK 6", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/pickpocket__e4HPClvz4fA06tUc.json b/data/packs/perks.db/pickpocket__e4HPClvz4fA06tUc.json index 0815fe5f..d6d86e2e 100644 --- a/data/packs/perks.db/pickpocket__e4HPClvz4fA06tUc.json +++ b/data/packs/perks.db/pickpocket__e4HPClvz4fA06tUc.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Pickpocket", "system": { - "description": "

At rank 1, you can ignore the first complication you roll when you make an AGI + Sneak test to steal an object from someone else’s person or to plant something on them.

\n

At rank 2, you can re-roll 1d20 in your dice pool when attempting to pick someone’s pocket.

\n

At rank 3, you reduce the difficulty of attempts to pick someone’s pocket by 1.

\n

Each time you take this perk, the level requirement increases by 3.

", + "description": "

At rank 1, you can ignore the first complication you roll when you make an AGI + Sneak test to steal an object from someone else’s person or to plant something on them.

\n

At rank 2, you can re-roll 1d20 in your dice pool when attempting to pick someone’s pocket.

\n

At rank 3, you reduce the difficulty of attempts to pick someone’s pocket by 1.

\n

Each time you take this perk, the level requirement increases by 3.

\n

Requirements: PER 8, AGI 8, Level 1+

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 3, "value": 0 }, - "requirements": "PER 8, AGI 8, Level 1+", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/piercing_strike__H6x4BnrUSmI33dwZ.json b/data/packs/perks.db/piercing_strike__H6x4BnrUSmI33dwZ.json index cb91c287..560cc1fb 100644 --- a/data/packs/perks.db/piercing_strike__H6x4BnrUSmI33dwZ.json +++ b/data/packs/perks.db/piercing_strike__H6x4BnrUSmI33dwZ.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Piercing Strike", "system": { - "description": "

Your attacks using unarmed attacks and bladed melee weapons gain the Piercing 1 damage effect, or add +1 to the rating of any Piercing X damage effect they already had.

", + "description": "

Your attacks using unarmed attacks and bladed melee weapons gain the Piercing 1 damage effect, or add +1 to the rating of any Piercing X damage effect they already had.

\n

Requirements: STR 7

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 1, "value": 0 }, - "requirements": "STR 7", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/plasma__the_weapon_of_tomorrow__SbayR4I8JCyymq0a.json b/data/packs/perks.db/plasma__the_weapon_of_tomorrow__SbayR4I8JCyymq0a.json index 76884b6b..2ff68c0f 100644 --- a/data/packs/perks.db/plasma__the_weapon_of_tomorrow__SbayR4I8JCyymq0a.json +++ b/data/packs/perks.db/plasma__the_weapon_of_tomorrow__SbayR4I8JCyymq0a.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/programmer_s_digest__xmOWzjBpDXRfPa9Y.json b/data/packs/perks.db/programmer_s_digest__xmOWzjBpDXRfPa9Y.json index 8e112993..72abf918 100644 --- a/data/packs/perks.db/programmer_s_digest__xmOWzjBpDXRfPa9Y.json +++ b/data/packs/perks.db/programmer_s_digest__xmOWzjBpDXRfPa9Y.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/pyromaniac__aNO3ZBQmBGS9A94C.json b/data/packs/perks.db/pyromaniac__aNO3ZBQmBGS9A94C.json index ed034b36..c81a0906 100644 --- a/data/packs/perks.db/pyromaniac__aNO3ZBQmBGS9A94C.json +++ b/data/packs/perks.db/pyromaniac__aNO3ZBQmBGS9A94C.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Pyromaniac", "system": { - "description": "

The damage you deal using firebased weapons increases by +1CD per rank. Each time you take this perk, the level requirement increases by 4.

", + "description": "

The damage you deal using firebased weapons increases by +1CD per rank. Each time you take this perk, the level requirement increases by 4.

\n

Requirements: END 6, Level 2+

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 3, "value": 0 }, - "requirements": "END 6, Level 2+", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/quick_draw__Xz1V9etWzTtwt5x5.json b/data/packs/perks.db/quick_draw__Xz1V9etWzTtwt5x5.json index d1d1a9ee..535c2bc6 100644 --- a/data/packs/perks.db/quick_draw__Xz1V9etWzTtwt5x5.json +++ b/data/packs/perks.db/quick_draw__Xz1V9etWzTtwt5x5.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Quick Draw", "system": { - "description": "

Each turn, you may draw a single weapon or item carried on your person without using a minor action.

", + "description": "

Each turn, you may draw a single weapon or item carried on your person without using a minor action.

\n

Requirements: AGI 6

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 1, "value": 0 }, - "requirements": "AGI 6", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/quick_hands__2UGzU0qmtozi4QZK.json b/data/packs/perks.db/quick_hands__2UGzU0qmtozi4QZK.json index 048e6a83..368aad40 100644 --- a/data/packs/perks.db/quick_hands__2UGzU0qmtozi4QZK.json +++ b/data/packs/perks.db/quick_hands__2UGzU0qmtozi4QZK.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Quick Hands", "system": { - "description": "

You can reload firearms faster. When you make a ranged attack, you may spend 2 AP to increase the Fire Rate of your gun by +2 for that attack.

", + "description": "

You can reload firearms faster. When you make a ranged attack, you may spend 2 AP to increase the Fire Rate of your gun by +2 for that attack.

\n

Requirements: AGI 8

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 1, "value": 0 }, - "requirements": "AGI 8", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/rad_resistance__TFJbnmRbE7cisziV.json b/data/packs/perks.db/rad_resistance__TFJbnmRbE7cisziV.json index 0d5305f3..81385e08 100644 --- a/data/packs/perks.db/rad_resistance__TFJbnmRbE7cisziV.json +++ b/data/packs/perks.db/rad_resistance__TFJbnmRbE7cisziV.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Rad Resistance", "system": { - "description": "

Your radiation Damage Resistance, to all hit locations, increases by +1 per rank in this perk. Each time you take this perk, the level requirement increases by 4.

", + "description": "

Your radiation Damage Resistance, to all hit locations, increases by +1 per rank in this perk. Each time you take this perk, the level requirement increases by 4.

\n

Requirements: END 8, Level 1+

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 2, "value": 0 }, - "requirements": "END 8, Level 1+", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/refractor__myJS8tB5FHk3Jo65.json b/data/packs/perks.db/refractor__myJS8tB5FHk3Jo65.json index 92736114..70b459c7 100644 --- a/data/packs/perks.db/refractor__myJS8tB5FHk3Jo65.json +++ b/data/packs/perks.db/refractor__myJS8tB5FHk3Jo65.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Refractor", "system": { - "description": "

Your energy Damage Resistance to all hit locations increases by +1 per rank in this perk. Each time you take this perk, the level requirement increases by 4.

", + "description": "

Your energy Damage Resistance to all hit locations increases by +1 per rank in this perk. Each time you take this perk, the level requirement increases by 4.

\n

Requirements: PER 6, LCK 7, Level 1+

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 2, "value": 0 }, - "requirements": "PER 6, LCK 7, Level 1+", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/ricochet__E6eCO6Hq6gb4KGmQ.json b/data/packs/perks.db/ricochet__E6eCO6Hq6gb4KGmQ.json index e008aee1..6cf80298 100644 --- a/data/packs/perks.db/ricochet__E6eCO6Hq6gb4KGmQ.json +++ b/data/packs/perks.db/ricochet__E6eCO6Hq6gb4KGmQ.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Ricochet", "system": { - "description": "

If an enemy makes a ranged attack against you and rolls a complication, you may spend one Luck point to have their ricochet hit them. Resolve the damage roll against the attacking enemy instead.

", + "description": "

If an enemy makes a ranged attack against you and rolls a complication, you may spend one Luck point to have their ricochet hit them. Resolve the damage roll against the attacking enemy instead.

\n

Requirements: LCK 10, Level 5+

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 1, "value": 0 }, - "requirements": "LCK 10, Level 5+", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/rifleman__RkftnkHGKVnz6URN.json b/data/packs/perks.db/rifleman__RkftnkHGKVnz6URN.json index a6b8e516..645a0fec 100644 --- a/data/packs/perks.db/rifleman__RkftnkHGKVnz6URN.json +++ b/data/packs/perks.db/rifleman__RkftnkHGKVnz6URN.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Rifleman", "system": { - "description": "

When you make a ranged attack with any two-handed weapon with a Fire Rate of 2 or lower (except heavy weapons), you add +1 CD to the weapon’s damage per rank.

\n

At rank 2, you also add the Piercing 1 damage effect, or add +1 to the rating of any Piercing X damage effect the weapon already had. Each time you take this perk, the level requirement increases by 4.

", + "description": "

When you make a ranged attack with any two-handed weapon with a Fire Rate of 2 or lower (except heavy weapons), you add +1 CD to the weapon’s damage per rank.

\n

At rank 2, you also add the Piercing 1 damage effect, or add +1 to the rating of any Piercing X damage effect the weapon already had. Each time you take this perk, the level requirement increases by 4.

\n

Requirements: AGI 7, Level 2+

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 2, "value": 0 }, - "requirements": "AGI 7, Level 2+", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/rise_of_the_mutants___Gn880XN7Auhdop6S.json b/data/packs/perks.db/rise_of_the_mutants___Gn880XN7Auhdop6S.json index 4b4884ef..a26fe489 100644 --- a/data/packs/perks.db/rise_of_the_mutants___Gn880XN7Auhdop6S.json +++ b/data/packs/perks.db/rise_of_the_mutants___Gn880XN7Auhdop6S.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/robotics_expert__GiPKNxmrkWA2k76W.json b/data/packs/perks.db/robotics_expert__GiPKNxmrkWA2k76W.json index 3268e1c0..76b8011b 100644 --- a/data/packs/perks.db/robotics_expert__GiPKNxmrkWA2k76W.json +++ b/data/packs/perks.db/robotics_expert__GiPKNxmrkWA2k76W.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Robotics Expert", "system": { - "description": "

At rank 1, you can modify robot armor, weapon mounts, and modules with rank 1 mods. At rank 2 you gain access to rank 2 mods, and the difficulty of tests to repair robots is permanently reduced by 1. At rank 3 you gain access to rank 3 mods, and you can reprogram robots to fulfil a different function or alter their behavior at the discretion of the GM.

\n

Each time you take this perk, the level requirement increases by 4.

", + "description": "

At rank 1, you can modify robot armor, weapon mounts, and modules with rank 1 mods. At rank 2 you gain access to rank 2 mods, and the difficulty of tests to repair robots is permanently reduced by 1. At rank 3 you gain access to rank 3 mods, and you can reprogram robots to fulfil a different function or alter their behavior at the discretion of the GM.

\n

Each time you take this perk, the level requirement increases by 4.

\n

Requirements: INT 8, Level 2+

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 3, "value": 0 }, - "requirements": "INT 8, Level 2+", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/rocket_science_for_toddlers__3gc78PRC1se8qefU.json b/data/packs/perks.db/rocket_science_for_toddlers__3gc78PRC1se8qefU.json index c51920a2..3c683fe7 100644 --- a/data/packs/perks.db/rocket_science_for_toddlers__3gc78PRC1se8qefU.json +++ b/data/packs/perks.db/rocket_science_for_toddlers__3gc78PRC1se8qefU.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/science___UzRkuAJkvYqK8jrl.json b/data/packs/perks.db/science___UzRkuAJkvYqK8jrl.json index 88a7c7a5..4a9d84d1 100644 --- a/data/packs/perks.db/science___UzRkuAJkvYqK8jrl.json +++ b/data/packs/perks.db/science___UzRkuAJkvYqK8jrl.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Science!", "system": { - "description": "

You can modify energy weapons with weapon mods, and you can also craft certain advanced armor mods. Each rank in this perk unlocks an additional rank of mods: rank 1 unlocks rank 1 mods, rank 2 unlocks rank 2 mods, etc.

\n

Each time you take this perk, the level requirement increases by 4.

", + "description": "

You can modify energy weapons with weapon mods, and you can also craft certain advanced armor mods. Each rank in this perk unlocks an additional rank of mods: rank 1 unlocks rank 1 mods, rank 2 unlocks rank 2 mods, etc.

\n

Each time you take this perk, the level requirement increases by 4.

\n

Requirements: INT 6, Level 2+

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 3, "value": 0 }, - "requirements": "INT 6, Level 2+", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/science_gone_mad___fDu6KU5u17sqA1hf.json b/data/packs/perks.db/science_gone_mad___fDu6KU5u17sqA1hf.json index 1e0b3584..70be89fc 100644 --- a/data/packs/perks.db/science_gone_mad___fDu6KU5u17sqA1hf.json +++ b/data/packs/perks.db/science_gone_mad___fDu6KU5u17sqA1hf.json @@ -17,6 +17,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/scoundrel__j4XUYfEZwmvkfXBe.json b/data/packs/perks.db/scoundrel__j4XUYfEZwmvkfXBe.json index 1ef51ee5..300b098b 100644 --- a/data/packs/perks.db/scoundrel__j4XUYfEZwmvkfXBe.json +++ b/data/packs/perks.db/scoundrel__j4XUYfEZwmvkfXBe.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Scoundrel", "system": { - "description": "

When you make a CHA + Speech test to convince someone of a lie, you may ignore the first complication you roll.

", + "description": "

When you make a CHA + Speech test to convince someone of a lie, you may ignore the first complication you roll.

\n

Requirements: CHA 7

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 1, "value": 0 }, - "requirements": "CHA 7", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/scrapper__dIQkAZGEzdR8j2BB.json b/data/packs/perks.db/scrapper__dIQkAZGEzdR8j2BB.json index 5111ed13..3bc3d4c7 100644 --- a/data/packs/perks.db/scrapper__dIQkAZGEzdR8j2BB.json +++ b/data/packs/perks.db/scrapper__dIQkAZGEzdR8j2BB.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Scrapper", "system": { - "description": "

When you scrap an item, you can salvage uncommon component materials as well as common ones (see p.208). At rank 2, you can also salvage rare materials. Each time you take this perk, the level requirement increases by 5.

", + "description": "

When you scrap an item, you can salvage uncommon component materials as well as common ones (see p.208). At rank 2, you can also salvage rare materials. Each time you take this perk, the level requirement increases by 5.

\n

Requirements: Level 3+

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 2, "value": 0 }, - "requirements": "Level 3+", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/scrounger__zXQUHfk3g9d7WDG1.json b/data/packs/perks.db/scrounger__zXQUHfk3g9d7WDG1.json index 3f81bbc4..8ed44cea 100644 --- a/data/packs/perks.db/scrounger__zXQUHfk3g9d7WDG1.json +++ b/data/packs/perks.db/scrounger__zXQUHfk3g9d7WDG1.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Scrounger", "system": { - "description": "

Whenever you roll to determine how much ammunition you find, you find more.

\n

At rank 1, you find +3CD additional shots. At rank 2, you find +6CCD additional shots. At rank 3, you find +10 CD additional shots. The additional ammo you find is the same as initially found, for example, if you find 10mm ammunition, this perk increases how much 10mm ammo you find. If you find multiple types of ammunition, Scrounger applies to the ammunition with the lowest rarity (GM’s choice if there is a tie).

\n

Each time you take this perk, the level requirement increases by 5.

", + "description": "

Whenever you roll to determine how much ammunition you find, you find more.

\n

At rank 1, you find +3CD additional shots. At rank 2, you find +6CCD additional shots. At rank 3, you find +10 CD additional shots. The additional ammo you find is the same as initially found, for example, if you find 10mm ammunition, this perk increases how much 10mm ammo you find. If you find multiple types of ammunition, Scrounger applies to the ammunition with the lowest rarity (GM’s choice if there is a tie).

\n

Each time you take this perk, the level requirement increases by 5.

\n

Requirements: LCK 6, Level 1+

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 3, "value": 0 }, - "requirements": "LCK 6, Level 1+", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/self_defense_secrets__yXOy24286aAjL5ID.json b/data/packs/perks.db/self_defense_secrets__yXOy24286aAjL5ID.json index f3939e9e..dacbe4e9 100644 --- a/data/packs/perks.db/self_defense_secrets__yXOy24286aAjL5ID.json +++ b/data/packs/perks.db/self_defense_secrets__yXOy24286aAjL5ID.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/shotgun_surgeon__SfcMrqZU78wIJQ0r.json b/data/packs/perks.db/shotgun_surgeon__SfcMrqZU78wIJQ0r.json index 8dba8d2e..9328b395 100644 --- a/data/packs/perks.db/shotgun_surgeon__SfcMrqZU78wIJQ0r.json +++ b/data/packs/perks.db/shotgun_surgeon__SfcMrqZU78wIJQ0r.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Shotgun Surgeon", "system": { - "description": "

Your ranged attacks using shotguns gain the Piercing 1 damage effect, or add +1 to any Piercing X damage effect the weapon already had.

", + "description": "

Your ranged attacks using shotguns gain the Piercing 1 damage effect, or add +1 to any Piercing X damage effect the weapon already had.

\n

Requirements: STR 5, AGI 7

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 1, "value": 0 }, - "requirements": "STR 5, AGI 7", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/size_matters__fGZ6h4VtddiXvpZ3.json b/data/packs/perks.db/size_matters__fGZ6h4VtddiXvpZ3.json index 651a8c07..fc451596 100644 --- a/data/packs/perks.db/size_matters__fGZ6h4VtddiXvpZ3.json +++ b/data/packs/perks.db/size_matters__fGZ6h4VtddiXvpZ3.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Size Matters", "system": { - "description": "

When you make a ranged attack with any heavy weapon, you add +1 CD to the weapon’s damage, per rank. Each time you take this perk, the level requirement increases by 4.

", + "description": "

When you make a ranged attack with any heavy weapon, you add +1 CD to the weapon’s damage, per rank. Each time you take this perk, the level requirement increases by 4.

\n

Requirements: END 7, AGI 6

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 3, "value": 0 }, - "requirements": "END 7, AGI 6", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/skilled__PtWvAVSdwEPjeRb3.json b/data/packs/perks.db/skilled__PtWvAVSdwEPjeRb3.json index 85abcf7c..6a42cfed 100644 --- a/data/packs/perks.db/skilled__PtWvAVSdwEPjeRb3.json +++ b/data/packs/perks.db/skilled__PtWvAVSdwEPjeRb3.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Skilled", "system": { - "description": "

Add +1 rank to two skills or add +2 ranks to one skill. No skill may have more than 6 ranks. Each time you take this perk, the level requirement increases by 3.

", + "description": "

Add +1 rank to two skills or add +2 ranks to one skill. No skill may have more than 6 ranks. Each time you take this perk, the level requirement increases by 3.

\n

Requirements: Level 3+

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 10, "value": 0 }, - "requirements": "Level 3+", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/slayer__6U2ulr6F0lUbJoYl.json b/data/packs/perks.db/slayer__6U2ulr6F0lUbJoYl.json index 3ddb1eef..6b971d14 100644 --- a/data/packs/perks.db/slayer__6U2ulr6F0lUbJoYl.json +++ b/data/packs/perks.db/slayer__6U2ulr6F0lUbJoYl.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Slayer", "system": { - "description": "

When you inflict any damage with an unarmed attack or melee weapon, you may spend 1 Luck point to immediately inflict a critical hit—and therefore an injury—on the location hit.

", + "description": "

When you inflict any damage with an unarmed attack or melee weapon, you may spend 1 Luck point to immediately inflict a critical hit—and therefore an injury—on the location hit.

\n

Requirements: STR 8

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 1, "value": 0 }, - "requirements": "STR 8", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/smooth_talker__fhBw3zhOo6EuZy2j.json b/data/packs/perks.db/smooth_talker__fhBw3zhOo6EuZy2j.json index e1c6e8ae..fe354014 100644 --- a/data/packs/perks.db/smooth_talker__fhBw3zhOo6EuZy2j.json +++ b/data/packs/perks.db/smooth_talker__fhBw3zhOo6EuZy2j.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Smooth Talker", "system": { - "description": "

When you make a Barter or Speech test as part of an opposed test, you may re-roll 1d20.

", + "description": "

When you make a Barter or Speech test as part of an opposed test, you may re-roll 1d20.

\n

Requirements: CHA 6

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 1, "value": 0 }, - "requirements": "CHA 6", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/snakeater__Y7s5hBuYxnIYz4T4.json b/data/packs/perks.db/snakeater__Y7s5hBuYxnIYz4T4.json index 790b72af..bbd6c776 100644 --- a/data/packs/perks.db/snakeater__Y7s5hBuYxnIYz4T4.json +++ b/data/packs/perks.db/snakeater__Y7s5hBuYxnIYz4T4.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Snakeater", "system": { - "description": "

Your poison Damage Resistance increases by +2.

", + "description": "

Your poison Damage Resistance increases by +2.

\n

Requirements: END 7

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 1, "value": 0 }, - "requirements": "END 7", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/sniper__cJGae8CyPIfp6tj7.json b/data/packs/perks.db/sniper__cJGae8CyPIfp6tj7.json index e22450f6..aedb6446 100644 --- a/data/packs/perks.db/sniper__cJGae8CyPIfp6tj7.json +++ b/data/packs/perks.db/sniper__cJGae8CyPIfp6tj7.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Sniper", "system": { - "description": "

When you take the Aim minor action, and then make a ranged attack with a two-handed weapon with the Accurate quality, you can specify a hit location to target without increasing the difficulty of the attack.

", + "description": "

When you take the Aim minor action, and then make a ranged attack with a two-handed weapon with the Accurate quality, you can specify a hit location to target without increasing the difficulty of the attack.

\n

Requirements: PER 8, AGI 6

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 1, "value": 0 }, - "requirements": "PER 8, AGI 6", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/solar_powered__FXbX2ktBJkb6uFIG.json b/data/packs/perks.db/solar_powered__FXbX2ktBJkb6uFIG.json index 2000bd3e..e4a8ded8 100644 --- a/data/packs/perks.db/solar_powered__FXbX2ktBJkb6uFIG.json +++ b/data/packs/perks.db/solar_powered__FXbX2ktBJkb6uFIG.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Solar Powered", "system": { - "description": "

For every hour you spend in direct sunlight, you heal 1 radiation damage.

", + "description": "

For every hour you spend in direct sunlight, you heal 1 radiation damage.

\n

Requirements: END 7

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 1, "value": 0 }, - "requirements": "END 7", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/steady_aim__qrXcBKc5MX1lTmKa.json b/data/packs/perks.db/steady_aim__qrXcBKc5MX1lTmKa.json index 18db6654..97b76d48 100644 --- a/data/packs/perks.db/steady_aim__qrXcBKc5MX1lTmKa.json +++ b/data/packs/perks.db/steady_aim__qrXcBKc5MX1lTmKa.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Steady Aim", "system": { - "description": "

When you take the Aim minor action, you may either re-roll 2d20 on the first attack you make this turn, or re-roll 1d20 on all attacks you make this turn.

", + "description": "

When you take the Aim minor action, you may either re-roll 2d20 on the first attack you make this turn, or re-roll 1d20 on all attacks you make this turn.

\n

Requirements: STR 8, AGI 7

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 1, "value": 0 }, - "requirements": "STR 8, AGI 7", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/street_guns_of_detroit__iQofqWEFwGokog1G.json b/data/packs/perks.db/street_guns_of_detroit__iQofqWEFwGokog1G.json index d9af3251..7c5a0223 100644 --- a/data/packs/perks.db/street_guns_of_detroit__iQofqWEFwGokog1G.json +++ b/data/packs/perks.db/street_guns_of_detroit__iQofqWEFwGokog1G.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/strong_back__6UWfRLqNydpXobqM.json b/data/packs/perks.db/strong_back__6UWfRLqNydpXobqM.json index 26457c39..957f97e0 100644 --- a/data/packs/perks.db/strong_back__6UWfRLqNydpXobqM.json +++ b/data/packs/perks.db/strong_back__6UWfRLqNydpXobqM.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Strong Back", "system": { - "description": "

Your maximum carry weight is increased by +25 lbs., per rank. Each time you take this perk, the level requirement increases by 2.

", + "description": "

Your maximum carry weight is increased by +25 lbs., per rank. Each time you take this perk, the level requirement increases by 2.

\n

Requirements: STR 5, Level 1+

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 3, "value": 0 }, - "requirements": "STR 5, Level 1+", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/surrounded_by_the_dead___pk42jPbAVMosmA0k.json b/data/packs/perks.db/surrounded_by_the_dead___pk42jPbAVMosmA0k.json index c71c89a3..0fa6813c 100644 --- a/data/packs/perks.db/surrounded_by_the_dead___pk42jPbAVMosmA0k.json +++ b/data/packs/perks.db/surrounded_by_the_dead___pk42jPbAVMosmA0k.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/tag___4QXLYHaB9WGmGVY1.json b/data/packs/perks.db/tag___4QXLYHaB9WGmGVY1.json index 5d5ea744..b9d44b71 100644 --- a/data/packs/perks.db/tag___4QXLYHaB9WGmGVY1.json +++ b/data/packs/perks.db/tag___4QXLYHaB9WGmGVY1.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Tag!", "system": { - "description": "

You may select one additional Tag skill. Increase the skill’s rank by 2, to a maximum of 6, and mark it as a Tag skill, allowing you to roll a critical success with a d20 result equal or under the skill’s rank.

", + "description": "

You may select one additional Tag skill. Increase the skill’s rank by 2, to a maximum of 6, and mark it as a Tag skill, allowing you to roll a critical success with a d20 result equal or under the skill’s rank.

\n

Requirements: Level 5+

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 1, "value": 0 }, - "requirements": "Level 5+", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/take_aim__army_style__oRB1ZIvzhsUMElSc.json b/data/packs/perks.db/take_aim__army_style__oRB1ZIvzhsUMElSc.json index 7c86002c..3f19e758 100644 --- a/data/packs/perks.db/take_aim__army_style__oRB1ZIvzhsUMElSc.json +++ b/data/packs/perks.db/take_aim__army_style__oRB1ZIvzhsUMElSc.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/tales_of_a_junktown_jerky_vendor__Qf4PBCvZdSvPAeX7.json b/data/packs/perks.db/tales_of_a_junktown_jerky_vendor__Qf4PBCvZdSvPAeX7.json index cdc67143..420bf9d1 100644 --- a/data/packs/perks.db/tales_of_a_junktown_jerky_vendor__Qf4PBCvZdSvPAeX7.json +++ b/data/packs/perks.db/tales_of_a_junktown_jerky_vendor__Qf4PBCvZdSvPAeX7.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/talk_yourself_sober__Jip3JdMpV9HTHujn.json b/data/packs/perks.db/talk_yourself_sober__Jip3JdMpV9HTHujn.json index b3ef5f58..f51d7ce7 100644 --- a/data/packs/perks.db/talk_yourself_sober__Jip3JdMpV9HTHujn.json +++ b/data/packs/perks.db/talk_yourself_sober__Jip3JdMpV9HTHujn.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/terrifying_presence__CaZiVRLhAUoxj0en.json b/data/packs/perks.db/terrifying_presence__CaZiVRLhAUoxj0en.json index 570c66cc..5f80a62f 100644 --- a/data/packs/perks.db/terrifying_presence__CaZiVRLhAUoxj0en.json +++ b/data/packs/perks.db/terrifying_presence__CaZiVRLhAUoxj0en.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Terrifying Presence", "system": { - "description": "

When you make a Speech test to threaten or scare someone, you may re-roll 1d20.

\n

At rank 2, you may use a major action in combat to threaten an enemy within Medium range, using a STR + Speech test with a difficulty of 2. If you succeed, that enemy must move away from you during their next turn (though they can take any other actions they wish). Each time you take this perk, the level requirement increases by 5.

", + "description": "

When you make a Speech test to threaten or scare someone, you may re-roll 1d20.

\n

At rank 2, you may use a major action in combat to threaten an enemy within Medium range, using a STR + Speech test with a difficulty of 2. If you succeed, that enemy must move away from you during their next turn (though they can take any other actions they wish). Each time you take this perk, the level requirement increases by 5.

\n

Requirements: STR 6, CHA 8, Level 3+

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 2, "value": 0 }, - "requirements": "STR 6, CHA 8, Level 3+", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/the_appalachia_squirrel_massacre__kQD85MOcz1B4KHsV.json b/data/packs/perks.db/the_appalachia_squirrel_massacre__kQD85MOcz1B4KHsV.json index 98ab59c4..2f6f0300 100644 --- a/data/packs/perks.db/the_appalachia_squirrel_massacre__kQD85MOcz1B4KHsV.json +++ b/data/packs/perks.db/the_appalachia_squirrel_massacre__kQD85MOcz1B4KHsV.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/the_bright_side_of_radiation_poisoning__BSi2qWkBGOJKFFED.json b/data/packs/perks.db/the_bright_side_of_radiation_poisoning__BSi2qWkBGOJKFFED.json index 07a46074..4d95383a 100644 --- a/data/packs/perks.db/the_bright_side_of_radiation_poisoning__BSi2qWkBGOJKFFED.json +++ b/data/packs/perks.db/the_bright_side_of_radiation_poisoning__BSi2qWkBGOJKFFED.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/the_future_of_hunting___kBFXBzcatoT884Je.json b/data/packs/perks.db/the_future_of_hunting___kBFXBzcatoT884Je.json index ff8a601b..97ab336b 100644 --- a/data/packs/perks.db/the_future_of_hunting___kBFXBzcatoT884Je.json +++ b/data/packs/perks.db/the_future_of_hunting___kBFXBzcatoT884Je.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/the_gunsmith_of_harper_s_ferry__3caIOATNwBm6EPuh.json b/data/packs/perks.db/the_gunsmith_of_harper_s_ferry__3caIOATNwBm6EPuh.json index dc70edd2..7b32767c 100644 --- a/data/packs/perks.db/the_gunsmith_of_harper_s_ferry__3caIOATNwBm6EPuh.json +++ b/data/packs/perks.db/the_gunsmith_of_harper_s_ferry__3caIOATNwBm6EPuh.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/the_lair_of_the_virgin_eaters__KEpm4gH8RvMjhpoO.json b/data/packs/perks.db/the_lair_of_the_virgin_eaters__KEpm4gH8RvMjhpoO.json index 0723834d..8173f2a3 100644 --- a/data/packs/perks.db/the_lair_of_the_virgin_eaters__KEpm4gH8RvMjhpoO.json +++ b/data/packs/perks.db/the_lair_of_the_virgin_eaters__KEpm4gH8RvMjhpoO.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/the_mad_russian_s_revenge___LSUSRTgMyqfN1EQx.json b/data/packs/perks.db/the_mad_russian_s_revenge___LSUSRTgMyqfN1EQx.json index 265f4edc..8c099387 100644 --- a/data/packs/perks.db/the_mad_russian_s_revenge___LSUSRTgMyqfN1EQx.json +++ b/data/packs/perks.db/the_mad_russian_s_revenge___LSUSRTgMyqfN1EQx.json @@ -17,6 +17,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/the_moon__a_communist_doomsday_device____zZg9mSTuufYGzSib.json b/data/packs/perks.db/the_moon__a_communist_doomsday_device____zZg9mSTuufYGzSib.json index 82f32af9..3583b72f 100644 --- a/data/packs/perks.db/the_moon__a_communist_doomsday_device____zZg9mSTuufYGzSib.json +++ b/data/packs/perks.db/the_moon__a_communist_doomsday_device____zZg9mSTuufYGzSib.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/the_ohio_river_hermit__7vvLcpVth2gMnB7o.json b/data/packs/perks.db/the_ohio_river_hermit__7vvLcpVth2gMnB7o.json index b279ed85..940ad286 100644 --- a/data/packs/perks.db/the_ohio_river_hermit__7vvLcpVth2gMnB7o.json +++ b/data/packs/perks.db/the_ohio_river_hermit__7vvLcpVth2gMnB7o.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/the_secretary_charmer__disfFslU7fhYTIlC.json b/data/packs/perks.db/the_secretary_charmer__disfFslU7fhYTIlC.json index 4ab4d706..fe4202a3 100644 --- a/data/packs/perks.db/the_secretary_charmer__disfFslU7fhYTIlC.json +++ b/data/packs/perks.db/the_secretary_charmer__disfFslU7fhYTIlC.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/the_starlet_sniper___x6hpmUJFDTD3Iw82.json b/data/packs/perks.db/the_starlet_sniper___x6hpmUJFDTD3Iw82.json index a45020a6..2e60dab2 100644 --- a/data/packs/perks.db/the_starlet_sniper___x6hpmUJFDTD3Iw82.json +++ b/data/packs/perks.db/the_starlet_sniper___x6hpmUJFDTD3Iw82.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/tomorrow_s_technology_for_today_s_super_soldiers__eTkUS79PttpiHVm0.json b/data/packs/perks.db/tomorrow_s_technology_for_today_s_super_soldiers__eTkUS79PttpiHVm0.json index 2c88f87b..617216bc 100644 --- a/data/packs/perks.db/tomorrow_s_technology_for_today_s_super_soldiers__eTkUS79PttpiHVm0.json +++ b/data/packs/perks.db/tomorrow_s_technology_for_today_s_super_soldiers__eTkUS79PttpiHVm0.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/toughness__OL6ocnHhOZW4mxns.json b/data/packs/perks.db/toughness__OL6ocnHhOZW4mxns.json index e24cf6e1..b3ca39d3 100644 --- a/data/packs/perks.db/toughness__OL6ocnHhOZW4mxns.json +++ b/data/packs/perks.db/toughness__OL6ocnHhOZW4mxns.json @@ -7,7 +7,7 @@ "img": "systems/fallout/assets/icons/items/perk.svg", "name": "Toughness", "system": { - "description": "

Your physical Damage Resistance to all hit locations increases by +1 per rank in this perk. Each time you take this perk, the level requirement increases by 4.

", + "description": "

Your physical Damage Resistance to all hit locations increases by +1 per rank in this perk. Each time you take this perk, the level requirement increases by 4.

\n

Requirements: END 6, LCK 6, Level 1+

", "favorite": false, "rank": { "levelIncrease": 0, @@ -15,7 +15,40 @@ "max": 2, "value": 0 }, - "requirements": "END 6, LCK 6, Level 1+", + "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/trapped_in_the_dimension_of_the_pterror_dactyls__VrMFCFltA2MKaCcH.json b/data/packs/perks.db/trapped_in_the_dimension_of_the_pterror_dactyls__VrMFCFltA2MKaCcH.json index 67cc072c..17ed627d 100644 --- a/data/packs/perks.db/trapped_in_the_dimension_of_the_pterror_dactyls__VrMFCFltA2MKaCcH.json +++ b/data/packs/perks.db/trapped_in_the_dimension_of_the_pterror_dactyls__VrMFCFltA2MKaCcH.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/trim_the_fat___siFrRn6TjSmxGKas.json b/data/packs/perks.db/trim_the_fat___siFrRn6TjSmxGKas.json index 5da935bf..b782e410 100644 --- a/data/packs/perks.db/trim_the_fat___siFrRn6TjSmxGKas.json +++ b/data/packs/perks.db/trim_the_fat___siFrRn6TjSmxGKas.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/true_police_stories__DC6xyEVANOUPyy1I.json b/data/packs/perks.db/true_police_stories__DC6xyEVANOUPyy1I.json index 59e126b3..f7435d07 100644 --- a/data/packs/perks.db/true_police_stories__DC6xyEVANOUPyy1I.json +++ b/data/packs/perks.db/true_police_stories__DC6xyEVANOUPyy1I.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/u_s__army_goes_to_space__lkAJKVOfU1DfjLU9.json b/data/packs/perks.db/u_s__army_goes_to_space__lkAJKVOfU1DfjLU9.json index 6b4412bf..4df00f02 100644 --- a/data/packs/perks.db/u_s__army_goes_to_space__lkAJKVOfU1DfjLU9.json +++ b/data/packs/perks.db/u_s__army_goes_to_space__lkAJKVOfU1DfjLU9.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/visit_the_ux_ron_galaxy___Lf2VvWWVug9jj5Ly.json b/data/packs/perks.db/visit_the_ux_ron_galaxy___Lf2VvWWVug9jj5Ly.json index 2ea50957..c980d9a0 100644 --- a/data/packs/perks.db/visit_the_ux_ron_galaxy___Lf2VvWWVug9jj5Ly.json +++ b/data/packs/perks.db/visit_the_ux_ron_galaxy___Lf2VvWWVug9jj5Ly.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/water_aerobics_for_ghouls__xXZcXGsZY6g4QkTl.json b/data/packs/perks.db/water_aerobics_for_ghouls__xXZcXGsZY6g4QkTl.json index 7bdacbd1..6394f1ae 100644 --- a/data/packs/perks.db/water_aerobics_for_ghouls__xXZcXGsZY6g4QkTl.json +++ b/data/packs/perks.db/water_aerobics_for_ghouls__xXZcXGsZY6g4QkTl.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/what_is_plasma__anyway___MsNkQ2J8T75NE3uJ.json b/data/packs/perks.db/what_is_plasma__anyway___MsNkQ2J8T75NE3uJ.json index 97ea2f67..37c9f227 100644 --- a/data/packs/perks.db/what_is_plasma__anyway___MsNkQ2J8T75NE3uJ.json +++ b/data/packs/perks.db/what_is_plasma__anyway___MsNkQ2J8T75NE3uJ.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/what_sorcery_is_this___1KDDs6qPimKnwL9r.json b/data/packs/perks.db/what_sorcery_is_this___1KDDs6qPimKnwL9r.json index bc920bb3..112a8d55 100644 --- a/data/packs/perks.db/what_sorcery_is_this___1KDDs6qPimKnwL9r.json +++ b/data/packs/perks.db/what_sorcery_is_this___1KDDs6qPimKnwL9r.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/who_can_stop_the_unstoppable_grog_na_rok____7heg2KN3JXIllHT2.json b/data/packs/perks.db/who_can_stop_the_unstoppable_grog_na_rok____7heg2KN3JXIllHT2.json index 08f63672..11f1ec9f 100644 --- a/data/packs/perks.db/who_can_stop_the_unstoppable_grog_na_rok____7heg2KN3JXIllHT2.json +++ b/data/packs/perks.db/who_can_stop_the_unstoppable_grog_na_rok____7heg2KN3JXIllHT2.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/perks.db/will_robots_rule_the_world___9LAlQMlnpZ2lYqKV.json b/data/packs/perks.db/will_robots_rule_the_world___9LAlQMlnpZ2lYqKV.json index dc87d8f4..70bbf998 100644 --- a/data/packs/perks.db/will_robots_rule_the_world___9LAlQMlnpZ2lYqKV.json +++ b/data/packs/perks.db/will_robots_rule_the_world___9LAlQMlnpZ2lYqKV.json @@ -16,6 +16,39 @@ "value": 0 }, "requirements": "", + "requirementsEx": { + "attributes": { + "agi": { + "value": 0 + }, + "cha": { + "value": 0 + }, + "end": { + "value": 0 + }, + "int": { + "value": 0 + }, + "luc": { + "value": 0 + }, + "per": { + "value": 0 + }, + "str": { + "value": 0 + } + }, + "isCompanion": false, + "level": 1, + "levelIncrease": 0, + "notGhoul": false, + "notHuman": false, + "notRadiationImmune": false, + "notRobot": false, + "notSupermutant": false + }, "source": "core_rulebook" }, "type": "perk" diff --git a/data/packs/weapons.db/10mm_auto_pistol__bKHsUZI6Z6xrAEHg.json b/data/packs/weapons.db/10mm_auto_pistol__bKHsUZI6Z6xrAEHg.json index 1263133c..17676702 100644 --- a/data/packs/weapons.db/10mm_auto_pistol__bKHsUZI6Z6xrAEHg.json +++ b/data/packs/weapons.db/10mm_auto_pistol__bKHsUZI6Z6xrAEHg.json @@ -78,6 +78,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false diff --git a/data/packs/weapons.db/10mm_pistol__mRB3W7wrHDbWhb9i.json b/data/packs/weapons.db/10mm_pistol__mRB3W7wrHDbWhb9i.json index 7394f7cf..6821c27f 100644 --- a/data/packs/weapons.db/10mm_pistol__mRB3W7wrHDbWhb9i.json +++ b/data/packs/weapons.db/10mm_pistol__mRB3W7wrHDbWhb9i.json @@ -78,6 +78,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false diff --git a/data/packs/weapons.db/_44_pistol__wqNw0xItJ29W24sm.json b/data/packs/weapons.db/_44_pistol__wqNw0xItJ29W24sm.json index e0b37394..2fc60aaa 100644 --- a/data/packs/weapons.db/_44_pistol__wqNw0xItJ29W24sm.json +++ b/data/packs/weapons.db/_44_pistol__wqNw0xItJ29W24sm.json @@ -78,6 +78,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false diff --git a/data/packs/weapons.db/aluminum_baseball_bat__mmmxQfbZxwNWA45f.json b/data/packs/weapons.db/aluminum_baseball_bat__mmmxQfbZxwNWA45f.json index 35511648..2bf7fd65 100644 --- a/data/packs/weapons.db/aluminum_baseball_bat__mmmxQfbZxwNWA45f.json +++ b/data/packs/weapons.db/aluminum_baseball_bat__mmmxQfbZxwNWA45f.json @@ -78,6 +78,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false diff --git a/data/packs/weapons.db/assault_rifle__ZN2h6VGlcHQKzveB.json b/data/packs/weapons.db/assault_rifle__ZN2h6VGlcHQKzveB.json index 13455b2a..44ebf8fa 100644 --- a/data/packs/weapons.db/assault_rifle__ZN2h6VGlcHQKzveB.json +++ b/data/packs/weapons.db/assault_rifle__ZN2h6VGlcHQKzveB.json @@ -78,6 +78,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false diff --git a/data/packs/weapons.db/baseball_bat__d0qmxHsuKN14qmua.json b/data/packs/weapons.db/baseball_bat__d0qmxHsuKN14qmua.json index f2d2e929..bbdfc993 100644 --- a/data/packs/weapons.db/baseball_bat__d0qmxHsuKN14qmua.json +++ b/data/packs/weapons.db/baseball_bat__d0qmxHsuKN14qmua.json @@ -78,6 +78,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false diff --git a/data/packs/weapons.db/baseball_grenade__vXTMQj76ShuwQXkd.json b/data/packs/weapons.db/baseball_grenade__vXTMQj76ShuwQXkd.json index 3642cf50..02059bfa 100644 --- a/data/packs/weapons.db/baseball_grenade__vXTMQj76ShuwQXkd.json +++ b/data/packs/weapons.db/baseball_grenade__vXTMQj76ShuwQXkd.json @@ -78,6 +78,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": true diff --git a/data/packs/weapons.db/baton__jZstb7cuVXCJXPnj.json b/data/packs/weapons.db/baton__jZstb7cuVXCJXPnj.json index ebf349e4..a81651ee 100644 --- a/data/packs/weapons.db/baton__jZstb7cuVXCJXPnj.json +++ b/data/packs/weapons.db/baton__jZstb7cuVXCJXPnj.json @@ -78,6 +78,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false diff --git a/data/packs/weapons.db/board__CKolMtDxOzC8QdSD.json b/data/packs/weapons.db/board__CKolMtDxOzC8QdSD.json index ddce866a..2524b289 100644 --- a/data/packs/weapons.db/board__CKolMtDxOzC8QdSD.json +++ b/data/packs/weapons.db/board__CKolMtDxOzC8QdSD.json @@ -78,6 +78,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false diff --git a/data/packs/weapons.db/bottlecap_mine__4YCB81rMWJSZcgRI.json b/data/packs/weapons.db/bottlecap_mine__4YCB81rMWJSZcgRI.json index 405e2c6d..f390ed1f 100644 --- a/data/packs/weapons.db/bottlecap_mine__4YCB81rMWJSZcgRI.json +++ b/data/packs/weapons.db/bottlecap_mine__4YCB81rMWJSZcgRI.json @@ -78,6 +78,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": true diff --git a/data/packs/weapons.db/boxing_glove__DnWvHyfz74QnnnGv.json b/data/packs/weapons.db/boxing_glove__DnWvHyfz74QnnnGv.json index 3a92b482..69c54dc5 100644 --- a/data/packs/weapons.db/boxing_glove__DnWvHyfz74QnnnGv.json +++ b/data/packs/weapons.db/boxing_glove__DnWvHyfz74QnnnGv.json @@ -78,6 +78,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false diff --git a/data/packs/weapons.db/buzz_saw__QYgc3wH8JS3YGJ34.json b/data/packs/weapons.db/buzz_saw__QYgc3wH8JS3YGJ34.json index 42f11253..9f6a91ac 100644 --- a/data/packs/weapons.db/buzz_saw__QYgc3wH8JS3YGJ34.json +++ b/data/packs/weapons.db/buzz_saw__QYgc3wH8JS3YGJ34.json @@ -78,6 +78,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false diff --git a/data/packs/weapons.db/combat_knife__6xbkky55saFOXZSk.json b/data/packs/weapons.db/combat_knife__6xbkky55saFOXZSk.json index 11767943..17c0d236 100644 --- a/data/packs/weapons.db/combat_knife__6xbkky55saFOXZSk.json +++ b/data/packs/weapons.db/combat_knife__6xbkky55saFOXZSk.json @@ -78,6 +78,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false diff --git a/data/packs/weapons.db/combat_rifle__qRc6hN6zHdrsZ0nd.json b/data/packs/weapons.db/combat_rifle__qRc6hN6zHdrsZ0nd.json index 56af762a..f670b5ae 100644 --- a/data/packs/weapons.db/combat_rifle__qRc6hN6zHdrsZ0nd.json +++ b/data/packs/weapons.db/combat_rifle__qRc6hN6zHdrsZ0nd.json @@ -78,6 +78,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false diff --git a/data/packs/weapons.db/combat_shotgun__CUlCBsWk1qipT1Ff.json b/data/packs/weapons.db/combat_shotgun__CUlCBsWk1qipT1Ff.json index dc2f4bcd..34107c31 100644 --- a/data/packs/weapons.db/combat_shotgun__CUlCBsWk1qipT1Ff.json +++ b/data/packs/weapons.db/combat_shotgun__CUlCBsWk1qipT1Ff.json @@ -78,6 +78,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false diff --git a/data/packs/weapons.db/deathclaw_gauntlet__VBDdPeRHrRcaZhGn.json b/data/packs/weapons.db/deathclaw_gauntlet__VBDdPeRHrRcaZhGn.json index c6a1a127..2c7c0db4 100644 --- a/data/packs/weapons.db/deathclaw_gauntlet__VBDdPeRHrRcaZhGn.json +++ b/data/packs/weapons.db/deathclaw_gauntlet__VBDdPeRHrRcaZhGn.json @@ -78,6 +78,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false diff --git a/data/packs/weapons.db/double_barrel_shotgun__tNyHslvLL11qSlhc.json b/data/packs/weapons.db/double_barrel_shotgun__tNyHslvLL11qSlhc.json index e813472d..0a22a086 100644 --- a/data/packs/weapons.db/double_barrel_shotgun__tNyHslvLL11qSlhc.json +++ b/data/packs/weapons.db/double_barrel_shotgun__tNyHslvLL11qSlhc.json @@ -78,6 +78,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false diff --git a/data/packs/weapons.db/fat_man__5gIryFE7WITrmSvY.json b/data/packs/weapons.db/fat_man__5gIryFE7WITrmSvY.json index a3999b3b..2953cc39 100644 --- a/data/packs/weapons.db/fat_man__5gIryFE7WITrmSvY.json +++ b/data/packs/weapons.db/fat_man__5gIryFE7WITrmSvY.json @@ -78,6 +78,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": true diff --git a/data/packs/weapons.db/flamer__75n1EFSJw8xxti6s.json b/data/packs/weapons.db/flamer__75n1EFSJw8xxti6s.json index b49f23e8..0fed67a2 100644 --- a/data/packs/weapons.db/flamer__75n1EFSJw8xxti6s.json +++ b/data/packs/weapons.db/flamer__75n1EFSJw8xxti6s.json @@ -78,6 +78,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false diff --git a/data/packs/weapons.db/flamer__q3RjTNEYvfHVBzVk.json b/data/packs/weapons.db/flamer__q3RjTNEYvfHVBzVk.json index fed9c804..339d04e8 100644 --- a/data/packs/weapons.db/flamer__q3RjTNEYvfHVBzVk.json +++ b/data/packs/weapons.db/flamer__q3RjTNEYvfHVBzVk.json @@ -78,6 +78,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false diff --git a/data/packs/weapons.db/flare_gun__nZ7XeE2gQy2EEgWH.json b/data/packs/weapons.db/flare_gun__nZ7XeE2gQy2EEgWH.json index 89ad17dd..17e917ea 100644 --- a/data/packs/weapons.db/flare_gun__nZ7XeE2gQy2EEgWH.json +++ b/data/packs/weapons.db/flare_gun__nZ7XeE2gQy2EEgWH.json @@ -78,6 +78,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false diff --git a/data/packs/weapons.db/frag_grenade__3CZ7jbXV7I5z757E.json b/data/packs/weapons.db/frag_grenade__3CZ7jbXV7I5z757E.json index d42314b0..75fa660d 100644 --- a/data/packs/weapons.db/frag_grenade__3CZ7jbXV7I5z757E.json +++ b/data/packs/weapons.db/frag_grenade__3CZ7jbXV7I5z757E.json @@ -78,6 +78,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": true diff --git a/data/packs/weapons.db/frag_mine__Ai4EeSDZl48zoJoL.json b/data/packs/weapons.db/frag_mine__Ai4EeSDZl48zoJoL.json index 59554cc4..2cc03d3c 100644 --- a/data/packs/weapons.db/frag_mine__Ai4EeSDZl48zoJoL.json +++ b/data/packs/weapons.db/frag_mine__Ai4EeSDZl48zoJoL.json @@ -78,6 +78,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": true diff --git a/data/packs/weapons.db/gamma_gun__ECuihimhpmedOziD.json b/data/packs/weapons.db/gamma_gun__ECuihimhpmedOziD.json index c5ce26fc..565986e8 100644 --- a/data/packs/weapons.db/gamma_gun__ECuihimhpmedOziD.json +++ b/data/packs/weapons.db/gamma_gun__ECuihimhpmedOziD.json @@ -78,6 +78,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": true diff --git a/data/packs/weapons.db/gatling_laser__uyx46lw2PXh08m1P.json b/data/packs/weapons.db/gatling_laser__uyx46lw2PXh08m1P.json index ad2e05be..21a4e988 100644 --- a/data/packs/weapons.db/gatling_laser__uyx46lw2PXh08m1P.json +++ b/data/packs/weapons.db/gatling_laser__uyx46lw2PXh08m1P.json @@ -78,6 +78,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false diff --git a/data/packs/weapons.db/gauss_rifle__Ee4TwfZnYmCF8CDE.json b/data/packs/weapons.db/gauss_rifle__Ee4TwfZnYmCF8CDE.json index 414f92bc..758813db 100644 --- a/data/packs/weapons.db/gauss_rifle__Ee4TwfZnYmCF8CDE.json +++ b/data/packs/weapons.db/gauss_rifle__Ee4TwfZnYmCF8CDE.json @@ -78,6 +78,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false diff --git a/data/packs/weapons.db/gun_bash__1h___tWhlezJ5cgDZ7SQO.json b/data/packs/weapons.db/gun_bash__1h___tWhlezJ5cgDZ7SQO.json index 5c8d5183..32f8d9e1 100644 --- a/data/packs/weapons.db/gun_bash__1h___tWhlezJ5cgDZ7SQO.json +++ b/data/packs/weapons.db/gun_bash__1h___tWhlezJ5cgDZ7SQO.json @@ -78,6 +78,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false diff --git a/data/packs/weapons.db/gun_bash__pSshPAISbTrdooAk.json b/data/packs/weapons.db/gun_bash__pSshPAISbTrdooAk.json index 0759d352..ac9a3672 100644 --- a/data/packs/weapons.db/gun_bash__pSshPAISbTrdooAk.json +++ b/data/packs/weapons.db/gun_bash__pSshPAISbTrdooAk.json @@ -78,6 +78,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false diff --git a/data/packs/weapons.db/handy_rock__OF1614SY9gYdGnjI.json b/data/packs/weapons.db/handy_rock__OF1614SY9gYdGnjI.json index df848358..e4dc6403 100644 --- a/data/packs/weapons.db/handy_rock__OF1614SY9gYdGnjI.json +++ b/data/packs/weapons.db/handy_rock__OF1614SY9gYdGnjI.json @@ -78,6 +78,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false diff --git a/data/packs/weapons.db/heavy_incinerator__ccLXYRUueArLgLst.json b/data/packs/weapons.db/heavy_incinerator__ccLXYRUueArLgLst.json index 929c322a..9c4662be 100644 --- a/data/packs/weapons.db/heavy_incinerator__ccLXYRUueArLgLst.json +++ b/data/packs/weapons.db/heavy_incinerator__ccLXYRUueArLgLst.json @@ -78,6 +78,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false diff --git a/data/packs/weapons.db/hunting_rifle__bpbgoX9mNr23pFHR.json b/data/packs/weapons.db/hunting_rifle__bpbgoX9mNr23pFHR.json index f318dcc0..4f390256 100644 --- a/data/packs/weapons.db/hunting_rifle__bpbgoX9mNr23pFHR.json +++ b/data/packs/weapons.db/hunting_rifle__bpbgoX9mNr23pFHR.json @@ -78,6 +78,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false diff --git a/data/packs/weapons.db/institute_laser__fJI5l0xbl26ylvTI.json b/data/packs/weapons.db/institute_laser__fJI5l0xbl26ylvTI.json index 478218cd..aaea9b6c 100644 --- a/data/packs/weapons.db/institute_laser__fJI5l0xbl26ylvTI.json +++ b/data/packs/weapons.db/institute_laser__fJI5l0xbl26ylvTI.json @@ -78,6 +78,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false diff --git a/data/packs/weapons.db/javelin__iodz4xm3QDXNuhxf.json b/data/packs/weapons.db/javelin__iodz4xm3QDXNuhxf.json index 6371ca32..72d7c7dd 100644 --- a/data/packs/weapons.db/javelin__iodz4xm3QDXNuhxf.json +++ b/data/packs/weapons.db/javelin__iodz4xm3QDXNuhxf.json @@ -78,6 +78,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false diff --git a/data/packs/weapons.db/junk_jet__CyxEyS2RLOuMLMa1.json b/data/packs/weapons.db/junk_jet__CyxEyS2RLOuMLMa1.json index 79e2dece..7b20a4fe 100644 --- a/data/packs/weapons.db/junk_jet__CyxEyS2RLOuMLMa1.json +++ b/data/packs/weapons.db/junk_jet__CyxEyS2RLOuMLMa1.json @@ -78,6 +78,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false diff --git a/data/packs/weapons.db/knuckles__yB39echbNG7KpWny.json b/data/packs/weapons.db/knuckles__yB39echbNG7KpWny.json index dbe996d1..afe98121 100644 --- a/data/packs/weapons.db/knuckles__yB39echbNG7KpWny.json +++ b/data/packs/weapons.db/knuckles__yB39echbNG7KpWny.json @@ -78,6 +78,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false diff --git a/data/packs/weapons.db/laser_emitter__ppzmY6xo2f66TmMC.json b/data/packs/weapons.db/laser_emitter__ppzmY6xo2f66TmMC.json index 2c1de08d..fa9202aa 100644 --- a/data/packs/weapons.db/laser_emitter__ppzmY6xo2f66TmMC.json +++ b/data/packs/weapons.db/laser_emitter__ppzmY6xo2f66TmMC.json @@ -78,6 +78,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false diff --git a/data/packs/weapons.db/laser_gun__NRN7soVtcTwCRqaL.json b/data/packs/weapons.db/laser_gun__NRN7soVtcTwCRqaL.json index 58e066b3..f89ef26d 100644 --- a/data/packs/weapons.db/laser_gun__NRN7soVtcTwCRqaL.json +++ b/data/packs/weapons.db/laser_gun__NRN7soVtcTwCRqaL.json @@ -78,6 +78,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false diff --git a/data/packs/weapons.db/laser_musket__o1QbQfhTLFphrxkB.json b/data/packs/weapons.db/laser_musket__o1QbQfhTLFphrxkB.json index 43eaa857..a8cf571c 100644 --- a/data/packs/weapons.db/laser_musket__o1QbQfhTLFphrxkB.json +++ b/data/packs/weapons.db/laser_musket__o1QbQfhTLFphrxkB.json @@ -78,6 +78,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false diff --git a/data/packs/weapons.db/lead_pipe__Xq6k6PuQQbneO6w0.json b/data/packs/weapons.db/lead_pipe__Xq6k6PuQQbneO6w0.json index 4f2e5a71..4d18b0d2 100644 --- a/data/packs/weapons.db/lead_pipe__Xq6k6PuQQbneO6w0.json +++ b/data/packs/weapons.db/lead_pipe__Xq6k6PuQQbneO6w0.json @@ -78,6 +78,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false diff --git a/data/packs/weapons.db/machete__uGNGa0KBcJq3YFvc.json b/data/packs/weapons.db/machete__uGNGa0KBcJq3YFvc.json index 93b6d52f..f8303c68 100644 --- a/data/packs/weapons.db/machete__uGNGa0KBcJq3YFvc.json +++ b/data/packs/weapons.db/machete__uGNGa0KBcJq3YFvc.json @@ -78,6 +78,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false diff --git a/data/packs/weapons.db/minigun__5TAOMd3GGpapiM6Q.json b/data/packs/weapons.db/minigun__5TAOMd3GGpapiM6Q.json index f46ef0cd..6703c8b7 100644 --- a/data/packs/weapons.db/minigun__5TAOMd3GGpapiM6Q.json +++ b/data/packs/weapons.db/minigun__5TAOMd3GGpapiM6Q.json @@ -78,6 +78,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false diff --git a/data/packs/weapons.db/missile_launcher__s3RYAqoL6U3CVVeb.json b/data/packs/weapons.db/missile_launcher__s3RYAqoL6U3CVVeb.json index 084e9072..e1b01b9c 100644 --- a/data/packs/weapons.db/missile_launcher__s3RYAqoL6U3CVVeb.json +++ b/data/packs/weapons.db/missile_launcher__s3RYAqoL6U3CVVeb.json @@ -78,6 +78,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": true diff --git a/data/packs/weapons.db/molotov_cocktail__NXjKSH1aRmZkq5PJ.json b/data/packs/weapons.db/molotov_cocktail__NXjKSH1aRmZkq5PJ.json index df4d822d..3171811f 100644 --- a/data/packs/weapons.db/molotov_cocktail__NXjKSH1aRmZkq5PJ.json +++ b/data/packs/weapons.db/molotov_cocktail__NXjKSH1aRmZkq5PJ.json @@ -78,6 +78,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": true diff --git a/data/packs/weapons.db/nuka_grenade__As1o8LGO3CIaY2mD.json b/data/packs/weapons.db/nuka_grenade__As1o8LGO3CIaY2mD.json index f41300ac..669f91ce 100644 --- a/data/packs/weapons.db/nuka_grenade__As1o8LGO3CIaY2mD.json +++ b/data/packs/weapons.db/nuka_grenade__As1o8LGO3CIaY2mD.json @@ -78,6 +78,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": true diff --git a/data/packs/weapons.db/nuke_mine__9wxUVAnr3YsD3Uol.json b/data/packs/weapons.db/nuke_mine__9wxUVAnr3YsD3Uol.json index b5ac68da..570c257e 100644 --- a/data/packs/weapons.db/nuke_mine__9wxUVAnr3YsD3Uol.json +++ b/data/packs/weapons.db/nuke_mine__9wxUVAnr3YsD3Uol.json @@ -78,6 +78,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": true diff --git a/data/packs/weapons.db/pincer__VFRfwbor9PwEKdRZ.json b/data/packs/weapons.db/pincer__VFRfwbor9PwEKdRZ.json index ede3b58e..6bdfcccf 100644 --- a/data/packs/weapons.db/pincer__VFRfwbor9PwEKdRZ.json +++ b/data/packs/weapons.db/pincer__VFRfwbor9PwEKdRZ.json @@ -78,6 +78,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false diff --git a/data/packs/weapons.db/pipe_bolt_action__obRp9CZJJ6liIl49.json b/data/packs/weapons.db/pipe_bolt_action__obRp9CZJJ6liIl49.json index dd355ed8..7cb46bf5 100644 --- a/data/packs/weapons.db/pipe_bolt_action__obRp9CZJJ6liIl49.json +++ b/data/packs/weapons.db/pipe_bolt_action__obRp9CZJJ6liIl49.json @@ -78,6 +78,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false diff --git a/data/packs/weapons.db/pipe_gun__PiFmAFrgnIJqwkNw.json b/data/packs/weapons.db/pipe_gun__PiFmAFrgnIJqwkNw.json index 4407c823..f57b9e7f 100644 --- a/data/packs/weapons.db/pipe_gun__PiFmAFrgnIJqwkNw.json +++ b/data/packs/weapons.db/pipe_gun__PiFmAFrgnIJqwkNw.json @@ -78,6 +78,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false diff --git a/data/packs/weapons.db/pipe_revolver__ldIbeCgUhfS2AVHV.json b/data/packs/weapons.db/pipe_revolver__ldIbeCgUhfS2AVHV.json index 5c1d3176..154d2f29 100644 --- a/data/packs/weapons.db/pipe_revolver__ldIbeCgUhfS2AVHV.json +++ b/data/packs/weapons.db/pipe_revolver__ldIbeCgUhfS2AVHV.json @@ -78,6 +78,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false diff --git a/data/packs/weapons.db/pipe_wrench__ehsLCAMtk39LFHVa.json b/data/packs/weapons.db/pipe_wrench__ehsLCAMtk39LFHVa.json index 8ad90c40..be001c34 100644 --- a/data/packs/weapons.db/pipe_wrench__ehsLCAMtk39LFHVa.json +++ b/data/packs/weapons.db/pipe_wrench__ehsLCAMtk39LFHVa.json @@ -78,6 +78,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false diff --git a/data/packs/weapons.db/plasma_grenade__tedK8NNLvjIQf4wm.json b/data/packs/weapons.db/plasma_grenade__tedK8NNLvjIQf4wm.json index c9776185..53e921d6 100644 --- a/data/packs/weapons.db/plasma_grenade__tedK8NNLvjIQf4wm.json +++ b/data/packs/weapons.db/plasma_grenade__tedK8NNLvjIQf4wm.json @@ -78,6 +78,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": true diff --git a/data/packs/weapons.db/plasma_gun__M4xWjxuABTWOefg2.json b/data/packs/weapons.db/plasma_gun__M4xWjxuABTWOefg2.json index 42ccb1f7..d6012ccb 100644 --- a/data/packs/weapons.db/plasma_gun__M4xWjxuABTWOefg2.json +++ b/data/packs/weapons.db/plasma_gun__M4xWjxuABTWOefg2.json @@ -78,6 +78,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false diff --git a/data/packs/weapons.db/plasma_mine__AjqE0fT244w92onq.json b/data/packs/weapons.db/plasma_mine__AjqE0fT244w92onq.json index bb4e29c4..cfdbdd54 100644 --- a/data/packs/weapons.db/plasma_mine__AjqE0fT244w92onq.json +++ b/data/packs/weapons.db/plasma_mine__AjqE0fT244w92onq.json @@ -78,6 +78,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": true diff --git a/data/packs/weapons.db/pool_cue__7lXJbtwhMJwqp40D.json b/data/packs/weapons.db/pool_cue__7lXJbtwhMJwqp40D.json index 405eb7d8..7097ed08 100644 --- a/data/packs/weapons.db/pool_cue__7lXJbtwhMJwqp40D.json +++ b/data/packs/weapons.db/pool_cue__7lXJbtwhMJwqp40D.json @@ -78,6 +78,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false diff --git a/data/packs/weapons.db/power_fist__aIMdoy67zhbaYcQG.json b/data/packs/weapons.db/power_fist__aIMdoy67zhbaYcQG.json index 3a8e31a2..3da84b49 100644 --- a/data/packs/weapons.db/power_fist__aIMdoy67zhbaYcQG.json +++ b/data/packs/weapons.db/power_fist__aIMdoy67zhbaYcQG.json @@ -78,6 +78,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false diff --git a/data/packs/weapons.db/pulse_grenade__LCUp8GGg6nyJ8wa9.json b/data/packs/weapons.db/pulse_grenade__LCUp8GGg6nyJ8wa9.json index a9a04e16..2ece4112 100644 --- a/data/packs/weapons.db/pulse_grenade__LCUp8GGg6nyJ8wa9.json +++ b/data/packs/weapons.db/pulse_grenade__LCUp8GGg6nyJ8wa9.json @@ -78,6 +78,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": true diff --git a/data/packs/weapons.db/pulse_mine__eILamwepNIAhOY0J.json b/data/packs/weapons.db/pulse_mine__eILamwepNIAhOY0J.json index 2998e335..23546004 100644 --- a/data/packs/weapons.db/pulse_mine__eILamwepNIAhOY0J.json +++ b/data/packs/weapons.db/pulse_mine__eILamwepNIAhOY0J.json @@ -78,6 +78,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": true diff --git a/data/packs/weapons.db/railway_rifle__iUh6c0EcJfZil9cZ.json b/data/packs/weapons.db/railway_rifle__iUh6c0EcJfZil9cZ.json index 27593fa9..67ed2bbc 100644 --- a/data/packs/weapons.db/railway_rifle__iUh6c0EcJfZil9cZ.json +++ b/data/packs/weapons.db/railway_rifle__iUh6c0EcJfZil9cZ.json @@ -78,6 +78,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false diff --git a/data/packs/weapons.db/ripper__EktSYEw86GEcqHeE.json b/data/packs/weapons.db/ripper__EktSYEw86GEcqHeE.json index cd2720b1..fd2c55f3 100644 --- a/data/packs/weapons.db/ripper__EktSYEw86GEcqHeE.json +++ b/data/packs/weapons.db/ripper__EktSYEw86GEcqHeE.json @@ -78,6 +78,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false diff --git a/data/packs/weapons.db/rolling_pin__66p1lQmwPXZINPKn.json b/data/packs/weapons.db/rolling_pin__66p1lQmwPXZINPKn.json index 7fa335f1..cf753f0e 100644 --- a/data/packs/weapons.db/rolling_pin__66p1lQmwPXZINPKn.json +++ b/data/packs/weapons.db/rolling_pin__66p1lQmwPXZINPKn.json @@ -78,6 +78,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false diff --git a/data/packs/weapons.db/shishkebab__8RVrftHzFootwBD5.json b/data/packs/weapons.db/shishkebab__8RVrftHzFootwBD5.json index 665e830f..c0c8c0d9 100644 --- a/data/packs/weapons.db/shishkebab__8RVrftHzFootwBD5.json +++ b/data/packs/weapons.db/shishkebab__8RVrftHzFootwBD5.json @@ -78,6 +78,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false diff --git a/data/packs/weapons.db/sledgehammer__yrLghAxk6uynbFaq.json b/data/packs/weapons.db/sledgehammer__yrLghAxk6uynbFaq.json index edbc139b..721de68a 100644 --- a/data/packs/weapons.db/sledgehammer__yrLghAxk6uynbFaq.json +++ b/data/packs/weapons.db/sledgehammer__yrLghAxk6uynbFaq.json @@ -78,6 +78,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false diff --git a/data/packs/weapons.db/submachine_gun__244Kf3MVUhEQQGsw.json b/data/packs/weapons.db/submachine_gun__244Kf3MVUhEQQGsw.json index 504a2119..ed4cc851 100644 --- a/data/packs/weapons.db/submachine_gun__244Kf3MVUhEQQGsw.json +++ b/data/packs/weapons.db/submachine_gun__244Kf3MVUhEQQGsw.json @@ -78,6 +78,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false diff --git a/data/packs/weapons.db/super_sledge__ADp33L4FN7QcbCJy.json b/data/packs/weapons.db/super_sledge__ADp33L4FN7QcbCJy.json index 05257334..4eb59a18 100644 --- a/data/packs/weapons.db/super_sledge__ADp33L4FN7QcbCJy.json +++ b/data/packs/weapons.db/super_sledge__ADp33L4FN7QcbCJy.json @@ -78,6 +78,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false diff --git a/data/packs/weapons.db/switchblade__ijD12AylGdTDshsy.json b/data/packs/weapons.db/switchblade__ijD12AylGdTDshsy.json index ba62f91d..021590e0 100644 --- a/data/packs/weapons.db/switchblade__ijD12AylGdTDshsy.json +++ b/data/packs/weapons.db/switchblade__ijD12AylGdTDshsy.json @@ -78,6 +78,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false diff --git a/data/packs/weapons.db/sword__M9xO5ZKoGsqbPxWr.json b/data/packs/weapons.db/sword__M9xO5ZKoGsqbPxWr.json index d78ca551..a3841ae4 100644 --- a/data/packs/weapons.db/sword__M9xO5ZKoGsqbPxWr.json +++ b/data/packs/weapons.db/sword__M9xO5ZKoGsqbPxWr.json @@ -78,6 +78,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false diff --git a/data/packs/weapons.db/syringer__3wCThKbCsMgAdrSg.json b/data/packs/weapons.db/syringer__3wCThKbCsMgAdrSg.json index c4505801..186406ee 100644 --- a/data/packs/weapons.db/syringer__3wCThKbCsMgAdrSg.json +++ b/data/packs/weapons.db/syringer__3wCThKbCsMgAdrSg.json @@ -78,6 +78,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false diff --git a/data/packs/weapons.db/throwing_knives__61inErKDohHmHoAV.json b/data/packs/weapons.db/throwing_knives__61inErKDohHmHoAV.json index 76859f41..c0cb35c4 100644 --- a/data/packs/weapons.db/throwing_knives__61inErKDohHmHoAV.json +++ b/data/packs/weapons.db/throwing_knives__61inErKDohHmHoAV.json @@ -78,6 +78,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false diff --git a/data/packs/weapons.db/tire_iron__Pdmfy50DEM5oB9js.json b/data/packs/weapons.db/tire_iron__Pdmfy50DEM5oB9js.json index 551dc3ce..5eda0491 100644 --- a/data/packs/weapons.db/tire_iron__Pdmfy50DEM5oB9js.json +++ b/data/packs/weapons.db/tire_iron__Pdmfy50DEM5oB9js.json @@ -78,6 +78,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false diff --git a/data/packs/weapons.db/tomahawk__pYMfuytsOCR3mxW8.json b/data/packs/weapons.db/tomahawk__pYMfuytsOCR3mxW8.json index fbd9402c..d21b5865 100644 --- a/data/packs/weapons.db/tomahawk__pYMfuytsOCR3mxW8.json +++ b/data/packs/weapons.db/tomahawk__pYMfuytsOCR3mxW8.json @@ -78,6 +78,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false diff --git a/data/packs/weapons.db/unarmed_strike__QuYxQccl5EHdXTcT.json b/data/packs/weapons.db/unarmed_strike__QuYxQccl5EHdXTcT.json index b0c45a51..360056e3 100644 --- a/data/packs/weapons.db/unarmed_strike__QuYxQccl5EHdXTcT.json +++ b/data/packs/weapons.db/unarmed_strike__QuYxQccl5EHdXTcT.json @@ -78,6 +78,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false diff --git a/data/packs/weapons.db/walking_cane__1bgEBl5eFgkcDxmL.json b/data/packs/weapons.db/walking_cane__1bgEBl5eFgkcDxmL.json index 8643c915..d9211f96 100644 --- a/data/packs/weapons.db/walking_cane__1bgEBl5eFgkcDxmL.json +++ b/data/packs/weapons.db/walking_cane__1bgEBl5eFgkcDxmL.json @@ -78,6 +78,10 @@ "rank": 1, "value": false }, + "aquatic": { + "rank": 0, + "value": false + }, "blast": { "rank": 0, "value": false From 5f9680cf93122115a47f7494fe6a537bc3949a34 Mon Sep 17 00:00:00 2001 From: Paul Maskelyne Date: Thu, 12 Dec 2024 12:36:16 +0000 Subject: [PATCH 05/11] data migration --- .../migrations/updates/Update_241212_1.mjs | 25 +++++++++++++++++++ system/src/migrations/updates/_module.mjs | 1 + system/template.json | 8 +++--- 3 files changed, 30 insertions(+), 4 deletions(-) create mode 100644 system/src/migrations/updates/Update_241212_1.mjs diff --git a/system/src/migrations/updates/Update_241212_1.mjs b/system/src/migrations/updates/Update_241212_1.mjs new file mode 100644 index 00000000..3b959c39 --- /dev/null +++ b/system/src/migrations/updates/Update_241212_1.mjs @@ -0,0 +1,25 @@ +import { FalloutUpdateBase } from "../FalloutUpdateBase.mjs"; + +export default class Update_241212_1 extends FalloutUpdateBase { + + static version = 241212.1; + + async updateItem(itemData, actorData) { + if (itemData.type !== "perk") return; + + // Nothing needs doing + if (itemData.system.requirements === "") return; + + const legacyRequirements = + `\n

Requirements: ${itemData.system.requirements}

`; + + const newDescription = itemData.system.description + legacyRequirements; + + const updateData = { + "system.description": newDescription, + "system.requirements": "", + }; + + return updateData; + } +} diff --git a/system/src/migrations/updates/_module.mjs b/system/src/migrations/updates/_module.mjs index 3a8c4a78..3dc9f57e 100644 --- a/system/src/migrations/updates/_module.mjs +++ b/system/src/migrations/updates/_module.mjs @@ -24,3 +24,4 @@ export {default as Update_240510_1} from "./Update_240510_1.mjs"; export {default as Update_240511_1} from "./Update_240511_1.mjs"; export {default as Update_240511_2} from "./Update_240511_2.mjs"; export {default as Update_240930_1} from "./Update_240930_1.mjs"; +export {default as Update_241212_1} from "./Update_241212_1.mjs"; diff --git a/system/template.json b/system/template.json index d46874e2..9e48c5fa 100644 --- a/system/template.json +++ b/system/template.json @@ -1136,12 +1136,12 @@ "skills": "" }, "perk": { - "isCompanion": false, "rank": { "max": 1, "value": 0 }, - "requirements": { + "requirements": "", + "requirementsEx": { "level": 1, "levelIncrease": 0, "attributes": { @@ -1167,12 +1167,12 @@ "value": 0 } }, + "isCompanion": false, "notGhoul": false, "notHuman": false, "notRadiationImmune": false, "notRobot": false, - "notSupermutant": false, - "legacy": "" + "notSupermutant": false }, "templates": [ "base" From 355e0d7858ff737a8c157242cda44225712ed14f Mon Sep 17 00:00:00 2001 From: Paul Maskelyne Date: Thu, 12 Dec 2024 12:36:42 +0000 Subject: [PATCH 06/11] work on perk template --- system/src/templates.mjs | 4 +- system/templates/item/perk-sheet.hbs | 13 ++-- .../item/perk/{ => _partials}/attributes.hbs | 4 +- system/templates/item/perk/attributes-tab.hbs | 37 +++++++++++ .../templates/item/perk/description-tab.hbs | 62 ------------------- .../templates/item/perk/requirements-tab.hbs | 61 ++++++++---------- 6 files changed, 75 insertions(+), 106 deletions(-) rename system/templates/item/perk/{ => _partials}/attributes.hbs (78%) create mode 100644 system/templates/item/perk/attributes-tab.hbs delete mode 100644 system/templates/item/perk/description-tab.hbs diff --git a/system/src/templates.mjs b/system/src/templates.mjs index a4fe2bf3..0217f468 100644 --- a/system/src/templates.mjs +++ b/system/src/templates.mjs @@ -134,9 +134,9 @@ export default async function preloadHandlebarsTemplates() { "systems/fallout/templates/item/miscellany/attributes-tab.hbs", "systems/fallout/templates/item/object_or_structure/attributes-tab.hbs", "systems/fallout/templates/item/origin/attributes-tab.hbs", - "systems/fallout/templates/item/perk/description-tab.hbs", + "systems/fallout/templates/item/perk/attributes-tab.hbs", "systems/fallout/templates/item/perk/requirements-tab.hbs", - "systems/fallout/templates/item/perk/attributes.hbs", + "systems/fallout/templates/item/perk/_partials/attributes.hbs", "systems/fallout/templates/item/robot_armor/attributes-tab.hbs", "systems/fallout/templates/item/robot_mod/attributes-tab.hbs", "systems/fallout/templates/item/skill/attributes-tab.hbs", diff --git a/system/templates/item/perk-sheet.hbs b/system/templates/item/perk-sheet.hbs index e2bd6fd1..d319d1e9 100644 --- a/system/templates/item/perk-sheet.hbs +++ b/system/templates/item/perk-sheet.hbs @@ -3,14 +3,18 @@ {{> item/_shared-partials/header}}
- {{> item/perk/description-tab}} - {{> item/perk/requirements-tab}} + {{> item/_shared-partials/description-tab}} {{> item/_shared-partials/effects-tab}} {{> item/_shared-partials/source}} + {{> item/perk/attributes-tab}} + {{> item/perk/requirements-tab}}
diff --git a/system/templates/item/perk/attributes.hbs b/system/templates/item/perk/_partials/attributes.hbs similarity index 78% rename from system/templates/item/perk/attributes.hbs rename to system/templates/item/perk/_partials/attributes.hbs index 8d41a931..2826c775 100644 --- a/system/templates/item/perk/attributes.hbs +++ b/system/templates/item/perk/_partials/attributes.hbs @@ -1,7 +1,7 @@
{{#each FALLOUT.ATTRIBUTES as |attribute key|}} {{> specialAttribute - attribute=(lookup ../system.requirements.attributes key) + attribute=(lookup ../system.requirementsEx.attributes key) key=key }} {{/each}} @@ -16,7 +16,7 @@
diff --git a/system/templates/item/perk/attributes-tab.hbs b/system/templates/item/perk/attributes-tab.hbs new file mode 100644 index 00000000..59a57d60 --- /dev/null +++ b/system/templates/item/perk/attributes-tab.hbs @@ -0,0 +1,37 @@ +
+ +
+ + +
+
+ + + + + + + +
+
+
+
diff --git a/system/templates/item/perk/description-tab.hbs b/system/templates/item/perk/description-tab.hbs deleted file mode 100644 index 138b599f..00000000 --- a/system/templates/item/perk/description-tab.hbs +++ /dev/null @@ -1,62 +0,0 @@ -
- {{!-- Want to list the perk requirements above the descriptions for easy view. --}} -
- - - - - - - - - - -
-
- - - {{localize 'FALLOUT.TEMPLATES.Requirements'}}: - - {{{listPerkRequirements system.requirements}}} - -
- -
-

{{localize "FALLOUT.TEMPLATES.Description"}}

- {{ -editor descriptionHTML - button=true - editable=editable - owner=owner - rollData=rollData - target="system.description" - }} -
-
- - - - - -{{#*inline "specialAttribute"}} -
-
- {{subString key 0 1}} -
-
- -
-
-{{/inline}} diff --git a/system/templates/item/perk/requirements-tab.hbs b/system/templates/item/perk/requirements-tab.hbs index 07967e6a..cff15d86 100644 --- a/system/templates/item/perk/requirements-tab.hbs +++ b/system/templates/item/perk/requirements-tab.hbs @@ -1,6 +1,6 @@
- {{> item/perk/attributes}} + {{> item/perk/_partials/attributes}}
@@ -11,9 +11,9 @@
+ value="{{system.requirementsEx.level}}" />
@@ -25,9 +25,9 @@
+ value="{{system.requirementsEx.levelIncrease}}" />
{{/if}} @@ -36,87 +36,76 @@
-
-
-
-
-
- + {{checked system.requirementsEx.isCompanion}} /> +
- -
- - - -
From 353a659d36e338ebae9b5a654bbb9f7b4a90c7e1 Mon Sep 17 00:00:00 2001 From: Paul Maskelyne Date: Thu, 12 Dec 2024 12:36:57 +0000 Subject: [PATCH 07/11] formatting --- data/conditions/death-skull.svg | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/data/conditions/death-skull.svg b/data/conditions/death-skull.svg index e1e1ec26..f955f294 100644 --- a/data/conditions/death-skull.svg +++ b/data/conditions/death-skull.svg @@ -1 +1,17 @@ - \ No newline at end of file + + + + + + + + + + + + + + From 9dea0846fad1e190d52d2b82011d1490d5a7898f Mon Sep 17 00:00:00 2001 From: Paul Maskelyne Date: Wed, 18 Dec 2024 11:32:34 +0000 Subject: [PATCH 08/11] changed mind about separate attributes/requirements tabs --- system/src/templates.mjs | 1 - system/templates/item/perk-sheet.hbs | 5 - system/templates/item/perk/attributes-tab.hbs | 145 +++++++++++++++--- .../templates/item/perk/requirements-tab.hbs | 111 -------------- 4 files changed, 121 insertions(+), 141 deletions(-) delete mode 100644 system/templates/item/perk/requirements-tab.hbs diff --git a/system/src/templates.mjs b/system/src/templates.mjs index 0217f468..4da7e5d1 100644 --- a/system/src/templates.mjs +++ b/system/src/templates.mjs @@ -135,7 +135,6 @@ export default async function preloadHandlebarsTemplates() { "systems/fallout/templates/item/object_or_structure/attributes-tab.hbs", "systems/fallout/templates/item/origin/attributes-tab.hbs", "systems/fallout/templates/item/perk/attributes-tab.hbs", - "systems/fallout/templates/item/perk/requirements-tab.hbs", "systems/fallout/templates/item/perk/_partials/attributes.hbs", "systems/fallout/templates/item/robot_armor/attributes-tab.hbs", "systems/fallout/templates/item/robot_mod/attributes-tab.hbs", diff --git a/system/templates/item/perk-sheet.hbs b/system/templates/item/perk-sheet.hbs index d319d1e9..33498d80 100644 --- a/system/templates/item/perk-sheet.hbs +++ b/system/templates/item/perk-sheet.hbs @@ -7,10 +7,6 @@ {{localize "FALLOUT.TEMPLATES.Attributes"}} - - {{localize "FALLOUT.TEMPLATES.Requirements"}} - - {{localize "FALLOUT.TEMPLATES.Description"}} @@ -29,7 +25,6 @@ {{> item/_shared-partials/effects-tab}} {{> item/_shared-partials/source}} {{> item/perk/attributes-tab}} - {{> item/perk/requirements-tab}} diff --git a/system/templates/item/perk/attributes-tab.hbs b/system/templates/item/perk/attributes-tab.hbs index 59a57d60..4a387408 100644 --- a/system/templates/item/perk/attributes-tab.hbs +++ b/system/templates/item/perk/attributes-tab.hbs @@ -1,37 +1,134 @@
-
- + {{> item/perk/_partials/attributes}} -
-
+
+
+
- + + + / + + +
+ +
+ +
+ +
+
+ + {{#if (gt system.rank.max 1)}} +
+ + +
+ +
+
+ {{/if}} +
+ + +
+
+ + + +
+ +
+ + + +
+ +
+ + + +
+ +
+ + + +
+ +
+ + + +
+ +
+ - +
-
+
diff --git a/system/templates/item/perk/requirements-tab.hbs b/system/templates/item/perk/requirements-tab.hbs deleted file mode 100644 index cff15d86..00000000 --- a/system/templates/item/perk/requirements-tab.hbs +++ /dev/null @@ -1,111 +0,0 @@ -
- - {{> item/perk/_partials/attributes}} - -
-
-
- - -
- -
-
- - {{#if (gt system.rank.max 1)}} -
- - -
- -
-
- {{/if}} -
- - -
-
- - - -
- -
- - - -
- -
- - - -
- -
- - - -
- -
- - - -
- -
- - - -
-
-
-
From d76a780019fc9f9394bcc00c7024c4664677f2d7 Mon Sep 17 00:00:00 2001 From: Paul Maskelyne Date: Wed, 18 Dec 2024 21:20:36 +0000 Subject: [PATCH 09/11] perks updated with requirements --- ...akes_the_nation_by_storm____beJfGkUq386Kw4Sj.json | 5 +++-- .../__single_issue_titles____IoEvCm1c8TK0ekL7.json | 1 + .../perks.db/_la_fantoma___wUoc5IDZQ0ye1TDw.json | 5 +++-- .../action_boy___girl__cCrLiQ8zNWW3LAC6.json | 4 ++-- .../adamantium_skeleton__tdm3ETgFN8PA7ZE0.json | 8 ++++---- .../perks.db/adrenalin_rush__9KkBBnH3N7yhEeMB.json | 6 +++--- .../advice_from_married_men__B5AHVLoXVF8buanM.json | 5 +++-- .../an_experience_to_remember__4iTCNKydcsh3PHwY.json | 5 +++-- .../perks.db/animal_friend__IVL33DFzxdmpj143.json | 8 ++++---- .../aquaboy___aquagirl__z1OueIn6GiTrDVw7.json | 8 ++++---- data/packs/perks.db/armorer__EQjZHUxYinodOU6G.json | 10 +++++----- .../art_of_the_tomahawk__I7DFjAhnEzDZmdL7.json | 5 +++-- ...astoundingly_awesome_tales__1a7bhclgdtaboOtS.json | 1 + .../attack_of_the_fishmen___9uBD2OLMA2YtE3ST.json | 5 +++-- .../attack_of_the_metal_men___NNhKS3XzGuAnXNmq.json | 3 +-- ...void_those_pesky_gun_laws___Zl8Mt7ll7IqbgFq2.json | 5 +++-- data/packs/perks.db/awareness__JHMLajHU7sioJT9v.json | 6 +++--- .../perks.db/backwoodsman__juv3n8NKi5aCAcep.json | 1 + data/packs/perks.db/barbarian__j5SfukNzX12lRmwB.json | 10 +++++----- data/packs/perks.db/basher__A0UTRQ94MdLa3v2i.json | 6 +++--- ...ear_proofing_your_campsite__5tgqF87DaXrrz59x.json | 5 +++-- .../perks.db/better_criticals__Xrh0LthwODfn0McZ.json | 6 +++--- .../beware_the_man_handler__BvqY6Zk4bfPSpIj7.json | 5 +++-- .../perks.db/big_leagues__P5eJ7NOJMV8r9cHo.json | 6 +++--- .../black_widow___lady_killer__3bfAQcNKzjD0aOJ8.json | 6 +++--- .../packs/perks.db/blacksmith__422BCVbfcp5q8M8I.json | 10 +++++----- data/packs/perks.db/blitz__U8yM23ldUGYYtta1.json | 8 ++++---- .../blood_on_the_harp__56snTc6VYoTJqCMi.json | 5 +++-- .../perks.db/bloody_mess__jhef5zecOk3vQhGy.json | 6 +++--- ..._effective_than_lockpicks___Q6MhXT1qvcpX6fxU.json | 5 +++-- .../perks.db/book___magazine__zAYtcZkRVsN58RGG.json | 1 + .../perks.db/boxing_times__9rp4u6tgFbJk9GRT.json | 5 +++-- data/packs/perks.db/can_do___xTNbBLx2nxvf1mIE.json | 6 +++--- .../perks.db/cap_collector__BKTkXhJHSgVjdsKT.json | 6 +++--- ...rous_rabbits_of_appalachia__wwIthL6FW1dIq1MU.json | 5 +++-- .../perks.db/cautious_nature__xwXPepqdLzr8uPMX.json | 6 +++--- .../perks.db/center_mass__Nc22rM5RB37dOPcO.json | 6 +++--- .../perks.db/chem_resistant__49AOicQFjlfIKNUe.json | 8 ++++---- data/packs/perks.db/chemist__HUmwhrS7v9g31nOG.json | 6 +++--- .../cometh_the_trickster__MKt5lgPvnlrnMV9S.json | 5 +++-- data/packs/perks.db/commando__H6W082nVJtDeSthQ.json | 10 +++++----- .../commie_kazi_vs__manta_man__qItV5QGk0sN0md6p.json | 5 +++-- .../perks.db/comprehension__51j1AqLl4zHqoVsN.json | 6 +++--- .../concentrated_fire__YLA9JETKbkkHd3uz.json | 8 ++++---- ...fessions_of_a_housebreaker__PCA8zoHuaLjnsF7g.json | 5 +++-- .../coupon_spectacular__grJRadyKsz8Eu0cJ.json | 5 +++-- .../curse_of_the_burned___Cx5ysG2Z0XPE6DZn.json | 5 +++-- .../perks.db/daring_nature__VTtncpMUhGBxjmlQ.json | 6 +++--- .../perks.db/deadly_lasers___YeQmWe6K2QMAEaep.json | 5 +++-- .../demolition_expert__ureiid51WVHnCcSG.json | 8 ++++---- .../demon_slaves__demon_sands__FHMZ8ohO5uegkBHL.json | 5 +++-- data/packs/perks.db/dodger__5r60cyfjkvkYlTvs.json | 10 +++++----- data/packs/perks.db/dogmeat__6VAkIp310dSGvCj7.json | 6 +++--- .../down_home_cookin___1aIYFwFQGic2zHjK.json | 5 +++-- ...is_army_of_de_capitalists___35g6izwF0LhTPGMO.json | 5 +++-- .../perks.db/duck_and_cover___gD1wycvvp1ivtXdY.json | 5 +++-- ..._maula__war_maiden_of_mars__OIVq6l91X8x6r6zi.json | 5 +++-- .../perks.db/entomologist__Vk0RIc9X6HaypmwJ.json | 6 +++--- .../farming_the_wastes__TmIh9ecBP1YvDwdF.json | 5 +++-- .../perks.db/fast_metabolism__T3vX1fP7cSG5v0zh.json | 10 +++++----- .../perks.db/faster_healing__TTCwoZV141ZGuMjs.json | 8 ++++---- .../perks.db/fatherless_cur___sWkveVPjKk45QqwF.json | 5 +++-- ...5_01_whistling_in_the_dark__cPjofC2nJegzoPXS.json | 5 +++-- .../fh_5_02_urban_camouflage__AVB1RZC2w05dkUbZ.json | 5 +++-- ..._03_facepaint_fundamentals__vYiPt2jg7x1f0NTl.json | 5 +++-- ...oldiers_you_re_looking_for__g6qVETrGj3ide6hr.json | 5 +++-- .../fh_5_05_who_goes_there___lZ0REnexDQeH2cmK.json | 5 +++-- ...y_floorboard__sudden_death__DHdPahzQ9HMZ0FXb.json | 5 +++-- ...the_drop_on_the_communists__5rxzpSKhciVgbmzP.json | 5 +++-- ...ehives__camouflage_special__l9jhloiw4Sylv6Y3.json | 5 +++-- ..._5_09_look_better_in_black__nWVbU3dqMxeoxPoT.json | 5 +++-- ..._tiptoe_through_the_tulips__xBewaCbKbQO5BQKp.json | 5 +++-- data/packs/perks.db/finesse__DlJVCaT4RLT38Kgs.json | 6 +++--- .../perks.db/fixin__things__7gsRBEPt328MaEyI.json | 5 +++-- .../perks.db/fortune_finder__zQpZJuiwAC8Zk9a0.json | 10 +++++----- .../future_of_warfare___PBp0DOgO6fmob9LU.json | 5 +++-- .../future_weapons_today__LJXpGjoI1HYU6Heb.json | 5 +++-- ...geckos_and_gamma_radiation__kYMZ1knDNl0hLeI8.json | 5 +++-- .../perks.db/get_off_my_lawn__6b46sO6gPyRRziMy.json | 5 +++-- data/packs/perks.db/ghost__wC8TgVkF6OhFY9XR.json | 8 ++++---- .../giant_insects_invade___fMq7BDUKGUIZDOEY.json | 5 +++-- .../giant_super_weapons___JGsQpE2E1zseUEdM.json | 5 +++-- .../grim_reaper_s_sprint__YDRoA6dGjWXy06hf.json | 6 +++--- .../grognak_the_barbarian__wLlEWSMEFaVWTQ5E.json | 1 + .../guide_to_hunting_commies___BoK3Po9WKYHAv4Y9.json | 5 +++-- data/packs/perks.db/gun_fu__Nei43KlUxbHLw6MI.json | 8 ++++---- data/packs/perks.db/gun_nut__Ba5yPRdNAvjM5StI.json | 10 +++++----- .../perks.db/guns_and_bullets__hleTGvh4Mq1pZALV.json | 1 + .../packs/perks.db/gunslinger__ugnoJLCjVbVsAqOj.json | 10 +++++----- data/packs/perks.db/hacker__NMrJsMFjSLAYtHAU.json | 6 +++--- .../hardy_as_a_sasquatch__5FSxhtSwphd72BS1.json | 5 +++-- data/packs/perks.db/healer__LzDGf5TGlzcOBgFd.json | 8 ++++---- data/packs/perks.db/heave_ho___FLW7Fx5HVaIxuekh.json | 6 +++--- .../homesteading_horror__6XStNgfUJG92au27.json | 3 +-- data/packs/perks.db/hunter__zB82J3WJ7ld01RYR.json | 6 +++--- .../hunting_in_the_wastes__p8cH2qolrlrnLKIt.json | 5 +++-- .../i_married_a_robot__xfBuEJQHYAmds5XG.json | 5 +++-- ...bosom_of_the_corsair_queen__bzXcVbZZtHhGCcOs.json | 5 +++-- .../perks.db/infiltrator__SihEoKZZ7VgRmxgK.json | 6 +++--- .../insect_repellent_special__qxfqtIIZynyM2qIj.json | 5 +++-- .../perks.db/inspirational__YrVruOKk8Wy2YOc9.json | 6 +++--- .../perks.db/intense_training__P3SMmJulZT5OyArI.json | 8 ++++---- data/packs/perks.db/iron_fist__mU5YvUEtBshgRPFD.json | 8 ++++---- .../jungle_of_the_bat_babies__FgiFIu2LmrckPy5Y.json | 5 +++-- .../junktown_jerky_vendor__4uNzMc2WNqMYZEuW.json | 6 +++--- .../perks.db/jury_rigging__trdF2qUBRHrj3YNW.json | 4 ++-- .../perks.db/laser_commander__VtCwIMtash7XcwxP.json | 10 +++++----- ...nting__acceptable_overkill__nRkIZJRQqkTsqQV7.json | 5 +++-- .../packs/perks.db/lead_belly__wE5dyJKCl7gysWci.json | 8 ++++---- .../packs/perks.db/life_giver__w1Vn3NXOGw30Hi13.json | 8 ++++---- .../life_long_best_friends___SKyP3uQ4CQCcdKZs.json | 5 +++-- .../packs/perks.db/light_step__iMnBN75TTp1DuKzk.json | 4 ++-- ...tle_guns_for_little_ladies__YUHxXpiMFWmEtbXB.json | 5 +++-- .../perks.db/live___love__254i0e4Wc0Rhv6gc.json | 1 + ...___pass_with_flying_colors__xRA5ktVoyWDHRy8N.json | 5 +++-- .../lost_in_the_snows_of_lust__pIGqn3CdOhsyQyhx.json | 5 +++-- ...achusetts_surgical_journal__scI8HRzH0QjDb1bh.json | 5 +++-- .../perks.db/master_thief__nOpsl2puqWzQJT4t.json | 8 ++++---- data/packs/perks.db/medic__fMU0zfQYyhkwZ6Ck.json | 6 +++--- .../perks.db/meeting_people__tKQ4oQiQxWoM10p6.json | 5 +++-- data/packs/perks.db/meltdown__SFhtHQk4lztiJ8gw.json | 6 +++--- .../perks.db/mister_sandman__ycaluMjkY5xApFFl.json | 6 +++--- .../perks.db/moving_target__URnrv6ebs1Oqso2m.json | 6 +++--- ...of_the_master_key_exposed___dx2dkCtFBWb5kukV.json | 5 +++-- .../mysterious_stranger__EYZgPc9OM7qsPpT1.json | 6 +++--- .../packs/perks.db/nerd_rage___gbPgHoavxEEaYC4j.json | 10 +++++----- .../perks.db/night_person__jqGwYM88awxTPn46.json | 6 +++--- .../nightmare_in_the_garden__C2pRfk15zpFV3sgG.json | 5 +++-- data/packs/perks.db/ninja__82n08gxPWsoaLlvK.json | 6 +++--- .../nuclear_physicist__zlPvWlAVWezHiFXX.json | 6 +++--- .../perks.db/nuke_the_man___H27K9ike953ZIyRl.json | 5 +++-- ...any_lock_in_5_seconds_flat__mrgLpKa5RkDmIWHq.json | 5 +++-- .../packs/perks.db/pain_train__TzAVKNEtdWWgfx4u.json | 10 +++++----- .../perks.db/paralyzing_palm__Epn0E2yMAxTmSOFX.json | 6 +++--- .../party_boy___party_girl__iDaMlrcxl6kEm3Ex.json | 8 ++++---- .../packs/perks.db/pathfinder__RhITTHDy13MufCZy.json | 8 ++++---- .../perks.db/pharma_farma__E3vqYT7JvmyDeFyU.json | 6 +++--- .../packs/perks.db/pickpocket__e4HPClvz4fA06tUc.json | 10 +++++----- .../perks.db/piercing_strike__H6x4BnrUSmI33dwZ.json | 6 +++--- ...ma__the_weapon_of_tomorrow__SbayR4I8JCyymq0a.json | 5 +++-- .../programmer_s_digest__xmOWzjBpDXRfPa9Y.json | 5 +++-- .../packs/perks.db/pyromaniac__aNO3ZBQmBGS9A94C.json | 10 +++++----- .../packs/perks.db/quick_draw__Xz1V9etWzTtwt5x5.json | 6 +++--- .../perks.db/quick_hands__2UGzU0qmtozi4QZK.json | 6 +++--- .../perks.db/rad_resistance__TFJbnmRbE7cisziV.json | 8 ++++---- data/packs/perks.db/refractor__myJS8tB5FHk3Jo65.json | 10 +++++----- data/packs/perks.db/ricochet__E6eCO6Hq6gb4KGmQ.json | 8 ++++---- data/packs/perks.db/rifleman__RkftnkHGKVnz6URN.json | 10 +++++----- .../rise_of_the_mutants___Gn880XN7Auhdop6S.json | 5 +++-- .../perks.db/robotics_expert__GiPKNxmrkWA2k76W.json | 10 +++++----- ...ocket_science_for_toddlers__3gc78PRC1se8qefU.json | 5 +++-- data/packs/perks.db/science___UzRkuAJkvYqK8jrl.json | 10 +++++----- .../science_gone_mad___fDu6KU5u17sqA1hf.json | 3 +-- data/packs/perks.db/scoundrel__j4XUYfEZwmvkfXBe.json | 6 +++--- data/packs/perks.db/scrapper__dIQkAZGEzdR8j2BB.json | 8 ++++---- data/packs/perks.db/scrounger__zXQUHfk3g9d7WDG1.json | 8 ++++---- .../self_defense_secrets__yXOy24286aAjL5ID.json | 5 +++-- .../perks.db/shotgun_surgeon__SfcMrqZU78wIJQ0r.json | 8 ++++---- .../perks.db/size_matters__fGZ6h4VtddiXvpZ3.json | 10 +++++----- data/packs/perks.db/skilled__PtWvAVSdwEPjeRb3.json | 8 ++++---- data/packs/perks.db/slayer__6U2ulr6F0lUbJoYl.json | 6 +++--- .../perks.db/smooth_talker__fhBw3zhOo6EuZy2j.json | 5 ++--- data/packs/perks.db/snakeater__Y7s5hBuYxnIYz4T4.json | 6 +++--- data/packs/perks.db/sniper__cJGae8CyPIfp6tj7.json | 8 ++++---- .../perks.db/solar_powered__FXbX2ktBJkb6uFIG.json | 6 +++--- .../packs/perks.db/steady_aim__qrXcBKc5MX1lTmKa.json | 8 ++++---- .../street_guns_of_detroit__iQofqWEFwGokog1G.json | 5 +++-- .../perks.db/strong_back__6UWfRLqNydpXobqM.json | 8 ++++---- .../surrounded_by_the_dead___pk42jPbAVMosmA0k.json | 5 +++-- data/packs/perks.db/tag___4QXLYHaB9WGmGVY1.json | 6 +++--- .../take_aim__army_style__oRB1ZIvzhsUMElSc.json | 5 +++-- ...of_a_junktown_jerky_vendor__Qf4PBCvZdSvPAeX7.json | 5 +++-- .../talk_yourself_sober__Jip3JdMpV9HTHujn.json | 5 +++-- .../terrifying_presence__CaZiVRLhAUoxj0en.json | 12 ++++++------ .../tesla_science_magazine__zY0rwlqXY0Yb7tFp.json | 1 + ...palachia_squirrel_massacre__kQD85MOcz1B4KHsV.json | 3 +-- ...ide_of_radiation_poisoning__BSi2qWkBGOJKFFED.json | 5 +++-- .../the_future_of_hunting___kBFXBzcatoT884Je.json | 5 +++-- ...gunsmith_of_harper_s_ferry__3caIOATNwBm6EPuh.json | 5 +++-- ..._lair_of_the_virgin_eaters__KEpm4gH8RvMjhpoO.json | 5 +++-- ...the_mad_russian_s_revenge___LSUSRTgMyqfN1EQx.json | 5 +++-- ...ommunist_doomsday_device____zZg9mSTuufYGzSib.json | 5 +++-- .../the_ohio_river_hermit__7vvLcpVth2gMnB7o.json | 5 +++-- .../the_secretary_charmer__disfFslU7fhYTIlC.json | 5 +++-- .../the_starlet_sniper___x6hpmUJFDTD3Iw82.json | 5 +++-- ...for_today_s_super_soldiers__eTkUS79PttpiHVm0.json | 5 +++-- data/packs/perks.db/toughness__OL6ocnHhOZW4mxns.json | 10 +++++----- ...ion_of_the_pterror_dactyls__VrMFCFltA2MKaCcH.json | 5 +++-- .../perks.db/trim_the_fat___siFrRn6TjSmxGKas.json | 5 +++-- .../true_police_stories__DC6xyEVANOUPyy1I.json | 5 +++-- .../perks.db/tumblers_today__lGOBRrvW0XU5E6o8.json | 1 + .../u_s__army_goes_to_space__lkAJKVOfU1DfjLU9.json | 5 +++-- ...__covert_operations_manual__yqwsUbSI5liyBtpj.json | 1 + .../perks.db/unstoppables__y6eI37QhWZMaqeyZ.json | 1 + .../visit_the_ux_ron_galaxy___Lf2VvWWVug9jj5Ly.json | 5 +++-- .../wasteland_survival_guide__dFCoGx8Inb2YiPBZ.json | 1 + .../water_aerobics_for_ghouls__xXZcXGsZY6g4QkTl.json | 5 +++-- .../what_is_plasma__anyway___MsNkQ2J8T75NE3uJ.json | 5 +++-- .../what_sorcery_is_this___1KDDs6qPimKnwL9r.json | 5 +++-- ..._unstoppable_grog_na_rok____7heg2KN3JXIllHT2.json | 5 +++-- ...ill_robots_rule_the_world___9LAlQMlnpZ2lYqKV.json | 5 +++-- 201 files changed, 637 insertions(+), 539 deletions(-) diff --git a/data/packs/perks.db/10_number_1_hits____rock_o_bot_takes_the_nation_by_storm____beJfGkUq386Kw4Sj.json b/data/packs/perks.db/10_number_1_hits____rock_o_bot_takes_the_nation_by_storm____beJfGkUq386Kw4Sj.json index 67debc21..f9692d3a 100644 --- a/data/packs/perks.db/10_number_1_hits____rock_o_bot_takes_the_nation_by_storm____beJfGkUq386Kw4Sj.json +++ b/data/packs/perks.db/10_number_1_hits____rock_o_bot_takes_the_nation_by_storm____beJfGkUq386Kw4Sj.json @@ -10,8 +10,6 @@ "description": "

Once, when you inflict a Critical Hit, increase the total damage inflicted by +2

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.ECXYCwNy7GKVavV3" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/__single_issue_titles____IoEvCm1c8TK0ekL7.json b/data/packs/perks.db/__single_issue_titles____IoEvCm1c8TK0ekL7.json index cffe8364..ffecff61 100644 --- a/data/packs/perks.db/__single_issue_titles____IoEvCm1c8TK0ekL7.json +++ b/data/packs/perks.db/__single_issue_titles____IoEvCm1c8TK0ekL7.json @@ -2,6 +2,7 @@ "_id": "IoEvCm1c8TK0ekL7", "_key": "!folders!IoEvCm1c8TK0ekL7", "color": "#293f5f", + "description": "", "folder": "zAYtcZkRVsN58RGG", "name": "~ Single Issue Titles ~", "sorting": "a", diff --git a/data/packs/perks.db/_la_fantoma___wUoc5IDZQ0ye1TDw.json b/data/packs/perks.db/_la_fantoma___wUoc5IDZQ0ye1TDw.json index 4984c72f..651de831 100644 --- a/data/packs/perks.db/_la_fantoma___wUoc5IDZQ0ye1TDw.json +++ b/data/packs/perks.db/_la_fantoma___wUoc5IDZQ0ye1TDw.json @@ -10,8 +10,6 @@ "description": "

When you succeed at a Sneak test to avoid notice, you may spend 1 AP to create a distraction somewhere within Medium range; the character who failed the opposed test to detect you heads towards the distraction you created. If you learn this perk, you may use it once per scene.

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.9Z4Asa5c915hem9w" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/action_boy___girl__cCrLiQ8zNWW3LAC6.json b/data/packs/perks.db/action_boy___girl__cCrLiQ8zNWW3LAC6.json index 6e542b12..d8d92e8a 100644 --- a/data/packs/perks.db/action_boy___girl__cCrLiQ8zNWW3LAC6.json +++ b/data/packs/perks.db/action_boy___girl__cCrLiQ8zNWW3LAC6.json @@ -10,8 +10,6 @@ "description": "

When you spend AP to take an additional major action, you do not suffer the increased skill test difficulty during your second action.

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,8 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/adamantium_skeleton__tdm3ETgFN8PA7ZE0.json b/data/packs/perks.db/adamantium_skeleton__tdm3ETgFN8PA7ZE0.json index 98d4e9cc..eefa14ef 100644 --- a/data/packs/perks.db/adamantium_skeleton__tdm3ETgFN8PA7ZE0.json +++ b/data/packs/perks.db/adamantium_skeleton__tdm3ETgFN8PA7ZE0.json @@ -10,8 +10,6 @@ "description": "

When you suffer damage, the amount of damage needed to inflict a critical hit on you increases by your rank in this perk. For example, if you have one rank in this perk, you suffer a critical hit from 6 or more damage, rather than 5 or more. Each time you take this perk, the level requirement increases by 3.

\n

Requirements: END 7, Level 1+

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 3, "value": 0 }, @@ -25,7 +23,7 @@ "value": 0 }, "end": { - "value": 0 + "value": 7 }, "int": { "value": 0 @@ -42,7 +40,9 @@ }, "isCompanion": false, "level": 1, - "levelIncrease": 0, + "levelIncrease": 3, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/adrenalin_rush__9KkBBnH3N7yhEeMB.json b/data/packs/perks.db/adrenalin_rush__9KkBBnH3N7yhEeMB.json index 6c4c8424..fc67100e 100644 --- a/data/packs/perks.db/adrenalin_rush__9KkBBnH3N7yhEeMB.json +++ b/data/packs/perks.db/adrenalin_rush__9KkBBnH3N7yhEeMB.json @@ -10,8 +10,6 @@ "description": "

When your health is below its maximum value, you count your STR score as 10 for all purposes when attempting a STR-based skill test or melee attack.

\n

Requirements: STR 7

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -37,12 +35,14 @@ "value": 0 }, "str": { - "value": 0 + "value": 7 } }, "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/advice_from_married_men__B5AHVLoXVF8buanM.json b/data/packs/perks.db/advice_from_married_men__B5AHVLoXVF8buanM.json index b57114c9..5e34d8d9 100644 --- a/data/packs/perks.db/advice_from_married_men__B5AHVLoXVF8buanM.json +++ b/data/packs/perks.db/advice_from_married_men__B5AHVLoXVF8buanM.json @@ -10,8 +10,6 @@ "description": "

+1 Physical damage resistance to all party members for one scene

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.8uCaW6rs4fwDWJUF" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/an_experience_to_remember__4iTCNKydcsh3PHwY.json b/data/packs/perks.db/an_experience_to_remember__4iTCNKydcsh3PHwY.json index cf20e0e0..0d91b6c1 100644 --- a/data/packs/perks.db/an_experience_to_remember__4iTCNKydcsh3PHwY.json +++ b/data/packs/perks.db/an_experience_to_remember__4iTCNKydcsh3PHwY.json @@ -10,8 +10,6 @@ "description": "

Choose one other Magazine perk you have previously used but not learned; that now takes effect

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.LATCQmWWljVCwMnt" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/animal_friend__IVL33DFzxdmpj143.json b/data/packs/perks.db/animal_friend__IVL33DFzxdmpj143.json index ca483e7b..08713573 100644 --- a/data/packs/perks.db/animal_friend__IVL33DFzxdmpj143.json +++ b/data/packs/perks.db/animal_friend__IVL33DFzxdmpj143.json @@ -10,8 +10,6 @@ "description": "

At rank 1, whenever a creature NPC with the Mammal, Lizard, or Insect keyword would attack you, roll 1DCD: on any result other than an Effect, the creature chooses not to attack you, although it may still attack another character it can target.

\n

At rank 2, you can attempt a CHA + Survival test with a difficulty of 2 as a major action. If you succeed, the animal treats you as friendly and will attack anyone who attacks you. Mighty and Legendary animals are unaffected by this perk. Each time you take this perk, the level requirement increases by 5.

\n

Requirements: CHA 6, Level 1+

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 2, "value": 0 }, @@ -22,7 +20,7 @@ "value": 0 }, "cha": { - "value": 0 + "value": 6 }, "end": { "value": 0 @@ -42,7 +40,9 @@ }, "isCompanion": false, "level": 1, - "levelIncrease": 0, + "levelIncrease": 5, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/aquaboy___aquagirl__z1OueIn6GiTrDVw7.json b/data/packs/perks.db/aquaboy___aquagirl__z1OueIn6GiTrDVw7.json index f0145e19..1c9b5832 100644 --- a/data/packs/perks.db/aquaboy___aquagirl__z1OueIn6GiTrDVw7.json +++ b/data/packs/perks.db/aquaboy___aquagirl__z1OueIn6GiTrDVw7.json @@ -10,8 +10,6 @@ "description": "

Water is your ally. At rank 1, you no longer take radiation damage from swimming in irradiated water, and you can hold your breath for twice as long as normal.

\n

At rank 2, enemies add +2 to the difficulty to tests to detect you while you are submerged underwater. Each time you take this perk, the level requirement increases by 3.

\n

Requirements: END 5, Level 1+

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 2, "value": 0 }, @@ -25,7 +23,7 @@ "value": 0 }, "end": { - "value": 0 + "value": 5 }, "int": { "value": 0 @@ -42,7 +40,9 @@ }, "isCompanion": false, "level": 1, - "levelIncrease": 0, + "levelIncrease": 3, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/armorer__EQjZHUxYinodOU6G.json b/data/packs/perks.db/armorer__EQjZHUxYinodOU6G.json index 8a98bdf1..5455b04e 100644 --- a/data/packs/perks.db/armorer__EQjZHUxYinodOU6G.json +++ b/data/packs/perks.db/armorer__EQjZHUxYinodOU6G.json @@ -10,8 +10,6 @@ "description": "

You can modify armor with armor mods. Each rank in this perk unlocks an additional rank of mods: rank 1 unlocks rank 1 mods, rank 2 unlocks rank 2 mods, etc.

\n

Each time you take this perk, the level requirement increases by 4.

\n

Requirements: STR 5, INT 6

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 4, "value": 0 }, @@ -28,7 +26,7 @@ "value": 0 }, "int": { - "value": 0 + "value": 6 }, "luc": { "value": 0 @@ -37,12 +35,14 @@ "value": 0 }, "str": { - "value": 0 + "value": 5 } }, "isCompanion": false, "level": 1, - "levelIncrease": 0, + "levelIncrease": 4, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/art_of_the_tomahawk__I7DFjAhnEzDZmdL7.json b/data/packs/perks.db/art_of_the_tomahawk__I7DFjAhnEzDZmdL7.json index 4e7630bc..9edb5dc5 100644 --- a/data/packs/perks.db/art_of_the_tomahawk__I7DFjAhnEzDZmdL7.json +++ b/data/packs/perks.db/art_of_the_tomahawk__I7DFjAhnEzDZmdL7.json @@ -10,8 +10,6 @@ "description": "

Backwoodsman

\n

Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from once. If you later learn the perk, you may use that benefit once per scene.

\n
    \n
  • \n

    Reduce difficulty of a test to resist catching a disease by 1 (min. of 0)

    \n
  • \n
", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.MsXLDa4RZ0UHMT2J" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/astoundingly_awesome_tales__1a7bhclgdtaboOtS.json b/data/packs/perks.db/astoundingly_awesome_tales__1a7bhclgdtaboOtS.json index 1fd555c0..2c861668 100644 --- a/data/packs/perks.db/astoundingly_awesome_tales__1a7bhclgdtaboOtS.json +++ b/data/packs/perks.db/astoundingly_awesome_tales__1a7bhclgdtaboOtS.json @@ -2,6 +2,7 @@ "_id": "1a7bhclgdtaboOtS", "_key": "!folders!1a7bhclgdtaboOtS", "color": "#293f5f", + "description": "", "folder": "zAYtcZkRVsN58RGG", "name": "Astoundingly Awesome Tales", "sorting": "a", diff --git a/data/packs/perks.db/attack_of_the_fishmen___9uBD2OLMA2YtE3ST.json b/data/packs/perks.db/attack_of_the_fishmen___9uBD2OLMA2YtE3ST.json index e2ec198b..644dee17 100644 --- a/data/packs/perks.db/attack_of_the_fishmen___9uBD2OLMA2YtE3ST.json +++ b/data/packs/perks.db/attack_of_the_fishmen___9uBD2OLMA2YtE3ST.json @@ -10,8 +10,6 @@ "description": "

Astoundingly Awesome Tales

\n

Perk: Depending on the individual issue found, you receive a different perk, granting bonus damage or bonus damage resistance against a single foe or
type of attack.

\n
    \n
  • +1 @fos[DC] on attacks vs mirelurk
  • \n
", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.mT6qkeV6xTG1pnex" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/attack_of_the_metal_men___NNhKS3XzGuAnXNmq.json b/data/packs/perks.db/attack_of_the_metal_men___NNhKS3XzGuAnXNmq.json index 14849555..223d9684 100644 --- a/data/packs/perks.db/attack_of_the_metal_men___NNhKS3XzGuAnXNmq.json +++ b/data/packs/perks.db/attack_of_the_metal_men___NNhKS3XzGuAnXNmq.json @@ -10,8 +10,6 @@ "description": "

Astoundingly Awesome Tales

\n

Perk: Depending on the individual issue found, you receive a different perk, granting bonus damage or bonus damage resistance against a single foe or
type of attack.

\n
    \n
  • +2 to Physical and Energy damage resistances vs Robots
  • \n
\n

 

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,7 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": "", "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/avoid_those_pesky_gun_laws___Zl8Mt7ll7IqbgFq2.json b/data/packs/perks.db/avoid_those_pesky_gun_laws___Zl8Mt7ll7IqbgFq2.json index f304d52e..566040a8 100644 --- a/data/packs/perks.db/avoid_those_pesky_gun_laws___Zl8Mt7ll7IqbgFq2.json +++ b/data/packs/perks.db/avoid_those_pesky_gun_laws___Zl8Mt7ll7IqbgFq2.json @@ -10,8 +10,6 @@ "description": "

When you salvage a weapon, gain 2 AP which may only be spent to salvage additional units of materials

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.qcEZIWmadDggAT8K" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/awareness__JHMLajHU7sioJT9v.json b/data/packs/perks.db/awareness__JHMLajHU7sioJT9v.json index 61beb5a2..47872ac9 100644 --- a/data/packs/perks.db/awareness__JHMLajHU7sioJT9v.json +++ b/data/packs/perks.db/awareness__JHMLajHU7sioJT9v.json @@ -10,8 +10,6 @@ "description": "

When you take the Aim minor action at a target within Close range, you spot their weaknesses and can attack more efficiently. The next attack you make against that target gains the Piercing 1 damage effect, or improves the rating of any existing Piercing X damage effect by 1.

\n

Requirements: PER 7

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -34,7 +32,7 @@ "value": 0 }, "per": { - "value": 0 + "value": 7 }, "str": { "value": 0 @@ -43,6 +41,8 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/backwoodsman__juv3n8NKi5aCAcep.json b/data/packs/perks.db/backwoodsman__juv3n8NKi5aCAcep.json index 418480f5..a8b83a6d 100644 --- a/data/packs/perks.db/backwoodsman__juv3n8NKi5aCAcep.json +++ b/data/packs/perks.db/backwoodsman__juv3n8NKi5aCAcep.json @@ -2,6 +2,7 @@ "_id": "juv3n8NKi5aCAcep", "_key": "!folders!juv3n8NKi5aCAcep", "color": "#293f5f", + "description": "", "folder": "zAYtcZkRVsN58RGG", "name": "Backwoodsman", "sorting": "a", diff --git a/data/packs/perks.db/barbarian__j5SfukNzX12lRmwB.json b/data/packs/perks.db/barbarian__j5SfukNzX12lRmwB.json index 73bc1c8e..acb55173 100644 --- a/data/packs/perks.db/barbarian__j5SfukNzX12lRmwB.json +++ b/data/packs/perks.db/barbarian__j5SfukNzX12lRmwB.json @@ -10,8 +10,6 @@ "description": "

Your physical Damage Resistance increases on all hit locations based on your STR. You do not gain this benefit while wearing Power Armor.

\n
    \n
  • STR 7–8: +1 physical DR
  • \n
  • STR 9–10: +2 physical DR
  • \n
  • STR 11+: +3 physical DR
  • \n
\n

 

\n

Requirements: STR 7, Level 4+, not a robot

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -37,16 +35,18 @@ "value": 0 }, "str": { - "value": 0 + "value": 7 } }, "isCompanion": false, - "level": 1, + "level": 4, "levelIncrease": 0, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, - "notRobot": false, + "notRobot": true, "notSupermutant": false }, "source": "core_rulebook" diff --git a/data/packs/perks.db/basher__A0UTRQ94MdLa3v2i.json b/data/packs/perks.db/basher__A0UTRQ94MdLa3v2i.json index e8ffe687..2a68ab52 100644 --- a/data/packs/perks.db/basher__A0UTRQ94MdLa3v2i.json +++ b/data/packs/perks.db/basher__A0UTRQ94MdLa3v2i.json @@ -10,8 +10,6 @@ "description": "

When you make a melee attack by bashing with your gun (see p.111), your attack gains the Vicious damage effect.

\n

Requirements: STR 6

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -37,12 +35,14 @@ "value": 0 }, "str": { - "value": 0 + "value": 6 } }, "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/bear_proofing_your_campsite__5tgqF87DaXrrz59x.json b/data/packs/perks.db/bear_proofing_your_campsite__5tgqF87DaXrrz59x.json index 2a8c4b2d..baaad8ac 100644 --- a/data/packs/perks.db/bear_proofing_your_campsite__5tgqF87DaXrrz59x.json +++ b/data/packs/perks.db/bear_proofing_your_campsite__5tgqF87DaXrrz59x.json @@ -10,8 +10,6 @@ "description": "

One attack against Yao Guai inflicts +3CD damage

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.AJEifHfxya4EViFy" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/better_criticals__Xrh0LthwODfn0McZ.json b/data/packs/perks.db/better_criticals__Xrh0LthwODfn0McZ.json index cfde42f4..e23d64fc 100644 --- a/data/packs/perks.db/better_criticals__Xrh0LthwODfn0McZ.json +++ b/data/packs/perks.db/better_criticals__Xrh0LthwODfn0McZ.json @@ -10,8 +10,6 @@ "description": "

When you inflict one or more points of damage to an enemy, you may spend 1 Luck Point to automatically inflict a critical hit, causing an injury.

\n

Requirements: LCK 9

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -31,7 +29,7 @@ "value": 0 }, "luc": { - "value": 0 + "value": 9 }, "per": { "value": 0 @@ -43,6 +41,8 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/beware_the_man_handler__BvqY6Zk4bfPSpIj7.json b/data/packs/perks.db/beware_the_man_handler__BvqY6Zk4bfPSpIj7.json index eca09177..44432b99 100644 --- a/data/packs/perks.db/beware_the_man_handler__BvqY6Zk4bfPSpIj7.json +++ b/data/packs/perks.db/beware_the_man_handler__BvqY6Zk4bfPSpIj7.json @@ -10,8 +10,6 @@ "description": "

The group AP pool may contain 1 AP more than normal for one scene

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.hCRQEWSkpgvFluXe" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/big_leagues__P5eJ7NOJMV8r9cHo.json b/data/packs/perks.db/big_leagues__P5eJ7NOJMV8r9cHo.json index a99b0ca9..153aca2f 100644 --- a/data/packs/perks.db/big_leagues__P5eJ7NOJMV8r9cHo.json +++ b/data/packs/perks.db/big_leagues__P5eJ7NOJMV8r9cHo.json @@ -10,8 +10,6 @@ "description": "

When you make a melee attack with a two-handed melee weapon, the weapon gains the Vicious damage effect.

\n

Requirements: STR 8

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -37,12 +35,14 @@ "value": 0 }, "str": { - "value": 0 + "value": 8 } }, "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/black_widow___lady_killer__3bfAQcNKzjD0aOJ8.json b/data/packs/perks.db/black_widow___lady_killer__3bfAQcNKzjD0aOJ8.json index c3dc1daa..8b355db2 100644 --- a/data/packs/perks.db/black_widow___lady_killer__3bfAQcNKzjD0aOJ8.json +++ b/data/packs/perks.db/black_widow___lady_killer__3bfAQcNKzjD0aOJ8.json @@ -10,8 +10,6 @@ "description": "

The Black Widow perk affects men and masculine characters, while the Lady Killer perk affects women and feminine characters—they are otherwise identical. When you attempt a CHA based skill test to influence a character of the chosen gender, you may re-roll 1d20. In addition, your attacks inflict +1DCD additional damage against characters of the chosen gender.

\n

Requirements: CHA 6

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -22,7 +20,7 @@ "value": 0 }, "cha": { - "value": 0 + "value": 6 }, "end": { "value": 0 @@ -43,6 +41,8 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/blacksmith__422BCVbfcp5q8M8I.json b/data/packs/perks.db/blacksmith__422BCVbfcp5q8M8I.json index 9b206cc0..d6a34fe8 100644 --- a/data/packs/perks.db/blacksmith__422BCVbfcp5q8M8I.json +++ b/data/packs/perks.db/blacksmith__422BCVbfcp5q8M8I.json @@ -10,8 +10,6 @@ "description": "

You can modify melee weapons with weapon mods. Each rank in this perk unlocks an additional rank of melee weapon mods: rank 1 unlocks rank 1 mods, rank 2 unlocks rank 2 mods, and rank 3 unlocks rank 3 mods. Each time you take this perk, the level requirement increases by 4.

\n

Requirements: STR 6, Level 2+

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 3, "value": 0 }, @@ -37,12 +35,14 @@ "value": 0 }, "str": { - "value": 0 + "value": 6 } }, "isCompanion": false, - "level": 1, - "levelIncrease": 0, + "level": 2, + "levelIncrease": 4, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/blitz__U8yM23ldUGYYtta1.json b/data/packs/perks.db/blitz__U8yM23ldUGYYtta1.json index ecf2ba0f..759a7117 100644 --- a/data/packs/perks.db/blitz__U8yM23ldUGYYtta1.json +++ b/data/packs/perks.db/blitz__U8yM23ldUGYYtta1.json @@ -10,8 +10,6 @@ "description": "

When you move into reach of an opponent and make a melee attack against them in one turn, you may re-roll one d20 on your attack.

\n

At rank 2, you also inflict +1CD damage with that attack. Each time you take this perk, the level requirement increases by 3.

\n

Requirements: AGI 9, Level 1+

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 2, "value": 0 }, @@ -19,7 +17,7 @@ "requirementsEx": { "attributes": { "agi": { - "value": 0 + "value": 9 }, "cha": { "value": 0 @@ -42,7 +40,9 @@ }, "isCompanion": false, "level": 1, - "levelIncrease": 0, + "levelIncrease": 3, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/blood_on_the_harp__56snTc6VYoTJqCMi.json b/data/packs/perks.db/blood_on_the_harp__56snTc6VYoTJqCMi.json index e83d6738..e60c3a3c 100644 --- a/data/packs/perks.db/blood_on_the_harp__56snTc6VYoTJqCMi.json +++ b/data/packs/perks.db/blood_on_the_harp__56snTc6VYoTJqCMi.json @@ -10,8 +10,6 @@ "description": "

One successful melee attack you make inflicts +2CD damage

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.qx4yMqnLv4ZI6Ppx" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/bloody_mess__jhef5zecOk3vQhGy.json b/data/packs/perks.db/bloody_mess__jhef5zecOk3vQhGy.json index 44b1ca4f..b4efb040 100644 --- a/data/packs/perks.db/bloody_mess__jhef5zecOk3vQhGy.json +++ b/data/packs/perks.db/bloody_mess__jhef5zecOk3vQhGy.json @@ -10,8 +10,6 @@ "description": "

When you inflict a critical hit, roll 1DCD; if you roll an Effect, you inflict one additional injury to a random location.

\n

Requirements: LCK 6

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -31,7 +29,7 @@ "value": 0 }, "luc": { - "value": 0 + "value": 6 }, "per": { "value": 0 @@ -43,6 +41,8 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/bobby_pins__more_effective_than_lockpicks___Q6MhXT1qvcpX6fxU.json b/data/packs/perks.db/bobby_pins__more_effective_than_lockpicks___Q6MhXT1qvcpX6fxU.json index 7c32d6ca..19110cac 100644 --- a/data/packs/perks.db/bobby_pins__more_effective_than_lockpicks___Q6MhXT1qvcpX6fxU.json +++ b/data/packs/perks.db/bobby_pins__more_effective_than_lockpicks___Q6MhXT1qvcpX6fxU.json @@ -10,8 +10,6 @@ "description": "

When using a Bobby Pin, reduce the difficulty of a Lockpicking test by a further 1 (minimum 0)

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.4lu6hamyxERQzWNa" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/book___magazine__zAYtcZkRVsN58RGG.json b/data/packs/perks.db/book___magazine__zAYtcZkRVsN58RGG.json index ba605b38..68690914 100644 --- a/data/packs/perks.db/book___magazine__zAYtcZkRVsN58RGG.json +++ b/data/packs/perks.db/book___magazine__zAYtcZkRVsN58RGG.json @@ -2,6 +2,7 @@ "_id": "zAYtcZkRVsN58RGG", "_key": "!folders!zAYtcZkRVsN58RGG", "color": "#121d2c", + "description": "", "folder": null, "name": "Book & Magazine", "sorting": "a", diff --git a/data/packs/perks.db/boxing_times__9rp4u6tgFbJk9GRT.json b/data/packs/perks.db/boxing_times__9rp4u6tgFbJk9GRT.json index 9c9d991b..570e0ecf 100644 --- a/data/packs/perks.db/boxing_times__9rp4u6tgFbJk9GRT.json +++ b/data/packs/perks.db/boxing_times__9rp4u6tgFbJk9GRT.json @@ -10,8 +10,6 @@ "description": "

Once, when you succeed at an Unarmed attack, if you spend any AP to increase the damage you dealt, you may add the Stun damage effect to your attack. If you later learn this perk, you may use this on any successful Unarmed attack.

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.zsdAyshPMJ7Clyis" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/can_do___xTNbBLx2nxvf1mIE.json b/data/packs/perks.db/can_do___xTNbBLx2nxvf1mIE.json index 877e07db..e1dd21c2 100644 --- a/data/packs/perks.db/can_do___xTNbBLx2nxvf1mIE.json +++ b/data/packs/perks.db/can_do___xTNbBLx2nxvf1mIE.json @@ -10,8 +10,6 @@ "description": "

When you are scavenging a location that contains food, you gain 1 additional random food item, without spending AP.

\n

Requirements: LCK 5

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -31,7 +29,7 @@ "value": 0 }, "luc": { - "value": 0 + "value": 5 }, "per": { "value": 0 @@ -43,6 +41,8 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/cap_collector__BKTkXhJHSgVjdsKT.json b/data/packs/perks.db/cap_collector__BKTkXhJHSgVjdsKT.json index 3631a184..d7bbfeff 100644 --- a/data/packs/perks.db/cap_collector__BKTkXhJHSgVjdsKT.json +++ b/data/packs/perks.db/cap_collector__BKTkXhJHSgVjdsKT.json @@ -10,8 +10,6 @@ "description": "

When you buy or sell items, you may increase or decrease the price of the goods being traded by 10%.

\n

Requirements: CHA 5

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -22,7 +20,7 @@ "value": 0 }, "cha": { - "value": 0 + "value": 5 }, "end": { "value": 0 @@ -43,6 +41,8 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/carnivorous_rabbits_of_appalachia__wwIthL6FW1dIq1MU.json b/data/packs/perks.db/carnivorous_rabbits_of_appalachia__wwIthL6FW1dIq1MU.json index cc017f0d..a92003ac 100644 --- a/data/packs/perks.db/carnivorous_rabbits_of_appalachia__wwIthL6FW1dIq1MU.json +++ b/data/packs/perks.db/carnivorous_rabbits_of_appalachia__wwIthL6FW1dIq1MU.json @@ -10,8 +10,6 @@ "description": "

Backwoodsman

\n

Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from once. If you later learn the perk, you may use that benefit once per scene.

\n
    \n
  • \n

    Add +2CD damage to an attack against a Mammal or Lizard

    \n
  • \n
", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.fYekpImbXPFZgNkz" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/cautious_nature__xwXPepqdLzr8uPMX.json b/data/packs/perks.db/cautious_nature__xwXPepqdLzr8uPMX.json index 420ebca3..af273eaf 100644 --- a/data/packs/perks.db/cautious_nature__xwXPepqdLzr8uPMX.json +++ b/data/packs/perks.db/cautious_nature__xwXPepqdLzr8uPMX.json @@ -10,8 +10,6 @@ "description": "

Whenever you attempt a skill test, and you buy one or more d20s by spending Action Points, you may re-roll 1d20 on that test. You may not purchase this perk if you have Daring Nature.

\n

Requirements: PER 7

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -34,7 +32,7 @@ "value": 0 }, "per": { - "value": 0 + "value": 7 }, "str": { "value": 0 @@ -43,6 +41,8 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/center_mass__Nc22rM5RB37dOPcO.json b/data/packs/perks.db/center_mass__Nc22rM5RB37dOPcO.json index 525d2e86..dc1d6964 100644 --- a/data/packs/perks.db/center_mass__Nc22rM5RB37dOPcO.json +++ b/data/packs/perks.db/center_mass__Nc22rM5RB37dOPcO.json @@ -10,8 +10,6 @@ "description": "

When you make a ranged attack, you may choose to strike your target’s Torso location (or equivalent, for creatures that use a different location table) without increasing the difficulty of the attack. In addition, you may re-roll 1d20 when making the test for your attack.

\n

Requirements: AGI 7

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -19,7 +17,7 @@ "requirementsEx": { "attributes": { "agi": { - "value": 0 + "value": 7 }, "cha": { "value": 0 @@ -43,6 +41,8 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/chem_resistant__49AOicQFjlfIKNUe.json b/data/packs/perks.db/chem_resistant__49AOicQFjlfIKNUe.json index 11b63fb8..e704f61b 100644 --- a/data/packs/perks.db/chem_resistant__49AOicQFjlfIKNUe.json +++ b/data/packs/perks.db/chem_resistant__49AOicQFjlfIKNUe.json @@ -10,8 +10,6 @@ "description": "

At rank 1, roll one fewer CD when determining if you become addicted to chems,
to a minimum of 0.

\n

At rank 2, you cannot become addicted to chems. Each time you take this perk, the level requirement increases by 4.

\n

Requirements: END 7, Level 1+

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 2, "value": 0 }, @@ -25,7 +23,7 @@ "value": 0 }, "end": { - "value": 0 + "value": 7 }, "int": { "value": 0 @@ -42,7 +40,9 @@ }, "isCompanion": false, "level": 1, - "levelIncrease": 0, + "levelIncrease": 4, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/chemist__HUmwhrS7v9g31nOG.json b/data/packs/perks.db/chemist__HUmwhrS7v9g31nOG.json index c2c7e714..57c4d982 100644 --- a/data/packs/perks.db/chemist__HUmwhrS7v9g31nOG.json +++ b/data/packs/perks.db/chemist__HUmwhrS7v9g31nOG.json @@ -10,8 +10,6 @@ "description": "

Chems you create last twice as long as normal (see p.164). In addition, you unlock chems recipes that have this perk as a requirement.

\n

Requirements: INT 7

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -28,7 +26,7 @@ "value": 0 }, "int": { - "value": 0 + "value": 7 }, "luc": { "value": 0 @@ -43,6 +41,8 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/cometh_the_trickster__MKt5lgPvnlrnMV9S.json b/data/packs/perks.db/cometh_the_trickster__MKt5lgPvnlrnMV9S.json index 0aaee7ea..8e343b49 100644 --- a/data/packs/perks.db/cometh_the_trickster__MKt5lgPvnlrnMV9S.json +++ b/data/packs/perks.db/cometh_the_trickster__MKt5lgPvnlrnMV9S.json @@ -10,8 +10,6 @@ "description": "

Add +1 to the difficulty of another character’s skill test to detect you

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.78JHpLZz5rQeTMP9" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/commando__H6W082nVJtDeSthQ.json b/data/packs/perks.db/commando__H6W082nVJtDeSthQ.json index eb3eab36..7d32beee 100644 --- a/data/packs/perks.db/commando__H6W082nVJtDeSthQ.json +++ b/data/packs/perks.db/commando__H6W082nVJtDeSthQ.json @@ -10,8 +10,6 @@ "description": "

When you make a ranged attack with any weapon with a Fire Rate of 3 or higher (except heavy weapons), you add +1DCD per rank to the weapon’s damage. Each time you take this perk, the level requirement increases by 3.

\n

Requirements: AGI 8, Level 2+

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 2, "value": 0 }, @@ -19,7 +17,7 @@ "requirementsEx": { "attributes": { "agi": { - "value": 0 + "value": 8 }, "cha": { "value": 0 @@ -41,8 +39,10 @@ } }, "isCompanion": false, - "level": 1, - "levelIncrease": 0, + "level": 2, + "levelIncrease": 3, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/commie_kazi_vs__manta_man__qItV5QGk0sN0md6p.json b/data/packs/perks.db/commie_kazi_vs__manta_man__qItV5QGk0sN0md6p.json index ab47ea10..bf0bc605 100644 --- a/data/packs/perks.db/commie_kazi_vs__manta_man__qItV5QGk0sN0md6p.json +++ b/data/packs/perks.db/commie_kazi_vs__manta_man__qItV5QGk0sN0md6p.json @@ -10,8 +10,6 @@ "description": "

Spend 1 Luck point to avoid all damage from a Blast weapon

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.CYfpl0Gt0KEq1CcJ" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/comprehension__51j1AqLl4zHqoVsN.json b/data/packs/perks.db/comprehension__51j1AqLl4zHqoVsN.json index 4bb4dfad..77045539 100644 --- a/data/packs/perks.db/comprehension__51j1AqLl4zHqoVsN.json +++ b/data/packs/perks.db/comprehension__51j1AqLl4zHqoVsN.json @@ -10,8 +10,6 @@ "description": "

After you use the bonus gained from reading a magazine, roll 1 CD. If you roll an Effect, you may use that bonus one additional time.

\n

Requirements: INT 6

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -28,7 +26,7 @@ "value": 0 }, "int": { - "value": 0 + "value": 6 }, "luc": { "value": 0 @@ -43,6 +41,8 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/concentrated_fire__YLA9JETKbkkHd3uz.json b/data/packs/perks.db/concentrated_fire__YLA9JETKbkkHd3uz.json index 915b496d..7ea2fe64 100644 --- a/data/packs/perks.db/concentrated_fire__YLA9JETKbkkHd3uz.json +++ b/data/packs/perks.db/concentrated_fire__YLA9JETKbkkHd3uz.json @@ -10,8 +10,6 @@ "description": "

When you make a ranged attack and spend ammunition to increase the damage, you may re-roll up to 3 CD for your damage roll.

\n

Requirements: PER 8, AGI 6

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -19,7 +17,7 @@ "requirementsEx": { "attributes": { "agi": { - "value": 0 + "value": 6 }, "cha": { "value": 0 @@ -34,7 +32,7 @@ "value": 0 }, "per": { - "value": 0 + "value": 8 }, "str": { "value": 0 @@ -43,6 +41,8 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/confessions_of_a_housebreaker__PCA8zoHuaLjnsF7g.json b/data/packs/perks.db/confessions_of_a_housebreaker__PCA8zoHuaLjnsF7g.json index 690ec000..2a08b709 100644 --- a/data/packs/perks.db/confessions_of_a_housebreaker__PCA8zoHuaLjnsF7g.json +++ b/data/packs/perks.db/confessions_of_a_housebreaker__PCA8zoHuaLjnsF7g.json @@ -10,8 +10,6 @@ "description": "

When scavenging or looting, spend 1 Luck to find 2+2CD Bobby Pins

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.ZHve7VSwmsyHRjom" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/coupon_spectacular__grJRadyKsz8Eu0cJ.json b/data/packs/perks.db/coupon_spectacular__grJRadyKsz8Eu0cJ.json index 2f407ebe..6d25e079 100644 --- a/data/packs/perks.db/coupon_spectacular__grJRadyKsz8Eu0cJ.json +++ b/data/packs/perks.db/coupon_spectacular__grJRadyKsz8Eu0cJ.json @@ -10,8 +10,6 @@ "description": "

When buying food or drink items, the price is shifted an additional 10% in your favor

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.lc4MTpvhDkQ7ApOS" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/curse_of_the_burned___Cx5ysG2Z0XPE6DZn.json b/data/packs/perks.db/curse_of_the_burned___Cx5ysG2Z0XPE6DZn.json index be17cf56..69bd3adb 100644 --- a/data/packs/perks.db/curse_of_the_burned___Cx5ysG2Z0XPE6DZn.json +++ b/data/packs/perks.db/curse_of_the_burned___Cx5ysG2Z0XPE6DZn.json @@ -10,8 +10,6 @@ "description": "

Astoundingly Awesome Tales

\n

Perk: Depending on the individual issue found, you receive a different perk, granting bonus damage or bonus damage resistance against a single foe or
type of attack.

\n
    \n
  • +1 @fos[DC] on attacks vs Ghouls
  • \n
\n

 

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.jPdCfq2T6pELwzbK" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/daring_nature__VTtncpMUhGBxjmlQ.json b/data/packs/perks.db/daring_nature__VTtncpMUhGBxjmlQ.json index f1138b24..30d5630f 100644 --- a/data/packs/perks.db/daring_nature__VTtncpMUhGBxjmlQ.json +++ b/data/packs/perks.db/daring_nature__VTtncpMUhGBxjmlQ.json @@ -10,8 +10,6 @@ "description": "

Whenever you attempt a skill test, and you buy one or more d20s by giving the gamemaster Action Points, you may re-roll 1d20 on that test. You may not purchase this perk if you have Cautious Nature.

\n

Requirements: LCK 7

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -31,7 +29,7 @@ "value": 0 }, "luc": { - "value": 0 + "value": 7 }, "per": { "value": 0 @@ -43,6 +41,8 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/deadly_lasers___YeQmWe6K2QMAEaep.json b/data/packs/perks.db/deadly_lasers___YeQmWe6K2QMAEaep.json index a0297ab0..08c60215 100644 --- a/data/packs/perks.db/deadly_lasers___YeQmWe6K2QMAEaep.json +++ b/data/packs/perks.db/deadly_lasers___YeQmWe6K2QMAEaep.json @@ -10,8 +10,6 @@ "description": "

Astoundingly Awesome Tales

\n

Perk: Depending on the individual issue found, you receive a different perk, granting bonus damage or bonus damage resistance against a single foe or
type of attack.

\n
    \n
  • \n

    +1CD on attacks with Energy weapons

    \n
  • \n
\n

 

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.6rHaK2QtsSPGvSpJ" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/demolition_expert__ureiid51WVHnCcSG.json b/data/packs/perks.db/demolition_expert__ureiid51WVHnCcSG.json index 7abf97e8..58651e25 100644 --- a/data/packs/perks.db/demolition_expert__ureiid51WVHnCcSG.json +++ b/data/packs/perks.db/demolition_expert__ureiid51WVHnCcSG.json @@ -10,8 +10,6 @@ "description": "

When you make an attack using a weapon with the Blast quality, the attack gains the Vicious damage effect. In addition, you unlock explosives recipes which have this perk as a requirement.

\n

Requirements: PER 6, LCK 6

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -31,10 +29,10 @@ "value": 0 }, "luc": { - "value": 0 + "value": 6 }, "per": { - "value": 0 + "value": 6 }, "str": { "value": 0 @@ -43,6 +41,8 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/demon_slaves__demon_sands__FHMZ8ohO5uegkBHL.json b/data/packs/perks.db/demon_slaves__demon_sands__FHMZ8ohO5uegkBHL.json index 425b8b8f..7d28228d 100644 --- a/data/packs/perks.db/demon_slaves__demon_sands__FHMZ8ohO5uegkBHL.json +++ b/data/packs/perks.db/demon_slaves__demon_sands__FHMZ8ohO5uegkBHL.json @@ -10,8 +10,6 @@ "description": "

One attack against Ghouls inflicts +2CD damage

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.hhLOBbowNeo4VSDe" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/dodger__5r60cyfjkvkYlTvs.json b/data/packs/perks.db/dodger__5r60cyfjkvkYlTvs.json index 01d18c3d..3e1db243 100644 --- a/data/packs/perks.db/dodger__5r60cyfjkvkYlTvs.json +++ b/data/packs/perks.db/dodger__5r60cyfjkvkYlTvs.json @@ -10,8 +10,6 @@ "description": "

At rank 1, when you take the Defend major action, you reduce the difficulty of the skill test by 1. At rank 2, the AP cost to further increase your Defense is reduced to 1 AP. Each time you take this perk, the level requirement increases by 6.

\n

Requirements: AGI 6, Level 4

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 2, "value": 0 }, @@ -19,7 +17,7 @@ "requirementsEx": { "attributes": { "agi": { - "value": 0 + "value": 6 }, "cha": { "value": 0 @@ -41,8 +39,10 @@ } }, "isCompanion": false, - "level": 1, - "levelIncrease": 0, + "level": 4, + "levelIncrease": 6, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/dogmeat__6VAkIp310dSGvCj7.json b/data/packs/perks.db/dogmeat__6VAkIp310dSGvCj7.json index 58453e27..dabcbad6 100644 --- a/data/packs/perks.db/dogmeat__6VAkIp310dSGvCj7.json +++ b/data/packs/perks.db/dogmeat__6VAkIp310dSGvCj7.json @@ -10,8 +10,6 @@ "description": "

You aren’t alone in the wilderness. You have a pet dog that serves as a friend and ally in dangerous times. The dog has the profile shown to the side and is treated as an allied NPC creature under your command (see p.338). If you need to forage for food and water, your dog looks after themselves. If your dog is slain, then you either find a new dog before the next adventure, or you may trade this perk for a different one after this adventure.

\n

Requirements: CHA 5

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -22,7 +20,7 @@ "value": 0 }, "cha": { - "value": 0 + "value": 5 }, "end": { "value": 0 @@ -43,6 +41,8 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/down_home_cookin___1aIYFwFQGic2zHjK.json b/data/packs/perks.db/down_home_cookin___1aIYFwFQGic2zHjK.json index 9b335a83..a71c509c 100644 --- a/data/packs/perks.db/down_home_cookin___1aIYFwFQGic2zHjK.json +++ b/data/packs/perks.db/down_home_cookin___1aIYFwFQGic2zHjK.json @@ -10,8 +10,6 @@ "description": "

Backwoodsman

\n

Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from once. If you later learn the perk, you may use that benefit once per scene.

\n
    \n
  • \n

    Add +2CD damage to a Thrown weapon attack (other than an Explosive)

    \n
  • \n
", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.5k41CcVoWDkABFcI" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/dr__brainwash_and_his_army_of_de_capitalists___35g6izwF0LhTPGMO.json b/data/packs/perks.db/dr__brainwash_and_his_army_of_de_capitalists___35g6izwF0LhTPGMO.json index 35fcc680..d079e5cf 100644 --- a/data/packs/perks.db/dr__brainwash_and_his_army_of_de_capitalists___35g6izwF0LhTPGMO.json +++ b/data/packs/perks.db/dr__brainwash_and_his_army_of_de_capitalists___35g6izwF0LhTPGMO.json @@ -10,8 +10,6 @@ "description": "

Spend 3 Luck points to avoid all damage from a single attack or hazard

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.szr8VmfdWra3zwXO" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/duck_and_cover___gD1wycvvp1ivtXdY.json b/data/packs/perks.db/duck_and_cover___gD1wycvvp1ivtXdY.json index d1581fbc..fd4b150c 100644 --- a/data/packs/perks.db/duck_and_cover___gD1wycvvp1ivtXdY.json +++ b/data/packs/perks.db/duck_and_cover___gD1wycvvp1ivtXdY.json @@ -10,8 +10,6 @@ "description": "

Once, when you are affected by a Blast weapon, you may choose to fall prone (p.25). If you do so, you add +3 to all damage resistances against the damage caused by that Blast. If you later learn this perk, you may use whenever you are affected by a Blast weapon by spending 1 AP.

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.ZTVTUHilc84UzoRP" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/enter_maula__war_maiden_of_mars__OIVq6l91X8x6r6zi.json b/data/packs/perks.db/enter_maula__war_maiden_of_mars__OIVq6l91X8x6r6zi.json index 9ac0a3a7..e2ba2136 100644 --- a/data/packs/perks.db/enter_maula__war_maiden_of_mars__OIVq6l91X8x6r6zi.json +++ b/data/packs/perks.db/enter_maula__war_maiden_of_mars__OIVq6l91X8x6r6zi.json @@ -10,8 +10,6 @@ "description": "

When you make a melee attack with a Two-Handed melee weapon, gain the Piercing 1 damage effect (or +1 to any existing Piercing effect)

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.n5iAbo8IerJqOQNR" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/entomologist__Vk0RIc9X6HaypmwJ.json b/data/packs/perks.db/entomologist__Vk0RIc9X6HaypmwJ.json index aaf129d2..16253125 100644 --- a/data/packs/perks.db/entomologist__Vk0RIc9X6HaypmwJ.json +++ b/data/packs/perks.db/entomologist__Vk0RIc9X6HaypmwJ.json @@ -10,8 +10,6 @@ "description": "

When you make an attack against an NPC with the Insect keyword, your attack gains the Piercing 1 damage effect, or improves the rating of any Piercing X effect the weapon has by +1.

\n

Requirements: INT 7

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -28,7 +26,7 @@ "value": 0 }, "int": { - "value": 0 + "value": 7 }, "luc": { "value": 0 @@ -43,6 +41,8 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/farming_the_wastes__TmIh9ecBP1YvDwdF.json b/data/packs/perks.db/farming_the_wastes__TmIh9ecBP1YvDwdF.json index c6e83dcd..dca6e491 100644 --- a/data/packs/perks.db/farming_the_wastes__TmIh9ecBP1YvDwdF.json +++ b/data/packs/perks.db/farming_the_wastes__TmIh9ecBP1YvDwdF.json @@ -10,8 +10,6 @@ "description": "

Consuming a fruit or vegetable food item heals twice as many HP

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.0GXqsrMeNMoA9iCS" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/fast_metabolism__T3vX1fP7cSG5v0zh.json b/data/packs/perks.db/fast_metabolism__T3vX1fP7cSG5v0zh.json index 54c4cf7a..0c3f465e 100644 --- a/data/packs/perks.db/fast_metabolism__T3vX1fP7cSG5v0zh.json +++ b/data/packs/perks.db/fast_metabolism__T3vX1fP7cSG5v0zh.json @@ -10,8 +10,6 @@ "description": "

When you regain one or more HP from any source other than rest, increase the total HP regained by +1 per rank in this perk. Each time you take this perk, the level requirement increases by 3.

\n

Requirements: END 6, Level 1+, not a robot

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 3, "value": 0 }, @@ -25,7 +23,7 @@ "value": 0 }, "end": { - "value": 0 + "value": 6 }, "int": { "value": 0 @@ -42,11 +40,13 @@ }, "isCompanion": false, "level": 1, - "levelIncrease": 0, + "levelIncrease": 3, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, - "notRobot": false, + "notRobot": true, "notSupermutant": false }, "source": "core_rulebook" diff --git a/data/packs/perks.db/faster_healing__TTCwoZV141ZGuMjs.json b/data/packs/perks.db/faster_healing__TTCwoZV141ZGuMjs.json index b60d194b..048b26ae 100644 --- a/data/packs/perks.db/faster_healing__TTCwoZV141ZGuMjs.json +++ b/data/packs/perks.db/faster_healing__TTCwoZV141ZGuMjs.json @@ -10,8 +10,6 @@ "description": "

When you make an END + Survival test to heal your own injuries, the first additional d20 you buy is free. The normal maximum of 5d20 still applies.

\n

Requirements: END 6, not a robot

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -25,7 +23,7 @@ "value": 0 }, "end": { - "value": 0 + "value": 6 }, "int": { "value": 0 @@ -43,10 +41,12 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, - "notRobot": false, + "notRobot": true, "notSupermutant": false }, "source": "core_rulebook" diff --git a/data/packs/perks.db/fatherless_cur___sWkveVPjKk45QqwF.json b/data/packs/perks.db/fatherless_cur___sWkveVPjKk45QqwF.json index ad1d1d4a..1fabd70e 100644 --- a/data/packs/perks.db/fatherless_cur___sWkveVPjKk45QqwF.json +++ b/data/packs/perks.db/fatherless_cur___sWkveVPjKk45QqwF.json @@ -10,8 +10,6 @@ "description": "

Ignore one complication on a melee attack

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.vcIgVqypELu1vP9C" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/fh_5_01_whistling_in_the_dark__cPjofC2nJegzoPXS.json b/data/packs/perks.db/fh_5_01_whistling_in_the_dark__cPjofC2nJegzoPXS.json index 31caf7cf..af72d482 100644 --- a/data/packs/perks.db/fh_5_01_whistling_in_the_dark__cPjofC2nJegzoPXS.json +++ b/data/packs/perks.db/fh_5_01_whistling_in_the_dark__cPjofC2nJegzoPXS.json @@ -10,8 +10,6 @@ "description": "

If you are detected while sneaking, you add +2 to Physical damage resistance against the first attack you receive after being detected

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.KE1PFFcFheyQriDU" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/fh_5_02_urban_camouflage__AVB1RZC2w05dkUbZ.json b/data/packs/perks.db/fh_5_02_urban_camouflage__AVB1RZC2w05dkUbZ.json index c915d0c0..0ab9100e 100644 --- a/data/packs/perks.db/fh_5_02_urban_camouflage__AVB1RZC2w05dkUbZ.json +++ b/data/packs/perks.db/fh_5_02_urban_camouflage__AVB1RZC2w05dkUbZ.json @@ -10,8 +10,6 @@ "description": "

Enemies suffer +1 difficulty on tests to detect you; this does not stack with any difficulty increases for poor light or darkness

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.rV3tvVvTmDGs7E0t" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/fh_5_03_facepaint_fundamentals__vYiPt2jg7x1f0NTl.json b/data/packs/perks.db/fh_5_03_facepaint_fundamentals__vYiPt2jg7x1f0NTl.json index ef8c3122..797ba8f2 100644 --- a/data/packs/perks.db/fh_5_03_facepaint_fundamentals__vYiPt2jg7x1f0NTl.json +++ b/data/packs/perks.db/fh_5_03_facepaint_fundamentals__vYiPt2jg7x1f0NTl.json @@ -10,8 +10,6 @@ "description": "

+1 to all damage resistances against attacks from Character NPCs

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.mPUq6ivdAuHbxor6" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/fh_5_04_not_the_soldiers_you_re_looking_for__g6qVETrGj3ide6hr.json b/data/packs/perks.db/fh_5_04_not_the_soldiers_you_re_looking_for__g6qVETrGj3ide6hr.json index 3e9b8d4f..2a5bb3c5 100644 --- a/data/packs/perks.db/fh_5_04_not_the_soldiers_you_re_looking_for__g6qVETrGj3ide6hr.json +++ b/data/packs/perks.db/fh_5_04_not_the_soldiers_you_re_looking_for__g6qVETrGj3ide6hr.json @@ -10,8 +10,6 @@ "description": "

+1CD damage inflicted by attacks against Character NPCs

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.4yO3TrAohgWDMhDI" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/fh_5_05_who_goes_there___lZ0REnexDQeH2cmK.json b/data/packs/perks.db/fh_5_05_who_goes_there___lZ0REnexDQeH2cmK.json index 2aa42102..73e1b677 100644 --- a/data/packs/perks.db/fh_5_05_who_goes_there___lZ0REnexDQeH2cmK.json +++ b/data/packs/perks.db/fh_5_05_who_goes_there___lZ0REnexDQeH2cmK.json @@ -10,8 +10,6 @@ "description": "

When you spend a Luck point to re-roll a d20 on a PER test, instead count that die as if it had rolled a 1

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.2RauaAfTO24MIsP2" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/fh_5_06_squeaky_floorboard__sudden_death__DHdPahzQ9HMZ0FXb.json b/data/packs/perks.db/fh_5_06_squeaky_floorboard__sudden_death__DHdPahzQ9HMZ0FXb.json index 70ea7856..0e57e259 100644 --- a/data/packs/perks.db/fh_5_06_squeaky_floorboard__sudden_death__DHdPahzQ9HMZ0FXb.json +++ b/data/packs/perks.db/fh_5_06_squeaky_floorboard__sudden_death__DHdPahzQ9HMZ0FXb.json @@ -10,8 +10,6 @@ "description": "

Once, when you suffer one or more Complications on a Sneak test, ignore the complications

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.9W6IRymdpOZXKmHG" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/fh_5_07_getting_the_drop_on_the_communists__5rxzpSKhciVgbmzP.json b/data/packs/perks.db/fh_5_07_getting_the_drop_on_the_communists__5rxzpSKhciVgbmzP.json index f9fa1bc1..6bc1e283 100644 --- a/data/packs/perks.db/fh_5_07_getting_the_drop_on_the_communists__5rxzpSKhciVgbmzP.json +++ b/data/packs/perks.db/fh_5_07_getting_the_drop_on_the_communists__5rxzpSKhciVgbmzP.json @@ -10,8 +10,6 @@ "description": "

Once, when an enemy aims before making an attack against you, you may cause them to lose the benefits of aiming

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.ouvM5DNPcc9nqgIw" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/fh_5_08_bushes__boxes__and_beehives__camouflage_special__l9jhloiw4Sylv6Y3.json b/data/packs/perks.db/fh_5_08_bushes__boxes__and_beehives__camouflage_special__l9jhloiw4Sylv6Y3.json index 3d8bfb23..a09fc453 100644 --- a/data/packs/perks.db/fh_5_08_bushes__boxes__and_beehives__camouflage_special__l9jhloiw4Sylv6Y3.json +++ b/data/packs/perks.db/fh_5_08_bushes__boxes__and_beehives__camouflage_special__l9jhloiw4Sylv6Y3.json @@ -10,8 +10,6 @@ "description": "

+2CD damage inflicted by an unarmed attack or an attack made with a knife

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.m6XUFT8MYFsgAvyH" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/fh_5_09_look_better_in_black__nWVbU3dqMxeoxPoT.json b/data/packs/perks.db/fh_5_09_look_better_in_black__nWVbU3dqMxeoxPoT.json index 150ccc68..8f6771e1 100644 --- a/data/packs/perks.db/fh_5_09_look_better_in_black__nWVbU3dqMxeoxPoT.json +++ b/data/packs/perks.db/fh_5_09_look_better_in_black__nWVbU3dqMxeoxPoT.json @@ -10,8 +10,6 @@ "description": "

Once, when using a Stealth Boy, it lasts for one additional turn

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.lHCsUY3S6twO3Fjb" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/fh_5_10_tiptoe_through_the_tulips__xBewaCbKbQO5BQKp.json b/data/packs/perks.db/fh_5_10_tiptoe_through_the_tulips__xBewaCbKbQO5BQKp.json index 88f8f65c..929b05dc 100644 --- a/data/packs/perks.db/fh_5_10_tiptoe_through_the_tulips__xBewaCbKbQO5BQKp.json +++ b/data/packs/perks.db/fh_5_10_tiptoe_through_the_tulips__xBewaCbKbQO5BQKp.json @@ -10,8 +10,6 @@ "description": "

When you spend a Luck point to re-roll a d20 on an AGI test, instead count that die as if it had rolled a 1

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.vAtCC2CaGrGOgnSL" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/finesse__DlJVCaT4RLT38Kgs.json b/data/packs/perks.db/finesse__DlJVCaT4RLT38Kgs.json index 6d4525bd..e5196cfe 100644 --- a/data/packs/perks.db/finesse__DlJVCaT4RLT38Kgs.json +++ b/data/packs/perks.db/finesse__DlJVCaT4RLT38Kgs.json @@ -10,8 +10,6 @@ "description": "

Once per combat encounter, you may re-roll all the DCD on a single damage roll without spending any Luck points.

\n

Requirements: AGI 9

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -19,7 +17,7 @@ "requirementsEx": { "attributes": { "agi": { - "value": 0 + "value": 9 }, "cha": { "value": 0 @@ -43,6 +41,8 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/fixin__things__7gsRBEPt328MaEyI.json b/data/packs/perks.db/fixin__things__7gsRBEPt328MaEyI.json index f42eba31..7ec6d1c8 100644 --- a/data/packs/perks.db/fixin__things__7gsRBEPt328MaEyI.json +++ b/data/packs/perks.db/fixin__things__7gsRBEPt328MaEyI.json @@ -10,8 +10,6 @@ "description": "

Once, when you attempt to repair an item, halve the amounts of the materials needed to complete the repair (round up). If you later learn this perk, you may use this whenever you attempt repairs.

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.mBOgGCUFastqsi1c" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/fortune_finder__zQpZJuiwAC8Zk9a0.json b/data/packs/perks.db/fortune_finder__zQpZJuiwAC8Zk9a0.json index 0231f319..fbe8a606 100644 --- a/data/packs/perks.db/fortune_finder__zQpZJuiwAC8Zk9a0.json +++ b/data/packs/perks.db/fortune_finder__zQpZJuiwAC8Zk9a0.json @@ -10,8 +10,6 @@ "description": "

Whenever you roll to determine how much money you find, you find more. At rank 1, you find +3DCD additional caps. At rank 2, you find +6DCD additional caps. At rank 3, you find +10CD additional caps. Each time you take this perk, the level requirement increases by 4.

\n

Requirements: LCK 5, Level 2+

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 3, "value": 0 }, @@ -31,7 +29,7 @@ "value": 0 }, "luc": { - "value": 0 + "value": 5 }, "per": { "value": 0 @@ -41,8 +39,10 @@ } }, "isCompanion": false, - "level": 1, - "levelIncrease": 0, + "level": 2, + "levelIncrease": 4, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/future_of_warfare___PBp0DOgO6fmob9LU.json b/data/packs/perks.db/future_of_warfare___PBp0DOgO6fmob9LU.json index f1b6c365..7a7658be 100644 --- a/data/packs/perks.db/future_of_warfare___PBp0DOgO6fmob9LU.json +++ b/data/packs/perks.db/future_of_warfare___PBp0DOgO6fmob9LU.json @@ -10,8 +10,6 @@ "description": "

On a single attack with a Big Gun, you inflict a Critical Hit if you inflict 3 or more damage after damage resistance (rather than the normal 5 or more damage)

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.jKcPooNmifCreXOn" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/future_weapons_today__LJXpGjoI1HYU6Heb.json b/data/packs/perks.db/future_weapons_today__LJXpGjoI1HYU6Heb.json index beafb58f..b612e7b5 100644 --- a/data/packs/perks.db/future_weapons_today__LJXpGjoI1HYU6Heb.json +++ b/data/packs/perks.db/future_weapons_today__LJXpGjoI1HYU6Heb.json @@ -10,8 +10,6 @@ "description": "

Once, when you make an attack with an Energy Weapon, you may overcharge it. Increase the damage by +2CD for that attack. The weapon cannot be used to make an attack in the turn after an overcharged attack as it cools down. If you later learn this perk, you may overcharge an Energy Weapon once per scene.

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.IRIhIXR0X1PnThvd" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/geckos_and_gamma_radiation__kYMZ1knDNl0hLeI8.json b/data/packs/perks.db/geckos_and_gamma_radiation__kYMZ1knDNl0hLeI8.json index dca31261..28a599a5 100644 --- a/data/packs/perks.db/geckos_and_gamma_radiation__kYMZ1knDNl0hLeI8.json +++ b/data/packs/perks.db/geckos_and_gamma_radiation__kYMZ1knDNl0hLeI8.json @@ -10,8 +10,6 @@ "description": "

+2CD damage inflicted on one attack against a Mutated creature

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.L7d6xppSur7dXyKt" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/get_off_my_lawn__6b46sO6gPyRRziMy.json b/data/packs/perks.db/get_off_my_lawn__6b46sO6gPyRRziMy.json index cd78e2b3..64082c0c 100644 --- a/data/packs/perks.db/get_off_my_lawn__6b46sO6gPyRRziMy.json +++ b/data/packs/perks.db/get_off_my_lawn__6b46sO6gPyRRziMy.json @@ -10,8 +10,6 @@ "description": "

Backwoodsman

\n

Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from once. If you later learn the perk, you may use that benefit once per scene.

\n
    \n
  • Find twice as much meat from a butchered creature
  • \n
", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.yqeVKyCZWStLXitm" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/ghost__wC8TgVkF6OhFY9XR.json b/data/packs/perks.db/ghost__wC8TgVkF6OhFY9XR.json index 396ace27..5b66bc89 100644 --- a/data/packs/perks.db/ghost__wC8TgVkF6OhFY9XR.json +++ b/data/packs/perks.db/ghost__wC8TgVkF6OhFY9XR.json @@ -10,8 +10,6 @@ "description": "

Whenever you attempt an AGI + Sneak test in shadows or darkness, the first additional d20 you buy is free. The normal maximum of 5d20 still applies.

\n

Requirements: PER, AGI 6

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -19,7 +17,7 @@ "requirementsEx": { "attributes": { "agi": { - "value": 0 + "value": 6 }, "cha": { "value": 0 @@ -34,7 +32,7 @@ "value": 0 }, "per": { - "value": 0 + "value": 5 }, "str": { "value": 0 @@ -43,6 +41,8 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/giant_insects_invade___fMq7BDUKGUIZDOEY.json b/data/packs/perks.db/giant_insects_invade___fMq7BDUKGUIZDOEY.json index 4eafd849..edc1b52b 100644 --- a/data/packs/perks.db/giant_insects_invade___fMq7BDUKGUIZDOEY.json +++ b/data/packs/perks.db/giant_insects_invade___fMq7BDUKGUIZDOEY.json @@ -11,8 +11,6 @@ "description": "

Astoundingly Awesome Tales

\n

Perk: Depending on the individual issue found, you receive a different perk, granting bonus damage or bonus damage resistance against a single foe or
type of attack.

\n
    \n
  • +2 to Radiation damage resistance
  • \n
\n

 

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -44,6 +42,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.1bOiFImI3fM9CaIJ" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/giant_super_weapons___JGsQpE2E1zseUEdM.json b/data/packs/perks.db/giant_super_weapons___JGsQpE2E1zseUEdM.json index f22f10b8..58bbd1f9 100644 --- a/data/packs/perks.db/giant_super_weapons___JGsQpE2E1zseUEdM.json +++ b/data/packs/perks.db/giant_super_weapons___JGsQpE2E1zseUEdM.json @@ -10,8 +10,6 @@ "description": "

Once, when you fire a Gatling weapon, you consume ammunition at 8x the rate, rather than 10x the rate

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.CndyqCypQg50fKrr" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/grim_reaper_s_sprint__YDRoA6dGjWXy06hf.json b/data/packs/perks.db/grim_reaper_s_sprint__YDRoA6dGjWXy06hf.json index 13a08ea5..13fa526e 100644 --- a/data/packs/perks.db/grim_reaper_s_sprint__YDRoA6dGjWXy06hf.json +++ b/data/packs/perks.db/grim_reaper_s_sprint__YDRoA6dGjWXy06hf.json @@ -10,8 +10,6 @@ "description": "

When you make an attack which kills one or more enemies, roll 1DCD. If you roll an Effect, add 2 AP to the group’s pool.

\n

Requirements: LCK 8

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -31,7 +29,7 @@ "value": 0 }, "luc": { - "value": 0 + "value": 8 }, "per": { "value": 0 @@ -43,6 +41,8 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/grognak_the_barbarian__wLlEWSMEFaVWTQ5E.json b/data/packs/perks.db/grognak_the_barbarian__wLlEWSMEFaVWTQ5E.json index 67b1e749..7729d2c7 100644 --- a/data/packs/perks.db/grognak_the_barbarian__wLlEWSMEFaVWTQ5E.json +++ b/data/packs/perks.db/grognak_the_barbarian__wLlEWSMEFaVWTQ5E.json @@ -2,6 +2,7 @@ "_id": "wLlEWSMEFaVWTQ5E", "_key": "!folders!wLlEWSMEFaVWTQ5E", "color": "#293f5f", + "description": "", "folder": "zAYtcZkRVsN58RGG", "name": "Grognak the Barbarian", "sorting": "a", diff --git a/data/packs/perks.db/guide_to_hunting_commies___BoK3Po9WKYHAv4Y9.json b/data/packs/perks.db/guide_to_hunting_commies___BoK3Po9WKYHAv4Y9.json index 44369542..75185b93 100644 --- a/data/packs/perks.db/guide_to_hunting_commies___BoK3Po9WKYHAv4Y9.json +++ b/data/packs/perks.db/guide_to_hunting_commies___BoK3Po9WKYHAv4Y9.json @@ -10,8 +10,6 @@ "description": "

One attack against an enemy with a lower level than you inflicts +2CD damage

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.116TjNgfBwkNOSF6" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/gun_fu__Nei43KlUxbHLw6MI.json b/data/packs/perks.db/gun_fu__Nei43KlUxbHLw6MI.json index 318aab45..32648ebb 100644 --- a/data/packs/perks.db/gun_fu__Nei43KlUxbHLw6MI.json +++ b/data/packs/perks.db/gun_fu__Nei43KlUxbHLw6MI.json @@ -10,8 +10,6 @@ "description": "

When you succeed at a ranged attack, you may spend 1 AP and 1 ammo to hit a second target within Close range of your initial target. The second target takes the same damage as the initial target. At rank 2, you may spend 2 AP and 2 ammo to hit two additional targets. At rank 3, you may spend 3 AP and 3 ammo to hit three additional targets. Each time you take this perk, the level requirement increases by 5.

\n

Requirements: AGI 10, Level 1+

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 3, "value": 0 }, @@ -19,7 +17,7 @@ "requirementsEx": { "attributes": { "agi": { - "value": 0 + "value": 10 }, "cha": { "value": 0 @@ -42,7 +40,9 @@ }, "isCompanion": false, "level": 1, - "levelIncrease": 0, + "levelIncrease": 5, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/gun_nut__Ba5yPRdNAvjM5StI.json b/data/packs/perks.db/gun_nut__Ba5yPRdNAvjM5StI.json index b8d77994..c2716551 100644 --- a/data/packs/perks.db/gun_nut__Ba5yPRdNAvjM5StI.json +++ b/data/packs/perks.db/gun_nut__Ba5yPRdNAvjM5StI.json @@ -10,8 +10,6 @@ "description": "

You can modify small guns and heavy weapons with weapon mods. Each rank in this perk unlocks an additional rank of weapon mods: rank 1 unlocks rank 1 mods, rank 2 unlocks rank 2 mods, etc. Each time you take this perk, the level requirement increases by 4.

\n

Requirements: INT 6, Level 2+

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 4, "value": 0 }, @@ -28,7 +26,7 @@ "value": 0 }, "int": { - "value": 0 + "value": 6 }, "luc": { "value": 0 @@ -41,8 +39,10 @@ } }, "isCompanion": false, - "level": 1, - "levelIncrease": 0, + "level": 2, + "levelIncrease": 4, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/guns_and_bullets__hleTGvh4Mq1pZALV.json b/data/packs/perks.db/guns_and_bullets__hleTGvh4Mq1pZALV.json index c0196fb9..05bda29d 100644 --- a/data/packs/perks.db/guns_and_bullets__hleTGvh4Mq1pZALV.json +++ b/data/packs/perks.db/guns_and_bullets__hleTGvh4Mq1pZALV.json @@ -2,6 +2,7 @@ "_id": "hleTGvh4Mq1pZALV", "_key": "!folders!hleTGvh4Mq1pZALV", "color": "#293f5f", + "description": "", "folder": "zAYtcZkRVsN58RGG", "name": "Guns and Bullets", "sorting": "a", diff --git a/data/packs/perks.db/gunslinger__ugnoJLCjVbVsAqOj.json b/data/packs/perks.db/gunslinger__ugnoJLCjVbVsAqOj.json index 00f3cbaa..d53f529f 100644 --- a/data/packs/perks.db/gunslinger__ugnoJLCjVbVsAqOj.json +++ b/data/packs/perks.db/gunslinger__ugnoJLCjVbVsAqOj.json @@ -10,8 +10,6 @@ "description": "

When you make an attack with a onehanded ranged weapon with a Fire Rate of 2 or lower, you increase the weapon’s damage by +1CD per rank. In addition, you may re-roll the hit location die. Each time you take this perk, the level requirement increases by 4.

\n

Requirements: AGI 7, Level 2+

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 2, "value": 0 }, @@ -19,7 +17,7 @@ "requirementsEx": { "attributes": { "agi": { - "value": 0 + "value": 7 }, "cha": { "value": 0 @@ -41,8 +39,10 @@ } }, "isCompanion": false, - "level": 1, - "levelIncrease": 0, + "level": 2, + "levelIncrease": 4, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/hacker__NMrJsMFjSLAYtHAU.json b/data/packs/perks.db/hacker__NMrJsMFjSLAYtHAU.json index 9b8d3177..b202d9c8 100644 --- a/data/packs/perks.db/hacker__NMrJsMFjSLAYtHAU.json +++ b/data/packs/perks.db/hacker__NMrJsMFjSLAYtHAU.json @@ -10,8 +10,6 @@ "description": "

The difficulty of skill tests to hack computers is decreased by 1, to a minimum of 0.

\n

Requirements: INT 8

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -28,7 +26,7 @@ "value": 0 }, "int": { - "value": 0 + "value": 8 }, "luc": { "value": 0 @@ -43,6 +41,8 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/hardy_as_a_sasquatch__5FSxhtSwphd72BS1.json b/data/packs/perks.db/hardy_as_a_sasquatch__5FSxhtSwphd72BS1.json index a903a43b..04072c20 100644 --- a/data/packs/perks.db/hardy_as_a_sasquatch__5FSxhtSwphd72BS1.json +++ b/data/packs/perks.db/hardy_as_a_sasquatch__5FSxhtSwphd72BS1.json @@ -10,8 +10,6 @@ "description": "

Backwoodsman

\n

Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from once. If you later learn the perk, you may use that benefit once per scene.

\n
    \n
  • When scavenging from plants, gain twice as much
  • \n
", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.mbkQ1d1IQjlSE6HG" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/healer__LzDGf5TGlzcOBgFd.json b/data/packs/perks.db/healer__LzDGf5TGlzcOBgFd.json index e3529e7a..db780fbd 100644 --- a/data/packs/perks.db/healer__LzDGf5TGlzcOBgFd.json +++ b/data/packs/perks.db/healer__LzDGf5TGlzcOBgFd.json @@ -10,8 +10,6 @@ "description": "

When you heal a patient’s HP using the First Aid action, increase the amount of HP healed by +1 per rank in this perk. Each time you take this perk, the level requirement increases by 5.

\n

Requirements: INT 7, Level 1+

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 3, "value": 0 }, @@ -28,7 +26,7 @@ "value": 0 }, "int": { - "value": 0 + "value": 7 }, "luc": { "value": 0 @@ -42,7 +40,9 @@ }, "isCompanion": false, "level": 1, - "levelIncrease": 0, + "levelIncrease": 5, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/heave_ho___FLW7Fx5HVaIxuekh.json b/data/packs/perks.db/heave_ho___FLW7Fx5HVaIxuekh.json index f170fb0f..f32aab20 100644 --- a/data/packs/perks.db/heave_ho___FLW7Fx5HVaIxuekh.json +++ b/data/packs/perks.db/heave_ho___FLW7Fx5HVaIxuekh.json @@ -10,8 +10,6 @@ "description": "

When you make a thrown weapon attack, you may spend 1 AP to increase the Range of the weapon by one step—from Close to Medium, or from Medium to Long.

\n

Requirements: STR 8

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -37,12 +35,14 @@ "value": 0 }, "str": { - "value": 0 + "value": 8 } }, "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/homesteading_horror__6XStNgfUJG92au27.json b/data/packs/perks.db/homesteading_horror__6XStNgfUJG92au27.json index 47f61d6a..10c76e40 100644 --- a/data/packs/perks.db/homesteading_horror__6XStNgfUJG92au27.json +++ b/data/packs/perks.db/homesteading_horror__6XStNgfUJG92au27.json @@ -10,8 +10,6 @@ "description": "

Backwoodsman

\n

Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from once. If you later learn the perk, you may use that benefit once per scene.

\n
    \n
  • Reduce the difficulty of crafting a weapon by 1 (min. of 0)
  • \n
", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,7 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": "", "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/hunter__zB82J3WJ7ld01RYR.json b/data/packs/perks.db/hunter__zB82J3WJ7ld01RYR.json index 51271242..95c66e32 100644 --- a/data/packs/perks.db/hunter__zB82J3WJ7ld01RYR.json +++ b/data/packs/perks.db/hunter__zB82J3WJ7ld01RYR.json @@ -10,8 +10,6 @@ "description": "

When you make an attack against an NPC with one of the Mammal, Lizard, or Insect keywords and the Mutated keyword, your attack gains the Vicious damage effect, if it did not already have that effect.

\n

Requirements: END 6

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -25,7 +23,7 @@ "value": 0 }, "end": { - "value": 0 + "value": 6 }, "int": { "value": 0 @@ -43,6 +41,8 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/hunting_in_the_wastes__p8cH2qolrlrnLKIt.json b/data/packs/perks.db/hunting_in_the_wastes__p8cH2qolrlrnLKIt.json index d631f099..532b3216 100644 --- a/data/packs/perks.db/hunting_in_the_wastes__p8cH2qolrlrnLKIt.json +++ b/data/packs/perks.db/hunting_in_the_wastes__p8cH2qolrlrnLKIt.json @@ -10,8 +10,6 @@ "description": "

When you butcher an animal you’ve killed, and the amount of meat found can be increased by spending AP, you gain 1 bonus AP for that purpose (this AP is lost if not used)

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.rzLGWCVR5aHjEyFy" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/i_married_a_robot__xfBuEJQHYAmds5XG.json b/data/packs/perks.db/i_married_a_robot__xfBuEJQHYAmds5XG.json index 9e8ec960..1d9fdfd5 100644 --- a/data/packs/perks.db/i_married_a_robot__xfBuEJQHYAmds5XG.json +++ b/data/packs/perks.db/i_married_a_robot__xfBuEJQHYAmds5XG.json @@ -10,8 +10,6 @@ "description": "

+2 to all damage resistances against Robots for one scene

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.usR2XUJr38Er8QCh" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/in_the_bosom_of_the_corsair_queen__bzXcVbZZtHhGCcOs.json b/data/packs/perks.db/in_the_bosom_of_the_corsair_queen__bzXcVbZZtHhGCcOs.json index bf5c347d..c7a54068 100644 --- a/data/packs/perks.db/in_the_bosom_of_the_corsair_queen__bzXcVbZZtHhGCcOs.json +++ b/data/packs/perks.db/in_the_bosom_of_the_corsair_queen__bzXcVbZZtHhGCcOs.json @@ -10,8 +10,6 @@ "description": "

One successful melee attack you make automatically inflicts a Critical Hit

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.9UgvihjW0x2I5vn9" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/infiltrator__SihEoKZZ7VgRmxgK.json b/data/packs/perks.db/infiltrator__SihEoKZZ7VgRmxgK.json index 6731e143..7cd55e33 100644 --- a/data/packs/perks.db/infiltrator__SihEoKZZ7VgRmxgK.json +++ b/data/packs/perks.db/infiltrator__SihEoKZZ7VgRmxgK.json @@ -10,8 +10,6 @@ "description": "

When you attempt a Lockpick skill test to unlock a door or container, you may re-roll 1d20.

\n

Requirements: PER 8

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -34,7 +32,7 @@ "value": 0 }, "per": { - "value": 0 + "value": 8 }, "str": { "value": 0 @@ -43,6 +41,8 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/insect_repellent_special__qxfqtIIZynyM2qIj.json b/data/packs/perks.db/insect_repellent_special__qxfqtIIZynyM2qIj.json index dab9663b..ddf1561d 100644 --- a/data/packs/perks.db/insect_repellent_special__qxfqtIIZynyM2qIj.json +++ b/data/packs/perks.db/insect_repellent_special__qxfqtIIZynyM2qIj.json @@ -10,8 +10,6 @@ "description": "

Increase all damage resistances by +2 vs an attack from an Insect

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.NyoiFuBl8FN4iRiZ" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/inspirational__YrVruOKk8Wy2YOc9.json b/data/packs/perks.db/inspirational__YrVruOKk8Wy2YOc9.json index 5e73d35c..43ea7e21 100644 --- a/data/packs/perks.db/inspirational__YrVruOKk8Wy2YOc9.json +++ b/data/packs/perks.db/inspirational__YrVruOKk8Wy2YOc9.json @@ -10,8 +10,6 @@ "description": "

Because you lead by example, the maximum number of AP the group may save is increased by 1.

\n

Requirements: CHA 8

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -22,7 +20,7 @@ "value": 0 }, "cha": { - "value": 0 + "value": 8 }, "end": { "value": 0 @@ -43,6 +41,8 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/intense_training__P3SMmJulZT5OyArI.json b/data/packs/perks.db/intense_training__P3SMmJulZT5OyArI.json index f8e07e36..19262296 100644 --- a/data/packs/perks.db/intense_training__P3SMmJulZT5OyArI.json +++ b/data/packs/perks.db/intense_training__P3SMmJulZT5OyArI.json @@ -10,8 +10,6 @@ "description": "

Increase any one S.P.E.C.I.A.L attribute by 1 rank. As usual, your S.P.E.C.I.A.L attributes cannot be increased beyond 10 using this method. Each time you take this perk, the level requirement increases by 2.

\n

Requirements: Level 2+

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 10, "value": 0 }, @@ -41,8 +39,10 @@ } }, "isCompanion": false, - "level": 1, - "levelIncrease": 0, + "level": 2, + "levelIncrease": 2, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/iron_fist__mU5YvUEtBshgRPFD.json b/data/packs/perks.db/iron_fist__mU5YvUEtBshgRPFD.json index af09fb01..31ce19bc 100644 --- a/data/packs/perks.db/iron_fist__mU5YvUEtBshgRPFD.json +++ b/data/packs/perks.db/iron_fist__mU5YvUEtBshgRPFD.json @@ -10,8 +10,6 @@ "description": "

At rank 1, your unarmed attacks inflict +1DCD damage. At rank 2, your unarmed attacks also gain the Vicious damage effect. Each time you take this perk, the level requirement increases by 5.

\n

Requirements: STR 6, Level 1+

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 2, "value": 0 }, @@ -37,12 +35,14 @@ "value": 0 }, "str": { - "value": 0 + "value": 6 } }, "isCompanion": false, "level": 1, - "levelIncrease": 0, + "levelIncrease": 5, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/jungle_of_the_bat_babies__FgiFIu2LmrckPy5Y.json b/data/packs/perks.db/jungle_of_the_bat_babies__FgiFIu2LmrckPy5Y.json index 90594b46..b4cdd4f8 100644 --- a/data/packs/perks.db/jungle_of_the_bat_babies__FgiFIu2LmrckPy5Y.json +++ b/data/packs/perks.db/jungle_of_the_bat_babies__FgiFIu2LmrckPy5Y.json @@ -10,8 +10,6 @@ "description": "

When you suffer Poison damage, gain +3 Poison damage resistance

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.V8SOn4RCMzgkx4u0" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/junktown_jerky_vendor__4uNzMc2WNqMYZEuW.json b/data/packs/perks.db/junktown_jerky_vendor__4uNzMc2WNqMYZEuW.json index 22b9df54..c55534c5 100644 --- a/data/packs/perks.db/junktown_jerky_vendor__4uNzMc2WNqMYZEuW.json +++ b/data/packs/perks.db/junktown_jerky_vendor__4uNzMc2WNqMYZEuW.json @@ -10,8 +10,6 @@ "description": "

The difficulty of any CHA + Barter test you attempt to buy or sell goods is reduced by 1, to a minimum of 0.

\n

Requirements: CHA 8

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -22,7 +20,7 @@ "value": 0 }, "cha": { - "value": 0 + "value": 8 }, "end": { "value": 0 @@ -43,6 +41,8 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/jury_rigging__trdF2qUBRHrj3YNW.json b/data/packs/perks.db/jury_rigging__trdF2qUBRHrj3YNW.json index cdd32eb6..2bf3584d 100644 --- a/data/packs/perks.db/jury_rigging__trdF2qUBRHrj3YNW.json +++ b/data/packs/perks.db/jury_rigging__trdF2qUBRHrj3YNW.json @@ -10,8 +10,6 @@ "description": "

You can repair an item without needing to expend any components. However, the repair is temporary, and the item will break again on the next complication you suffer while using it. The complication range of all skill tests to use the item increases by 1, to the roll of a 19–20.

\n

Requirements: None

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,8 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/laser_commander__VtCwIMtash7XcwxP.json b/data/packs/perks.db/laser_commander__VtCwIMtash7XcwxP.json index f9198058..4331a109 100644 --- a/data/packs/perks.db/laser_commander__VtCwIMtash7XcwxP.json +++ b/data/packs/perks.db/laser_commander__VtCwIMtash7XcwxP.json @@ -10,8 +10,6 @@ "description": "

When you make an attack with a ranged energy weapon, the damage is increased by +1DDCD per rank in this perk. Each time you take this perk, the level requirement increases by 4.

\n

Requirements: PER 8, Level 2+

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 2, "value": 0 }, @@ -34,15 +32,17 @@ "value": 0 }, "per": { - "value": 0 + "value": 8 }, "str": { "value": 0 } }, "isCompanion": false, - "level": 1, - "levelIncrease": 0, + "level": 2, + "levelIncrease": 4, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/lasers___hunting__acceptable_overkill__nRkIZJRQqkTsqQV7.json b/data/packs/perks.db/lasers___hunting__acceptable_overkill__nRkIZJRQqkTsqQV7.json index ababba6b..1353253e 100644 --- a/data/packs/perks.db/lasers___hunting__acceptable_overkill__nRkIZJRQqkTsqQV7.json +++ b/data/packs/perks.db/lasers___hunting__acceptable_overkill__nRkIZJRQqkTsqQV7.json @@ -10,8 +10,6 @@ "description": "

One attack with a Laser weapon gains the Vicious damage effect if it didn’t already have it

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.qJ0xswPVJhHeBwLT" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/lead_belly__wE5dyJKCl7gysWci.json b/data/packs/perks.db/lead_belly__wE5dyJKCl7gysWci.json index f1005b8d..946c0bc2 100644 --- a/data/packs/perks.db/lead_belly__wE5dyJKCl7gysWci.json +++ b/data/packs/perks.db/lead_belly__wE5dyJKCl7gysWci.json @@ -10,8 +10,6 @@ "description": "

At rank 1, you may re-roll the CD to determine if you suffer radiation damage from irradiated food or drink. At rank 2, you are immune to radiation damage from consuming irradiated food or drink. Each time you take this perk, the level requirement increases by 4.

\n

Requirements: END 6, Level 1+

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 2, "value": 0 }, @@ -25,7 +23,7 @@ "value": 0 }, "end": { - "value": 0 + "value": 6 }, "int": { "value": 0 @@ -42,7 +40,9 @@ }, "isCompanion": false, "level": 1, - "levelIncrease": 0, + "levelIncrease": 4, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/life_giver__w1Vn3NXOGw30Hi13.json b/data/packs/perks.db/life_giver__w1Vn3NXOGw30Hi13.json index 5ab2546f..99044d50 100644 --- a/data/packs/perks.db/life_giver__w1Vn3NXOGw30Hi13.json +++ b/data/packs/perks.db/life_giver__w1Vn3NXOGw30Hi13.json @@ -10,8 +10,6 @@ "description": "

Increase your maximum health points by your Endurance rank. Each time you take this perk, the level requirement increases by 5.

\n

Requirements: Level 5+

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 5, "value": 0 }, @@ -41,8 +39,10 @@ } }, "isCompanion": false, - "level": 1, - "levelIncrease": 0, + "level": 5, + "levelIncrease": 5, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/life_long_best_friends___SKyP3uQ4CQCcdKZs.json b/data/packs/perks.db/life_long_best_friends___SKyP3uQ4CQCcdKZs.json index aec2f6f4..df5e82ab 100644 --- a/data/packs/perks.db/life_long_best_friends___SKyP3uQ4CQCcdKZs.json +++ b/data/packs/perks.db/life_long_best_friends___SKyP3uQ4CQCcdKZs.json @@ -10,8 +10,6 @@ "description": "

+1 Maximum Health Points to all party members for one scene

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.uizbEBbI5Jl1tjeI" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/light_step__iMnBN75TTp1DuKzk.json b/data/packs/perks.db/light_step__iMnBN75TTp1DuKzk.json index 78fd8505..98233a59 100644 --- a/data/packs/perks.db/light_step__iMnBN75TTp1DuKzk.json +++ b/data/packs/perks.db/light_step__iMnBN75TTp1DuKzk.json @@ -10,8 +10,6 @@ "description": "

When you roll to generate any complications on an Agility-based skill test, you may ignore one complication for every 1 AP spent. In addition, you may re-roll 1d20 on any AGI + Athletics test to avoid traps triggered by pressure plates or similar mechanisms.

\n

Requirements: None

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,8 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/little_guns_for_little_ladies__YUHxXpiMFWmEtbXB.json b/data/packs/perks.db/little_guns_for_little_ladies__YUHxXpiMFWmEtbXB.json index 201de0a6..3005126b 100644 --- a/data/packs/perks.db/little_guns_for_little_ladies__YUHxXpiMFWmEtbXB.json +++ b/data/packs/perks.db/little_guns_for_little_ladies__YUHxXpiMFWmEtbXB.json @@ -10,8 +10,6 @@ "description": "

One attack with a Small Guns weapon gains the Vicious damage effect if it didn’t have it already

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.UvPtfBpiOmAmiKg2" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/live___love__254i0e4Wc0Rhv6gc.json b/data/packs/perks.db/live___love__254i0e4Wc0Rhv6gc.json index 6ae7e743..af533f7c 100644 --- a/data/packs/perks.db/live___love__254i0e4Wc0Rhv6gc.json +++ b/data/packs/perks.db/live___love__254i0e4Wc0Rhv6gc.json @@ -2,6 +2,7 @@ "_id": "254i0e4Wc0Rhv6gc", "_key": "!folders!254i0e4Wc0Rhv6gc", "color": "#293f5f", + "description": "", "folder": "zAYtcZkRVsN58RGG", "name": "Live & Love", "sorting": "a", diff --git a/data/packs/perks.db/locksmith_certification_special___pass_with_flying_colors__xRA5ktVoyWDHRy8N.json b/data/packs/perks.db/locksmith_certification_special___pass_with_flying_colors__xRA5ktVoyWDHRy8N.json index 62020352..7d7fb2de 100644 --- a/data/packs/perks.db/locksmith_certification_special___pass_with_flying_colors__xRA5ktVoyWDHRy8N.json +++ b/data/packs/perks.db/locksmith_certification_special___pass_with_flying_colors__xRA5ktVoyWDHRy8N.json @@ -10,8 +10,6 @@ "description": "

When you suffer one or more complications on a Lockpicking test, spend 1 Luck point to ignore those complications

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.GUbEJnFDx9p0CvbD" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/lost_in_the_snows_of_lust__pIGqn3CdOhsyQyhx.json b/data/packs/perks.db/lost_in_the_snows_of_lust__pIGqn3CdOhsyQyhx.json index dab96e99..7a128ccf 100644 --- a/data/packs/perks.db/lost_in_the_snows_of_lust__pIGqn3CdOhsyQyhx.json +++ b/data/packs/perks.db/lost_in_the_snows_of_lust__pIGqn3CdOhsyQyhx.json @@ -10,8 +10,6 @@ "description": "

Gain +2 Physical damage resistance against one attack

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.S71PQOPJq2vV0pH8" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/massachusetts_surgical_journal__scI8HRzH0QjDb1bh.json b/data/packs/perks.db/massachusetts_surgical_journal__scI8HRzH0QjDb1bh.json index e89fb714..bda8d65c 100644 --- a/data/packs/perks.db/massachusetts_surgical_journal__scI8HRzH0QjDb1bh.json +++ b/data/packs/perks.db/massachusetts_surgical_journal__scI8HRzH0QjDb1bh.json @@ -10,8 +10,6 @@ "description": "

Once, when you provide medical attention to another character and assist their END + Survival test to heal Injuries, you may treat your assistance die as if it had rolled a 1. 

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.FQDIJeABc0a1g7Nt" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/master_thief__nOpsl2puqWzQJT4t.json b/data/packs/perks.db/master_thief__nOpsl2puqWzQJT4t.json index 035bd2ee..e1f19cc2 100644 --- a/data/packs/perks.db/master_thief__nOpsl2puqWzQJT4t.json +++ b/data/packs/perks.db/master_thief__nOpsl2puqWzQJT4t.json @@ -10,8 +10,6 @@ "description": "

When you are attempting to pick a lock or pickpocket somebody, the difficulty of the opponent’s skill test to detect you increases by +1.

\n

Requirements: PER 8, AGI 9

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -19,7 +17,7 @@ "requirementsEx": { "attributes": { "agi": { - "value": 0 + "value": 9 }, "cha": { "value": 0 @@ -34,7 +32,7 @@ "value": 0 }, "per": { - "value": 0 + "value": 8 }, "str": { "value": 0 @@ -43,6 +41,8 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/medic__fMU0zfQYyhkwZ6Ck.json b/data/packs/perks.db/medic__fMU0zfQYyhkwZ6Ck.json index 3c91b6dd..9eac9784 100644 --- a/data/packs/perks.db/medic__fMU0zfQYyhkwZ6Ck.json +++ b/data/packs/perks.db/medic__fMU0zfQYyhkwZ6Ck.json @@ -10,8 +10,6 @@ "description": "

When you use the First Aid action to try to treat an injury, you can re-roll 1d20.

\n

Requirements: INT 8

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -28,7 +26,7 @@ "value": 0 }, "int": { - "value": 0 + "value": 8 }, "luc": { "value": 0 @@ -43,6 +41,8 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/meeting_people__tKQ4oQiQxWoM10p6.json b/data/packs/perks.db/meeting_people__tKQ4oQiQxWoM10p6.json index 063ed59b..dcaece82 100644 --- a/data/packs/perks.db/meeting_people__tKQ4oQiQxWoM10p6.json +++ b/data/packs/perks.db/meeting_people__tKQ4oQiQxWoM10p6.json @@ -10,8 +10,6 @@ "description": "

Once, when you roll one or more complications on a Speech test, you may ignore those complications.

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.8nJBGtcrUsO2hUDG" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/meltdown__SFhtHQk4lztiJ8gw.json b/data/packs/perks.db/meltdown__SFhtHQk4lztiJ8gw.json index ae4ece63..02853dbb 100644 --- a/data/packs/perks.db/meltdown__SFhtHQk4lztiJ8gw.json +++ b/data/packs/perks.db/meltdown__SFhtHQk4lztiJ8gw.json @@ -10,8 +10,6 @@ "description": "

When you kill an enemy with an energy weapon, they explode. Roll a number of DDCD equal to half the weapon’s damage rating (round down). For each Effect rolled, one creature within Close range of the exploding enemy (starting with the closest) suffers energy damage equal to the total rolled on the DDCD.

\n

Requirements: PER 10

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -34,7 +32,7 @@ "value": 0 }, "per": { - "value": 0 + "value": 10 }, "str": { "value": 0 @@ -43,6 +41,8 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/mister_sandman__ycaluMjkY5xApFFl.json b/data/packs/perks.db/mister_sandman__ycaluMjkY5xApFFl.json index e4653753..78ec6fe1 100644 --- a/data/packs/perks.db/mister_sandman__ycaluMjkY5xApFFl.json +++ b/data/packs/perks.db/mister_sandman__ycaluMjkY5xApFFl.json @@ -10,8 +10,6 @@ "description": "

When you make a sneak attack with a silenced or suppressed weapon, the damage is increased by +2CD. You cannot gain this benefit while in Power Armor.

\n

Requirements: AGI 9

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -19,7 +17,7 @@ "requirementsEx": { "attributes": { "agi": { - "value": 0 + "value": 9 }, "cha": { "value": 0 @@ -43,6 +41,8 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/moving_target__URnrv6ebs1Oqso2m.json b/data/packs/perks.db/moving_target__URnrv6ebs1Oqso2m.json index 60796e6d..bcaaec54 100644 --- a/data/packs/perks.db/moving_target__URnrv6ebs1Oqso2m.json +++ b/data/packs/perks.db/moving_target__URnrv6ebs1Oqso2m.json @@ -10,8 +10,6 @@ "description": "

When you take the Sprint action, your Defense increases by +1 until the start of your next turn.

\n

Requirements: AGI 6

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -19,7 +17,7 @@ "requirementsEx": { "attributes": { "agi": { - "value": 0 + "value": 6 }, "cha": { "value": 0 @@ -43,6 +41,8 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/mysteries_of_the_master_key_exposed___dx2dkCtFBWb5kukV.json b/data/packs/perks.db/mysteries_of_the_master_key_exposed___dx2dkCtFBWb5kukV.json index a6a6d121..043280ee 100644 --- a/data/packs/perks.db/mysteries_of_the_master_key_exposed___dx2dkCtFBWb5kukV.json +++ b/data/packs/perks.db/mysteries_of_the_master_key_exposed___dx2dkCtFBWb5kukV.json @@ -10,8 +10,6 @@ "description": "

You may re-roll 1d20 on a single Lockpicking test

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.YVmBhcEYI0eLLDM8" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/mysterious_stranger__EYZgPc9OM7qsPpT1.json b/data/packs/perks.db/mysterious_stranger__EYZgPc9OM7qsPpT1.json index 21e7ee79..dc51b98f 100644 --- a/data/packs/perks.db/mysterious_stranger__EYZgPc9OM7qsPpT1.json +++ b/data/packs/perks.db/mysterious_stranger__EYZgPc9OM7qsPpT1.json @@ -10,8 +10,6 @@ "description": "

From time to time, a Mysterious Stranger comes to your aid, with lethal results. At the start of a combat encounter, you may spend 1 Luck point. If you do so, then at any point during the scene, the GM may have the Mysterious Stranger appear, make a single ranged attack against an enemy you attacked, or who just attacked you, and then vanish. If you spend a Luck point and the Mysterious Stranger does not appear, the GM must refund the Luck point you spent.

\n

The stranger has an AGI of 10, a Small Guns skill of 6, and counts Small Guns as a Tag skill. They always roll 3d20 for attacks, rather than 2d20, and their attack—using a custom .44 Magnum revolver—inflicts 8CD Piercing 1, Vicious physical damage. They always appear within their weapon’s ideal range. Any attempt to find where the Stranger went after their attack fails.

\n

Requirements: LCK 7

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -31,7 +29,7 @@ "value": 0 }, "luc": { - "value": 0 + "value": 7 }, "per": { "value": 0 @@ -43,6 +41,8 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/nerd_rage___gbPgHoavxEEaYC4j.json b/data/packs/perks.db/nerd_rage___gbPgHoavxEEaYC4j.json index a8908083..cc5cbb75 100644 --- a/data/packs/perks.db/nerd_rage___gbPgHoavxEEaYC4j.json +++ b/data/packs/perks.db/nerd_rage___gbPgHoavxEEaYC4j.json @@ -10,8 +10,6 @@ "description": "

While your health is reduced to less than ¼ of your maximum, you add +1 to your physical DR, +1 to your energy DR, and +1 CD to the damage of all your attacks.

\n

At rank 2, this increases to +2 DR, and +2 CD damage. At rank 3, this increases to +3 DR and +3 CD damage.

\n

Each time you take this perk, the level requirement increases by 5.

\n

Requirements: INT 8, Level 2+

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 3, "value": 0 }, @@ -28,7 +26,7 @@ "value": 0 }, "int": { - "value": 0 + "value": 8 }, "luc": { "value": 0 @@ -41,8 +39,10 @@ } }, "isCompanion": false, - "level": 1, - "levelIncrease": 0, + "level": 2, + "levelIncrease": 5, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/night_person__jqGwYM88awxTPn46.json b/data/packs/perks.db/night_person__jqGwYM88awxTPn46.json index 02c04e7e..d155116c 100644 --- a/data/packs/perks.db/night_person__jqGwYM88awxTPn46.json +++ b/data/packs/perks.db/night_person__jqGwYM88awxTPn46.json @@ -10,8 +10,6 @@ "description": "

You reduce any difficulty increases due to darkness by 1.

\n

Requirements: PER 7

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -34,7 +32,7 @@ "value": 0 }, "per": { - "value": 0 + "value": 7 }, "str": { "value": 0 @@ -43,6 +41,8 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/nightmare_in_the_garden__C2pRfk15zpFV3sgG.json b/data/packs/perks.db/nightmare_in_the_garden__C2pRfk15zpFV3sgG.json index e4682eb6..6c39962d 100644 --- a/data/packs/perks.db/nightmare_in_the_garden__C2pRfk15zpFV3sgG.json +++ b/data/packs/perks.db/nightmare_in_the_garden__C2pRfk15zpFV3sgG.json @@ -10,8 +10,6 @@ "description": "

Backwoodsman

\n

Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from once. If you later learn the perk, you may use that benefit once per scene.

\n
    \n
  • \n

    Heal +2HP when you consume an Alcoholic drink

    \n
  • \n
", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.9hZXkRhoJIX47mWS" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/ninja__82n08gxPWsoaLlvK.json b/data/packs/perks.db/ninja__82n08gxPWsoaLlvK.json index dabf1662..d4451378 100644 --- a/data/packs/perks.db/ninja__82n08gxPWsoaLlvK.json +++ b/data/packs/perks.db/ninja__82n08gxPWsoaLlvK.json @@ -10,8 +10,6 @@ "description": "

When you make a sneak attack with a melee weapon or unarmed attack, the damage is increased by +2 CD. You cannot gain this benefit while in Power Armor.

\n

Requirements: AGI 8

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -19,7 +17,7 @@ "requirementsEx": { "attributes": { "agi": { - "value": 0 + "value": 8 }, "cha": { "value": 0 @@ -43,6 +41,8 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/nuclear_physicist__zlPvWlAVWezHiFXX.json b/data/packs/perks.db/nuclear_physicist__zlPvWlAVWezHiFXX.json index f567d6c9..25785d79 100644 --- a/data/packs/perks.db/nuclear_physicist__zlPvWlAVWezHiFXX.json +++ b/data/packs/perks.db/nuclear_physicist__zlPvWlAVWezHiFXX.json @@ -10,8 +10,6 @@ "description": "

Whenever you use a weapon that inflicts radiation damage, or has the Radioactive damage effect, each Effect you roll inflicts one additional point of radiation damage.

\n

In addition, fusion cores you use have 3 additional charges.

\n

Requirements: INT 9

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -28,7 +26,7 @@ "value": 0 }, "int": { - "value": 0 + "value": 9 }, "luc": { "value": 0 @@ -43,6 +41,8 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/nuke_the_man___H27K9ike953ZIyRl.json b/data/packs/perks.db/nuke_the_man___H27K9ike953ZIyRl.json index 121390cc..c2bc973a 100644 --- a/data/packs/perks.db/nuke_the_man___H27K9ike953ZIyRl.json +++ b/data/packs/perks.db/nuke_the_man___H27K9ike953ZIyRl.json @@ -10,8 +10,6 @@ "description": "

+1CD damage to attacks from all party members for one scene

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.xT9LvN0vcacln4pN" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/open_any_lock_in_5_seconds_flat__mrgLpKa5RkDmIWHq.json b/data/packs/perks.db/open_any_lock_in_5_seconds_flat__mrgLpKa5RkDmIWHq.json index f350d990..fe24c595 100644 --- a/data/packs/perks.db/open_any_lock_in_5_seconds_flat__mrgLpKa5RkDmIWHq.json +++ b/data/packs/perks.db/open_any_lock_in_5_seconds_flat__mrgLpKa5RkDmIWHq.json @@ -10,8 +10,6 @@ "description": "

When you successfully pick a lock, you may use the Reduce Time AP option without spending AP

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.M32bIhaLlqXttW9q" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/pain_train__TzAVKNEtdWWgfx4u.json b/data/packs/perks.db/pain_train__TzAVKNEtdWWgfx4u.json index f602856a..edbf1563 100644 --- a/data/packs/perks.db/pain_train__TzAVKNEtdWWgfx4u.json +++ b/data/packs/perks.db/pain_train__TzAVKNEtdWWgfx4u.json @@ -10,8 +10,6 @@ "description": "

You may Charge as a major action if you are wearing Power Armor or are a super mutant. This is a movement action, and you may not Move or Sprint in the same turn. When you take this action, you move into reach of an enemy within Medium range (1 zone) and make a STR + Athletics test with a difficulty of 2. If you succeed, the enemy suffers damage equal to your normal unarmed damage, and is knocked prone.

\n

At rank 2, you add +1DCD and the Stun damage effect to the damage inflicted. At the GM’s discretion, especially large or sturdy creatures cannot be knocked prone by this action. Each time you take this perk, the level requirement increases by 5.

\n

Requirements: STR 9, END 7, Level 1+

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 2, "value": 0 }, @@ -25,7 +23,7 @@ "value": 0 }, "end": { - "value": 0 + "value": 7 }, "int": { "value": 0 @@ -37,12 +35,14 @@ "value": 0 }, "str": { - "value": 0 + "value": 9 } }, "isCompanion": false, "level": 1, - "levelIncrease": 0, + "levelIncrease": 5, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/paralyzing_palm__Epn0E2yMAxTmSOFX.json b/data/packs/perks.db/paralyzing_palm__Epn0E2yMAxTmSOFX.json index 7ca327ac..dc94c49d 100644 --- a/data/packs/perks.db/paralyzing_palm__Epn0E2yMAxTmSOFX.json +++ b/data/packs/perks.db/paralyzing_palm__Epn0E2yMAxTmSOFX.json @@ -10,8 +10,6 @@ "description": "

When you make an unarmed attack, and choose to strike a specific location, your attack gains the Stun damage effect.

\n

Requirements: STR 8

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -37,12 +35,14 @@ "value": 0 }, "str": { - "value": 0 + "value": 8 } }, "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/party_boy___party_girl__iDaMlrcxl6kEm3Ex.json b/data/packs/perks.db/party_boy___party_girl__iDaMlrcxl6kEm3Ex.json index 11b54d8b..6e081e19 100644 --- a/data/packs/perks.db/party_boy___party_girl__iDaMlrcxl6kEm3Ex.json +++ b/data/packs/perks.db/party_boy___party_girl__iDaMlrcxl6kEm3Ex.json @@ -10,8 +10,6 @@ "description": "

You cannot become addicted to alcoholic drinks, and whenever you drink an alcoholic drink, you heal +2 HP.

\n

Requirements: END 6, CHA 7

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -22,10 +20,10 @@ "value": 0 }, "cha": { - "value": 0 + "value": 7 }, "end": { - "value": 0 + "value": 6 }, "int": { "value": 0 @@ -43,6 +41,8 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/pathfinder__RhITTHDy13MufCZy.json b/data/packs/perks.db/pathfinder__RhITTHDy13MufCZy.json index b63877ed..d959a870 100644 --- a/data/packs/perks.db/pathfinder__RhITTHDy13MufCZy.json +++ b/data/packs/perks.db/pathfinder__RhITTHDy13MufCZy.json @@ -10,8 +10,6 @@ "description": "

When travelling over long distances through the wilderness, a successful PER + Survival test (with a difficulty determined by the GM, based on the terrain) reduces the travel time by half.

\n

Requirements: PER 6, END 6

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -25,7 +23,7 @@ "value": 0 }, "end": { - "value": 0 + "value": 6 }, "int": { "value": 0 @@ -34,7 +32,7 @@ "value": 0 }, "per": { - "value": 0 + "value": 6 }, "str": { "value": 0 @@ -43,6 +41,8 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/pharma_farma__E3vqYT7JvmyDeFyU.json b/data/packs/perks.db/pharma_farma__E3vqYT7JvmyDeFyU.json index a894ce39..eb19b1e0 100644 --- a/data/packs/perks.db/pharma_farma__E3vqYT7JvmyDeFyU.json +++ b/data/packs/perks.db/pharma_farma__E3vqYT7JvmyDeFyU.json @@ -10,8 +10,6 @@ "description": "

When you are scavenging a location that contains medicine or chems, you find one additional item, randomly determined, without spending AP.

\n

Requirements: LCK 6

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -31,7 +29,7 @@ "value": 0 }, "luc": { - "value": 0 + "value": 6 }, "per": { "value": 0 @@ -43,6 +41,8 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/pickpocket__e4HPClvz4fA06tUc.json b/data/packs/perks.db/pickpocket__e4HPClvz4fA06tUc.json index d6d86e2e..33ece942 100644 --- a/data/packs/perks.db/pickpocket__e4HPClvz4fA06tUc.json +++ b/data/packs/perks.db/pickpocket__e4HPClvz4fA06tUc.json @@ -10,8 +10,6 @@ "description": "

At rank 1, you can ignore the first complication you roll when you make an AGI + Sneak test to steal an object from someone else’s person or to plant something on them.

\n

At rank 2, you can re-roll 1d20 in your dice pool when attempting to pick someone’s pocket.

\n

At rank 3, you reduce the difficulty of attempts to pick someone’s pocket by 1.

\n

Each time you take this perk, the level requirement increases by 3.

\n

Requirements: PER 8, AGI 8, Level 1+

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 3, "value": 0 }, @@ -19,7 +17,7 @@ "requirementsEx": { "attributes": { "agi": { - "value": 0 + "value": 8 }, "cha": { "value": 0 @@ -34,7 +32,7 @@ "value": 0 }, "per": { - "value": 0 + "value": 8 }, "str": { "value": 0 @@ -42,7 +40,9 @@ }, "isCompanion": false, "level": 1, - "levelIncrease": 0, + "levelIncrease": 3, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/piercing_strike__H6x4BnrUSmI33dwZ.json b/data/packs/perks.db/piercing_strike__H6x4BnrUSmI33dwZ.json index 560cc1fb..f04e5bd9 100644 --- a/data/packs/perks.db/piercing_strike__H6x4BnrUSmI33dwZ.json +++ b/data/packs/perks.db/piercing_strike__H6x4BnrUSmI33dwZ.json @@ -10,8 +10,6 @@ "description": "

Your attacks using unarmed attacks and bladed melee weapons gain the Piercing 1 damage effect, or add +1 to the rating of any Piercing X damage effect they already had.

\n

Requirements: STR 7

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -37,12 +35,14 @@ "value": 0 }, "str": { - "value": 0 + "value": 7 } }, "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/plasma__the_weapon_of_tomorrow__SbayR4I8JCyymq0a.json b/data/packs/perks.db/plasma__the_weapon_of_tomorrow__SbayR4I8JCyymq0a.json index 2ff68c0f..58960ab0 100644 --- a/data/packs/perks.db/plasma__the_weapon_of_tomorrow__SbayR4I8JCyymq0a.json +++ b/data/packs/perks.db/plasma__the_weapon_of_tomorrow__SbayR4I8JCyymq0a.json @@ -10,8 +10,6 @@ "description": "

One attack with a Plasma weapon gains the Vicious damage effect if it didn’t already have it

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.fYy1RCAJMGPRO9WJ" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/programmer_s_digest__xmOWzjBpDXRfPa9Y.json b/data/packs/perks.db/programmer_s_digest__xmOWzjBpDXRfPa9Y.json index 72abf918..1c71b432 100644 --- a/data/packs/perks.db/programmer_s_digest__xmOWzjBpDXRfPa9Y.json +++ b/data/packs/perks.db/programmer_s_digest__xmOWzjBpDXRfPa9Y.json @@ -10,8 +10,6 @@ "description": "

Once, when you fail a Science test to hack into a computer terminal and would be locked out (prevented from trying again), you may choose not to be locked out, allowing you to make another attempt.

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.0QyGlHy565YJcdMI" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/pyromaniac__aNO3ZBQmBGS9A94C.json b/data/packs/perks.db/pyromaniac__aNO3ZBQmBGS9A94C.json index c81a0906..b8f1be39 100644 --- a/data/packs/perks.db/pyromaniac__aNO3ZBQmBGS9A94C.json +++ b/data/packs/perks.db/pyromaniac__aNO3ZBQmBGS9A94C.json @@ -10,8 +10,6 @@ "description": "

The damage you deal using firebased weapons increases by +1CD per rank. Each time you take this perk, the level requirement increases by 4.

\n

Requirements: END 6, Level 2+

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 3, "value": 0 }, @@ -25,7 +23,7 @@ "value": 0 }, "end": { - "value": 0 + "value": 6 }, "int": { "value": 0 @@ -41,8 +39,10 @@ } }, "isCompanion": false, - "level": 1, - "levelIncrease": 0, + "level": 2, + "levelIncrease": 4, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/quick_draw__Xz1V9etWzTtwt5x5.json b/data/packs/perks.db/quick_draw__Xz1V9etWzTtwt5x5.json index 535c2bc6..a721158f 100644 --- a/data/packs/perks.db/quick_draw__Xz1V9etWzTtwt5x5.json +++ b/data/packs/perks.db/quick_draw__Xz1V9etWzTtwt5x5.json @@ -10,8 +10,6 @@ "description": "

Each turn, you may draw a single weapon or item carried on your person without using a minor action.

\n

Requirements: AGI 6

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -19,7 +17,7 @@ "requirementsEx": { "attributes": { "agi": { - "value": 0 + "value": 6 }, "cha": { "value": 0 @@ -43,6 +41,8 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/quick_hands__2UGzU0qmtozi4QZK.json b/data/packs/perks.db/quick_hands__2UGzU0qmtozi4QZK.json index 368aad40..a95bda47 100644 --- a/data/packs/perks.db/quick_hands__2UGzU0qmtozi4QZK.json +++ b/data/packs/perks.db/quick_hands__2UGzU0qmtozi4QZK.json @@ -10,8 +10,6 @@ "description": "

You can reload firearms faster. When you make a ranged attack, you may spend 2 AP to increase the Fire Rate of your gun by +2 for that attack.

\n

Requirements: AGI 8

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -19,7 +17,7 @@ "requirementsEx": { "attributes": { "agi": { - "value": 0 + "value": 8 }, "cha": { "value": 0 @@ -43,6 +41,8 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/rad_resistance__TFJbnmRbE7cisziV.json b/data/packs/perks.db/rad_resistance__TFJbnmRbE7cisziV.json index 81385e08..0d394b91 100644 --- a/data/packs/perks.db/rad_resistance__TFJbnmRbE7cisziV.json +++ b/data/packs/perks.db/rad_resistance__TFJbnmRbE7cisziV.json @@ -10,8 +10,6 @@ "description": "

Your radiation Damage Resistance, to all hit locations, increases by +1 per rank in this perk. Each time you take this perk, the level requirement increases by 4.

\n

Requirements: END 8, Level 1+

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 2, "value": 0 }, @@ -25,7 +23,7 @@ "value": 0 }, "end": { - "value": 0 + "value": 8 }, "int": { "value": 0 @@ -42,7 +40,9 @@ }, "isCompanion": false, "level": 1, - "levelIncrease": 0, + "levelIncrease": 4, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/refractor__myJS8tB5FHk3Jo65.json b/data/packs/perks.db/refractor__myJS8tB5FHk3Jo65.json index 70b459c7..191bdf86 100644 --- a/data/packs/perks.db/refractor__myJS8tB5FHk3Jo65.json +++ b/data/packs/perks.db/refractor__myJS8tB5FHk3Jo65.json @@ -10,8 +10,6 @@ "description": "

Your energy Damage Resistance to all hit locations increases by +1 per rank in this perk. Each time you take this perk, the level requirement increases by 4.

\n

Requirements: PER 6, LCK 7, Level 1+

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 2, "value": 0 }, @@ -31,10 +29,10 @@ "value": 0 }, "luc": { - "value": 0 + "value": 7 }, "per": { - "value": 0 + "value": 6 }, "str": { "value": 0 @@ -42,7 +40,9 @@ }, "isCompanion": false, "level": 1, - "levelIncrease": 0, + "levelIncrease": 4, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/ricochet__E6eCO6Hq6gb4KGmQ.json b/data/packs/perks.db/ricochet__E6eCO6Hq6gb4KGmQ.json index 6cf80298..7bdb4287 100644 --- a/data/packs/perks.db/ricochet__E6eCO6Hq6gb4KGmQ.json +++ b/data/packs/perks.db/ricochet__E6eCO6Hq6gb4KGmQ.json @@ -10,8 +10,6 @@ "description": "

If an enemy makes a ranged attack against you and rolls a complication, you may spend one Luck point to have their ricochet hit them. Resolve the damage roll against the attacking enemy instead.

\n

Requirements: LCK 10, Level 5+

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -31,7 +29,7 @@ "value": 0 }, "luc": { - "value": 0 + "value": 10 }, "per": { "value": 0 @@ -41,8 +39,10 @@ } }, "isCompanion": false, - "level": 1, + "level": 5, "levelIncrease": 0, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/rifleman__RkftnkHGKVnz6URN.json b/data/packs/perks.db/rifleman__RkftnkHGKVnz6URN.json index 645a0fec..d692a90f 100644 --- a/data/packs/perks.db/rifleman__RkftnkHGKVnz6URN.json +++ b/data/packs/perks.db/rifleman__RkftnkHGKVnz6URN.json @@ -10,8 +10,6 @@ "description": "

When you make a ranged attack with any two-handed weapon with a Fire Rate of 2 or lower (except heavy weapons), you add +1 CD to the weapon’s damage per rank.

\n

At rank 2, you also add the Piercing 1 damage effect, or add +1 to the rating of any Piercing X damage effect the weapon already had. Each time you take this perk, the level requirement increases by 4.

\n

Requirements: AGI 7, Level 2+

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 2, "value": 0 }, @@ -19,7 +17,7 @@ "requirementsEx": { "attributes": { "agi": { - "value": 0 + "value": 7 }, "cha": { "value": 0 @@ -41,8 +39,10 @@ } }, "isCompanion": false, - "level": 1, - "levelIncrease": 0, + "level": 2, + "levelIncrease": 4, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/rise_of_the_mutants___Gn880XN7Auhdop6S.json b/data/packs/perks.db/rise_of_the_mutants___Gn880XN7Auhdop6S.json index a26fe489..f4895a05 100644 --- a/data/packs/perks.db/rise_of_the_mutants___Gn880XN7Auhdop6S.json +++ b/data/packs/perks.db/rise_of_the_mutants___Gn880XN7Auhdop6S.json @@ -10,8 +10,6 @@ "description": "

Astoundingly Awesome Tales

\n

Perk: Depending on the individual issue found, you receive a different perk, granting bonus damage or bonus damage resistance against a single foe or
type of attack.

\n
    \n
  • +1 @fos[DC] on attacks vs super mutants
  • \n
\n

 

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.J86ayEuqmagF9OH0" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/robotics_expert__GiPKNxmrkWA2k76W.json b/data/packs/perks.db/robotics_expert__GiPKNxmrkWA2k76W.json index 76b8011b..d21ce6f7 100644 --- a/data/packs/perks.db/robotics_expert__GiPKNxmrkWA2k76W.json +++ b/data/packs/perks.db/robotics_expert__GiPKNxmrkWA2k76W.json @@ -10,8 +10,6 @@ "description": "

At rank 1, you can modify robot armor, weapon mounts, and modules with rank 1 mods. At rank 2 you gain access to rank 2 mods, and the difficulty of tests to repair robots is permanently reduced by 1. At rank 3 you gain access to rank 3 mods, and you can reprogram robots to fulfil a different function or alter their behavior at the discretion of the GM.

\n

Each time you take this perk, the level requirement increases by 4.

\n

Requirements: INT 8, Level 2+

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 3, "value": 0 }, @@ -28,7 +26,7 @@ "value": 0 }, "int": { - "value": 0 + "value": 8 }, "luc": { "value": 0 @@ -41,8 +39,10 @@ } }, "isCompanion": false, - "level": 1, - "levelIncrease": 0, + "level": 2, + "levelIncrease": 4, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/rocket_science_for_toddlers__3gc78PRC1se8qefU.json b/data/packs/perks.db/rocket_science_for_toddlers__3gc78PRC1se8qefU.json index 3c683fe7..fa7cc3f1 100644 --- a/data/packs/perks.db/rocket_science_for_toddlers__3gc78PRC1se8qefU.json +++ b/data/packs/perks.db/rocket_science_for_toddlers__3gc78PRC1se8qefU.json @@ -10,8 +10,6 @@ "description": "

+2CD damage inflicted by one attack with a Blast weapon

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.Xh4PnVNi5xJrCtZr" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/science___UzRkuAJkvYqK8jrl.json b/data/packs/perks.db/science___UzRkuAJkvYqK8jrl.json index 4a9d84d1..c5ad5751 100644 --- a/data/packs/perks.db/science___UzRkuAJkvYqK8jrl.json +++ b/data/packs/perks.db/science___UzRkuAJkvYqK8jrl.json @@ -10,8 +10,6 @@ "description": "

You can modify energy weapons with weapon mods, and you can also craft certain advanced armor mods. Each rank in this perk unlocks an additional rank of mods: rank 1 unlocks rank 1 mods, rank 2 unlocks rank 2 mods, etc.

\n

Each time you take this perk, the level requirement increases by 4.

\n

Requirements: INT 6, Level 2+

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 3, "value": 0 }, @@ -28,7 +26,7 @@ "value": 0 }, "int": { - "value": 0 + "value": 6 }, "luc": { "value": 0 @@ -41,8 +39,10 @@ } }, "isCompanion": false, - "level": 1, - "levelIncrease": 0, + "level": 2, + "levelIncrease": 4, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/science_gone_mad___fDu6KU5u17sqA1hf.json b/data/packs/perks.db/science_gone_mad___fDu6KU5u17sqA1hf.json index 70be89fc..7bf58914 100644 --- a/data/packs/perks.db/science_gone_mad___fDu6KU5u17sqA1hf.json +++ b/data/packs/perks.db/science_gone_mad___fDu6KU5u17sqA1hf.json @@ -11,8 +11,6 @@ "description": "

Astoundingly Awesome Tales

\n

Perk: Depending on the individual issue found, you receive a different perk, granting bonus damage or bonus damage resistance against a single foe or
type of attack.

\n
    \n
  • +2 to Energy damage resistance
  • \n
\n

 

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -44,6 +42,7 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": "", "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/scoundrel__j4XUYfEZwmvkfXBe.json b/data/packs/perks.db/scoundrel__j4XUYfEZwmvkfXBe.json index 300b098b..cf871e72 100644 --- a/data/packs/perks.db/scoundrel__j4XUYfEZwmvkfXBe.json +++ b/data/packs/perks.db/scoundrel__j4XUYfEZwmvkfXBe.json @@ -10,8 +10,6 @@ "description": "

When you make a CHA + Speech test to convince someone of a lie, you may ignore the first complication you roll.

\n

Requirements: CHA 7

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -22,7 +20,7 @@ "value": 0 }, "cha": { - "value": 0 + "value": 7 }, "end": { "value": 0 @@ -43,6 +41,8 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/scrapper__dIQkAZGEzdR8j2BB.json b/data/packs/perks.db/scrapper__dIQkAZGEzdR8j2BB.json index 3bc3d4c7..98e1fdcc 100644 --- a/data/packs/perks.db/scrapper__dIQkAZGEzdR8j2BB.json +++ b/data/packs/perks.db/scrapper__dIQkAZGEzdR8j2BB.json @@ -10,8 +10,6 @@ "description": "

When you scrap an item, you can salvage uncommon component materials as well as common ones (see p.208). At rank 2, you can also salvage rare materials. Each time you take this perk, the level requirement increases by 5.

\n

Requirements: Level 3+

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 2, "value": 0 }, @@ -41,8 +39,10 @@ } }, "isCompanion": false, - "level": 1, - "levelIncrease": 0, + "level": 3, + "levelIncrease": 5, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/scrounger__zXQUHfk3g9d7WDG1.json b/data/packs/perks.db/scrounger__zXQUHfk3g9d7WDG1.json index 8ed44cea..5c29b970 100644 --- a/data/packs/perks.db/scrounger__zXQUHfk3g9d7WDG1.json +++ b/data/packs/perks.db/scrounger__zXQUHfk3g9d7WDG1.json @@ -10,8 +10,6 @@ "description": "

Whenever you roll to determine how much ammunition you find, you find more.

\n

At rank 1, you find +3CD additional shots. At rank 2, you find +6CCD additional shots. At rank 3, you find +10 CD additional shots. The additional ammo you find is the same as initially found, for example, if you find 10mm ammunition, this perk increases how much 10mm ammo you find. If you find multiple types of ammunition, Scrounger applies to the ammunition with the lowest rarity (GM’s choice if there is a tie).

\n

Each time you take this perk, the level requirement increases by 5.

\n

Requirements: LCK 6, Level 1+

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 3, "value": 0 }, @@ -31,7 +29,7 @@ "value": 0 }, "luc": { - "value": 0 + "value": 6 }, "per": { "value": 0 @@ -42,7 +40,9 @@ }, "isCompanion": false, "level": 1, - "levelIncrease": 0, + "levelIncrease": 5, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/self_defense_secrets__yXOy24286aAjL5ID.json b/data/packs/perks.db/self_defense_secrets__yXOy24286aAjL5ID.json index dacbe4e9..9f0a611e 100644 --- a/data/packs/perks.db/self_defense_secrets__yXOy24286aAjL5ID.json +++ b/data/packs/perks.db/self_defense_secrets__yXOy24286aAjL5ID.json @@ -10,8 +10,6 @@ "description": "

Gain +1 defense against a melee attack

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.l04nHOGBarXy6rxt" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/shotgun_surgeon__SfcMrqZU78wIJQ0r.json b/data/packs/perks.db/shotgun_surgeon__SfcMrqZU78wIJQ0r.json index 9328b395..fa449eed 100644 --- a/data/packs/perks.db/shotgun_surgeon__SfcMrqZU78wIJQ0r.json +++ b/data/packs/perks.db/shotgun_surgeon__SfcMrqZU78wIJQ0r.json @@ -10,8 +10,6 @@ "description": "

Your ranged attacks using shotguns gain the Piercing 1 damage effect, or add +1 to any Piercing X damage effect the weapon already had.

\n

Requirements: STR 5, AGI 7

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -19,7 +17,7 @@ "requirementsEx": { "attributes": { "agi": { - "value": 0 + "value": 7 }, "cha": { "value": 0 @@ -37,12 +35,14 @@ "value": 0 }, "str": { - "value": 0 + "value": 5 } }, "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/size_matters__fGZ6h4VtddiXvpZ3.json b/data/packs/perks.db/size_matters__fGZ6h4VtddiXvpZ3.json index fc451596..5cdfdd70 100644 --- a/data/packs/perks.db/size_matters__fGZ6h4VtddiXvpZ3.json +++ b/data/packs/perks.db/size_matters__fGZ6h4VtddiXvpZ3.json @@ -10,8 +10,6 @@ "description": "

When you make a ranged attack with any heavy weapon, you add +1 CD to the weapon’s damage, per rank. Each time you take this perk, the level requirement increases by 4.

\n

Requirements: END 7, AGI 6

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 3, "value": 0 }, @@ -19,13 +17,13 @@ "requirementsEx": { "attributes": { "agi": { - "value": 0 + "value": 6 }, "cha": { "value": 0 }, "end": { - "value": 0 + "value": 7 }, "int": { "value": 0 @@ -42,7 +40,9 @@ }, "isCompanion": false, "level": 1, - "levelIncrease": 0, + "levelIncrease": 4, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/skilled__PtWvAVSdwEPjeRb3.json b/data/packs/perks.db/skilled__PtWvAVSdwEPjeRb3.json index 6a42cfed..6e36b7c3 100644 --- a/data/packs/perks.db/skilled__PtWvAVSdwEPjeRb3.json +++ b/data/packs/perks.db/skilled__PtWvAVSdwEPjeRb3.json @@ -10,8 +10,6 @@ "description": "

Add +1 rank to two skills or add +2 ranks to one skill. No skill may have more than 6 ranks. Each time you take this perk, the level requirement increases by 3.

\n

Requirements: Level 3+

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 10, "value": 0 }, @@ -41,8 +39,10 @@ } }, "isCompanion": false, - "level": 1, - "levelIncrease": 0, + "level": 3, + "levelIncrease": 3, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/slayer__6U2ulr6F0lUbJoYl.json b/data/packs/perks.db/slayer__6U2ulr6F0lUbJoYl.json index 6b971d14..6b020f26 100644 --- a/data/packs/perks.db/slayer__6U2ulr6F0lUbJoYl.json +++ b/data/packs/perks.db/slayer__6U2ulr6F0lUbJoYl.json @@ -10,8 +10,6 @@ "description": "

When you inflict any damage with an unarmed attack or melee weapon, you may spend 1 Luck point to immediately inflict a critical hit—and therefore an injury—on the location hit.

\n

Requirements: STR 8

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -37,12 +35,14 @@ "value": 0 }, "str": { - "value": 0 + "value": 8 } }, "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/smooth_talker__fhBw3zhOo6EuZy2j.json b/data/packs/perks.db/smooth_talker__fhBw3zhOo6EuZy2j.json index fe354014..1038b34f 100644 --- a/data/packs/perks.db/smooth_talker__fhBw3zhOo6EuZy2j.json +++ b/data/packs/perks.db/smooth_talker__fhBw3zhOo6EuZy2j.json @@ -10,8 +10,6 @@ "description": "

When you make a Barter or Speech test as part of an opposed test, you may re-roll 1d20.

\n

Requirements: CHA 6

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -22,7 +20,7 @@ "value": 0 }, "cha": { - "value": 0 + "value": 6 }, "end": { "value": 0 @@ -43,6 +41,7 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": "", "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/snakeater__Y7s5hBuYxnIYz4T4.json b/data/packs/perks.db/snakeater__Y7s5hBuYxnIYz4T4.json index bbd6c776..fe44e7dd 100644 --- a/data/packs/perks.db/snakeater__Y7s5hBuYxnIYz4T4.json +++ b/data/packs/perks.db/snakeater__Y7s5hBuYxnIYz4T4.json @@ -10,8 +10,6 @@ "description": "

Your poison Damage Resistance increases by +2.

\n

Requirements: END 7

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -25,7 +23,7 @@ "value": 0 }, "end": { - "value": 0 + "value": 7 }, "int": { "value": 0 @@ -43,6 +41,8 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/sniper__cJGae8CyPIfp6tj7.json b/data/packs/perks.db/sniper__cJGae8CyPIfp6tj7.json index aedb6446..ba1eae36 100644 --- a/data/packs/perks.db/sniper__cJGae8CyPIfp6tj7.json +++ b/data/packs/perks.db/sniper__cJGae8CyPIfp6tj7.json @@ -10,8 +10,6 @@ "description": "

When you take the Aim minor action, and then make a ranged attack with a two-handed weapon with the Accurate quality, you can specify a hit location to target without increasing the difficulty of the attack.

\n

Requirements: PER 8, AGI 6

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -19,7 +17,7 @@ "requirementsEx": { "attributes": { "agi": { - "value": 0 + "value": 6 }, "cha": { "value": 0 @@ -34,7 +32,7 @@ "value": 0 }, "per": { - "value": 0 + "value": 8 }, "str": { "value": 0 @@ -43,6 +41,8 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/solar_powered__FXbX2ktBJkb6uFIG.json b/data/packs/perks.db/solar_powered__FXbX2ktBJkb6uFIG.json index e4a8ded8..a2d3bf2d 100644 --- a/data/packs/perks.db/solar_powered__FXbX2ktBJkb6uFIG.json +++ b/data/packs/perks.db/solar_powered__FXbX2ktBJkb6uFIG.json @@ -10,8 +10,6 @@ "description": "

For every hour you spend in direct sunlight, you heal 1 radiation damage.

\n

Requirements: END 7

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -25,7 +23,7 @@ "value": 0 }, "end": { - "value": 0 + "value": 7 }, "int": { "value": 0 @@ -43,6 +41,8 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/steady_aim__qrXcBKc5MX1lTmKa.json b/data/packs/perks.db/steady_aim__qrXcBKc5MX1lTmKa.json index 97b76d48..8c79aa99 100644 --- a/data/packs/perks.db/steady_aim__qrXcBKc5MX1lTmKa.json +++ b/data/packs/perks.db/steady_aim__qrXcBKc5MX1lTmKa.json @@ -10,8 +10,6 @@ "description": "

When you take the Aim minor action, you may either re-roll 2d20 on the first attack you make this turn, or re-roll 1d20 on all attacks you make this turn.

\n

Requirements: STR 8, AGI 7

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -19,7 +17,7 @@ "requirementsEx": { "attributes": { "agi": { - "value": 0 + "value": 7 }, "cha": { "value": 0 @@ -37,12 +35,14 @@ "value": 0 }, "str": { - "value": 0 + "value": 8 } }, "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/street_guns_of_detroit__iQofqWEFwGokog1G.json b/data/packs/perks.db/street_guns_of_detroit__iQofqWEFwGokog1G.json index 7c5a0223..e1a3960c 100644 --- a/data/packs/perks.db/street_guns_of_detroit__iQofqWEFwGokog1G.json +++ b/data/packs/perks.db/street_guns_of_detroit__iQofqWEFwGokog1G.json @@ -10,8 +10,6 @@ "description": "

Gain an extra 2 AP after one successful attack. This AP must be spent immediately: it cannot be saved

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.mT0Wf89P2UGLZ83y" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/strong_back__6UWfRLqNydpXobqM.json b/data/packs/perks.db/strong_back__6UWfRLqNydpXobqM.json index 957f97e0..17c28a9f 100644 --- a/data/packs/perks.db/strong_back__6UWfRLqNydpXobqM.json +++ b/data/packs/perks.db/strong_back__6UWfRLqNydpXobqM.json @@ -10,8 +10,6 @@ "description": "

Your maximum carry weight is increased by +25 lbs., per rank. Each time you take this perk, the level requirement increases by 2.

\n

Requirements: STR 5, Level 1+

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 3, "value": 0 }, @@ -37,12 +35,14 @@ "value": 0 }, "str": { - "value": 0 + "value": 5 } }, "isCompanion": false, "level": 1, - "levelIncrease": 0, + "levelIncrease": 2, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/surrounded_by_the_dead___pk42jPbAVMosmA0k.json b/data/packs/perks.db/surrounded_by_the_dead___pk42jPbAVMosmA0k.json index 0fa6813c..5a7778c5 100644 --- a/data/packs/perks.db/surrounded_by_the_dead___pk42jPbAVMosmA0k.json +++ b/data/packs/perks.db/surrounded_by_the_dead___pk42jPbAVMosmA0k.json @@ -10,8 +10,6 @@ "description": "

Astoundingly Awesome Tales

\n

Perk: Depending on the individual issue found, you receive a different perk, granting bonus damage or bonus damage resistance against a single foe or
type of attack.

\n
    \n
  • +1CD on attacks where you spend one or more Ammunition for bonus damage
  • \n
", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.0pTA0wlRQUQ2oAHk" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/tag___4QXLYHaB9WGmGVY1.json b/data/packs/perks.db/tag___4QXLYHaB9WGmGVY1.json index b9d44b71..6170ae7c 100644 --- a/data/packs/perks.db/tag___4QXLYHaB9WGmGVY1.json +++ b/data/packs/perks.db/tag___4QXLYHaB9WGmGVY1.json @@ -10,8 +10,6 @@ "description": "

You may select one additional Tag skill. Increase the skill’s rank by 2, to a maximum of 6, and mark it as a Tag skill, allowing you to roll a critical success with a d20 result equal or under the skill’s rank.

\n

Requirements: Level 5+

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -41,8 +39,10 @@ } }, "isCompanion": false, - "level": 1, + "level": 5, "levelIncrease": 0, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/take_aim__army_style__oRB1ZIvzhsUMElSc.json b/data/packs/perks.db/take_aim__army_style__oRB1ZIvzhsUMElSc.json index 3f19e758..9f574a6e 100644 --- a/data/packs/perks.db/take_aim__army_style__oRB1ZIvzhsUMElSc.json +++ b/data/packs/perks.db/take_aim__army_style__oRB1ZIvzhsUMElSc.json @@ -10,8 +10,6 @@ "description": "

One aimed attack made with a weapon which lacks the Accurate quality inflicts +2CD damage

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.yjknvThwoDmQwU3M" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/tales_of_a_junktown_jerky_vendor__Qf4PBCvZdSvPAeX7.json b/data/packs/perks.db/tales_of_a_junktown_jerky_vendor__Qf4PBCvZdSvPAeX7.json index 420bf9d1..b20b2c4d 100644 --- a/data/packs/perks.db/tales_of_a_junktown_jerky_vendor__Qf4PBCvZdSvPAeX7.json +++ b/data/packs/perks.db/tales_of_a_junktown_jerky_vendor__Qf4PBCvZdSvPAeX7.json @@ -10,8 +10,6 @@ "description": "

Once, when you succeed or fail at a Barter test to haggle on the price of a trade, you may spend 1 Luck point to shift the price 10% in your favor.

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.IB9mafYkrD1E7EuV" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/talk_yourself_sober__Jip3JdMpV9HTHujn.json b/data/packs/perks.db/talk_yourself_sober__Jip3JdMpV9HTHujn.json index f51d7ce7..def80b19 100644 --- a/data/packs/perks.db/talk_yourself_sober__Jip3JdMpV9HTHujn.json +++ b/data/packs/perks.db/talk_yourself_sober__Jip3JdMpV9HTHujn.json @@ -10,8 +10,6 @@ "description": "

Gain 1 Luck point (lost at the end of the scene if not used) when you consume an Alcoholic drink

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.YFSFj5moNn7KNnT8" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/terrifying_presence__CaZiVRLhAUoxj0en.json b/data/packs/perks.db/terrifying_presence__CaZiVRLhAUoxj0en.json index 5f80a62f..01cd7e47 100644 --- a/data/packs/perks.db/terrifying_presence__CaZiVRLhAUoxj0en.json +++ b/data/packs/perks.db/terrifying_presence__CaZiVRLhAUoxj0en.json @@ -10,8 +10,6 @@ "description": "

When you make a Speech test to threaten or scare someone, you may re-roll 1d20.

\n

At rank 2, you may use a major action in combat to threaten an enemy within Medium range, using a STR + Speech test with a difficulty of 2. If you succeed, that enemy must move away from you during their next turn (though they can take any other actions they wish). Each time you take this perk, the level requirement increases by 5.

\n

Requirements: STR 6, CHA 8, Level 3+

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 2, "value": 0 }, @@ -22,7 +20,7 @@ "value": 0 }, "cha": { - "value": 0 + "value": 8 }, "end": { "value": 0 @@ -37,12 +35,14 @@ "value": 0 }, "str": { - "value": 0 + "value": 6 } }, "isCompanion": false, - "level": 1, - "levelIncrease": 0, + "level": 3, + "levelIncrease": 5, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/tesla_science_magazine__zY0rwlqXY0Yb7tFp.json b/data/packs/perks.db/tesla_science_magazine__zY0rwlqXY0Yb7tFp.json index c03bb687..9c9ea065 100644 --- a/data/packs/perks.db/tesla_science_magazine__zY0rwlqXY0Yb7tFp.json +++ b/data/packs/perks.db/tesla_science_magazine__zY0rwlqXY0Yb7tFp.json @@ -2,6 +2,7 @@ "_id": "zY0rwlqXY0Yb7tFp", "_key": "!folders!zY0rwlqXY0Yb7tFp", "color": "#293f5f", + "description": "", "folder": "zAYtcZkRVsN58RGG", "name": "Tesla Science Magazine", "sorting": "a", diff --git a/data/packs/perks.db/the_appalachia_squirrel_massacre__kQD85MOcz1B4KHsV.json b/data/packs/perks.db/the_appalachia_squirrel_massacre__kQD85MOcz1B4KHsV.json index 2f6f0300..bed585ce 100644 --- a/data/packs/perks.db/the_appalachia_squirrel_massacre__kQD85MOcz1B4KHsV.json +++ b/data/packs/perks.db/the_appalachia_squirrel_massacre__kQD85MOcz1B4KHsV.json @@ -10,8 +10,6 @@ "description": "

Backwoodsman

\n

Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from once. If you later learn the perk, you may use that benefit once per scene.

\n
    \n
  • \n

    One item of cooked food you make and eat heals +3 HP

    \n
  • \n
", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,7 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": "", "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/the_bright_side_of_radiation_poisoning__BSi2qWkBGOJKFFED.json b/data/packs/perks.db/the_bright_side_of_radiation_poisoning__BSi2qWkBGOJKFFED.json index 4d95383a..73c2c213 100644 --- a/data/packs/perks.db/the_bright_side_of_radiation_poisoning__BSi2qWkBGOJKFFED.json +++ b/data/packs/perks.db/the_bright_side_of_radiation_poisoning__BSi2qWkBGOJKFFED.json @@ -10,8 +10,6 @@ "description": "

When you consume irradiated food or drink, heal additional HP equal to the roll on the @fos[DC]

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.EIzEOJH0iP4JzWnw" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/the_future_of_hunting___kBFXBzcatoT884Je.json b/data/packs/perks.db/the_future_of_hunting___kBFXBzcatoT884Je.json index 97ab336b..1c7871aa 100644 --- a/data/packs/perks.db/the_future_of_hunting___kBFXBzcatoT884Je.json +++ b/data/packs/perks.db/the_future_of_hunting___kBFXBzcatoT884Je.json @@ -10,8 +10,6 @@ "description": "

One attack against Robots inflicts +2CD damage

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.DBYRYX03IcO2aTQG" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/the_gunsmith_of_harper_s_ferry__3caIOATNwBm6EPuh.json b/data/packs/perks.db/the_gunsmith_of_harper_s_ferry__3caIOATNwBm6EPuh.json index 7b32767c..ebeb6dc3 100644 --- a/data/packs/perks.db/the_gunsmith_of_harper_s_ferry__3caIOATNwBm6EPuh.json +++ b/data/packs/perks.db/the_gunsmith_of_harper_s_ferry__3caIOATNwBm6EPuh.json @@ -10,8 +10,6 @@ "description": "

Backwoodsman

\n

Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from once. If you later learn the perk, you may use that benefit once per scene.

\n
    \n
  • \n

    When you find ammo, you find +2CD more shots

    \n
  • \n
", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.sJuyumHFWHrT4Kr0" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/the_lair_of_the_virgin_eaters__KEpm4gH8RvMjhpoO.json b/data/packs/perks.db/the_lair_of_the_virgin_eaters__KEpm4gH8RvMjhpoO.json index 8173f2a3..4dc8ca39 100644 --- a/data/packs/perks.db/the_lair_of_the_virgin_eaters__KEpm4gH8RvMjhpoO.json +++ b/data/packs/perks.db/the_lair_of_the_virgin_eaters__KEpm4gH8RvMjhpoO.json @@ -10,8 +10,6 @@ "description": "

Gain +10 Carry weight for one scene

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.G88aHNSeg4SvaCo9" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/the_mad_russian_s_revenge___LSUSRTgMyqfN1EQx.json b/data/packs/perks.db/the_mad_russian_s_revenge___LSUSRTgMyqfN1EQx.json index 8c099387..834ce35c 100644 --- a/data/packs/perks.db/the_mad_russian_s_revenge___LSUSRTgMyqfN1EQx.json +++ b/data/packs/perks.db/the_mad_russian_s_revenge___LSUSRTgMyqfN1EQx.json @@ -11,8 +11,6 @@ "description": "

Astoundingly Awesome Tales

\n

Perk: Depending on the individual issue found, you receive a different perk, granting bonus damage or bonus damage resistance against a single foe or
type of attack.

\n
    \n
  • +2 to Poison damage resistance
  • \n
\n

 

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -44,6 +42,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.iiFcIlhklIMxjaoC" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/the_moon__a_communist_doomsday_device____zZg9mSTuufYGzSib.json b/data/packs/perks.db/the_moon__a_communist_doomsday_device____zZg9mSTuufYGzSib.json index 3583b72f..f19da6ee 100644 --- a/data/packs/perks.db/the_moon__a_communist_doomsday_device____zZg9mSTuufYGzSib.json +++ b/data/packs/perks.db/the_moon__a_communist_doomsday_device____zZg9mSTuufYGzSib.json @@ -10,8 +10,6 @@ "description": "

Gain +2 to Physical or Energy damage resistance against one attack at night

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.4jcc9O3jIgAhUulK" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/the_ohio_river_hermit__7vvLcpVth2gMnB7o.json b/data/packs/perks.db/the_ohio_river_hermit__7vvLcpVth2gMnB7o.json index 940ad286..27a7e3f8 100644 --- a/data/packs/perks.db/the_ohio_river_hermit__7vvLcpVth2gMnB7o.json +++ b/data/packs/perks.db/the_ohio_river_hermit__7vvLcpVth2gMnB7o.json @@ -10,8 +10,6 @@ "description": "

Backwoodsman

\n

Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from once. If you later learn the perk, you may use that benefit once per scene.

\n
    \n
  • \n

    Reduce the difficulty of repairing a damaged item by 1 (min. 0)

    \n
  • \n
", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.0WGq8Aaq82V8nViB" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/the_secretary_charmer__disfFslU7fhYTIlC.json b/data/packs/perks.db/the_secretary_charmer__disfFslU7fhYTIlC.json index fe4202a3..512513b5 100644 --- a/data/packs/perks.db/the_secretary_charmer__disfFslU7fhYTIlC.json +++ b/data/packs/perks.db/the_secretary_charmer__disfFslU7fhYTIlC.json @@ -10,8 +10,6 @@ "description": "

At the start of one scene, add +1 AP to the group pool

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.PKilL8to3SDZHUAU" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/the_starlet_sniper___x6hpmUJFDTD3Iw82.json b/data/packs/perks.db/the_starlet_sniper___x6hpmUJFDTD3Iw82.json index 2e60dab2..591fcbf3 100644 --- a/data/packs/perks.db/the_starlet_sniper___x6hpmUJFDTD3Iw82.json +++ b/data/packs/perks.db/the_starlet_sniper___x6hpmUJFDTD3Iw82.json @@ -10,8 +10,6 @@ "description": "

Astoundingly Awesome Tales

\n

Perk: Depending on the individual issue found, you receive a different perk, granting bonus damage or bonus damage resistance against a single foe or
type of attack.

\n
    \n
  • +1 @fos[DC] on attacks with Accurate weapons
  • \n
\n

 

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.sNyzZdtR8zQeKE86" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/tomorrow_s_technology_for_today_s_super_soldiers__eTkUS79PttpiHVm0.json b/data/packs/perks.db/tomorrow_s_technology_for_today_s_super_soldiers__eTkUS79PttpiHVm0.json index 617216bc..5133c07b 100644 --- a/data/packs/perks.db/tomorrow_s_technology_for_today_s_super_soldiers__eTkUS79PttpiHVm0.json +++ b/data/packs/perks.db/tomorrow_s_technology_for_today_s_super_soldiers__eTkUS79PttpiHVm0.json @@ -10,8 +10,6 @@ "description": "

After spending a fusion core charge, you may spend 1 Luck point: if you do so the charge is not spent

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.od1qgkoqyO2SbhPV" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/toughness__OL6ocnHhOZW4mxns.json b/data/packs/perks.db/toughness__OL6ocnHhOZW4mxns.json index b3ca39d3..5299d2aa 100644 --- a/data/packs/perks.db/toughness__OL6ocnHhOZW4mxns.json +++ b/data/packs/perks.db/toughness__OL6ocnHhOZW4mxns.json @@ -10,8 +10,6 @@ "description": "

Your physical Damage Resistance to all hit locations increases by +1 per rank in this perk. Each time you take this perk, the level requirement increases by 4.

\n

Requirements: END 6, LCK 6, Level 1+

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 2, "value": 0 }, @@ -25,13 +23,13 @@ "value": 0 }, "end": { - "value": 0 + "value": 6 }, "int": { "value": 0 }, "luc": { - "value": 0 + "value": 6 }, "per": { "value": 0 @@ -42,7 +40,9 @@ }, "isCompanion": false, "level": 1, - "levelIncrease": 0, + "levelIncrease": 4, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/trapped_in_the_dimension_of_the_pterror_dactyls__VrMFCFltA2MKaCcH.json b/data/packs/perks.db/trapped_in_the_dimension_of_the_pterror_dactyls__VrMFCFltA2MKaCcH.json index 17ed627d..b677513b 100644 --- a/data/packs/perks.db/trapped_in_the_dimension_of_the_pterror_dactyls__VrMFCFltA2MKaCcH.json +++ b/data/packs/perks.db/trapped_in_the_dimension_of_the_pterror_dactyls__VrMFCFltA2MKaCcH.json @@ -10,8 +10,6 @@ "description": "

Spend 1 Luck point to avoid all damage from a single melee attack

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.IgqLkMbelsAnYC9q" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/trim_the_fat___siFrRn6TjSmxGKas.json b/data/packs/perks.db/trim_the_fat___siFrRn6TjSmxGKas.json index b782e410..2b359113 100644 --- a/data/packs/perks.db/trim_the_fat___siFrRn6TjSmxGKas.json +++ b/data/packs/perks.db/trim_the_fat___siFrRn6TjSmxGKas.json @@ -10,8 +10,6 @@ "description": "

Regain twice as many HP from fruit or vegetables eaten in one scene

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.ZVFaC4f8Ki48eTdx" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/true_police_stories__DC6xyEVANOUPyy1I.json b/data/packs/perks.db/true_police_stories__DC6xyEVANOUPyy1I.json index f7435d07..2ad4e1b8 100644 --- a/data/packs/perks.db/true_police_stories__DC6xyEVANOUPyy1I.json +++ b/data/packs/perks.db/true_police_stories__DC6xyEVANOUPyy1I.json @@ -10,8 +10,6 @@ "description": "

Once, when you roll the damage of an attack, you may spend a Luck point to turn up to three @fos[DC] to any face, rather than rolling them.

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.WeOABgbveKblRqPw" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/tumblers_today__lGOBRrvW0XU5E6o8.json b/data/packs/perks.db/tumblers_today__lGOBRrvW0XU5E6o8.json index 668020c9..aead3fb0 100644 --- a/data/packs/perks.db/tumblers_today__lGOBRrvW0XU5E6o8.json +++ b/data/packs/perks.db/tumblers_today__lGOBRrvW0XU5E6o8.json @@ -2,6 +2,7 @@ "_id": "lGOBRrvW0XU5E6o8", "_key": "!folders!lGOBRrvW0XU5E6o8", "color": "#293f5f", + "description": "", "folder": "zAYtcZkRVsN58RGG", "name": "Tumblers Today", "sorting": "a", diff --git a/data/packs/perks.db/u_s__army_goes_to_space__lkAJKVOfU1DfjLU9.json b/data/packs/perks.db/u_s__army_goes_to_space__lkAJKVOfU1DfjLU9.json index 4df00f02..b40643d9 100644 --- a/data/packs/perks.db/u_s__army_goes_to_space__lkAJKVOfU1DfjLU9.json +++ b/data/packs/perks.db/u_s__army_goes_to_space__lkAJKVOfU1DfjLU9.json @@ -10,8 +10,6 @@ "description": "

On a single attack with an Energy weapon, you inflict a Critical Hit if you inflict 3 or more damage after damage resistance (rather than the normal 5 or more damage)

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.5Y5Dkh9W0XRFfpQV" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/u_s__covert_operations_manual__yqwsUbSI5liyBtpj.json b/data/packs/perks.db/u_s__covert_operations_manual__yqwsUbSI5liyBtpj.json index de3faaf2..26085490 100644 --- a/data/packs/perks.db/u_s__covert_operations_manual__yqwsUbSI5liyBtpj.json +++ b/data/packs/perks.db/u_s__covert_operations_manual__yqwsUbSI5liyBtpj.json @@ -2,6 +2,7 @@ "_id": "yqwsUbSI5liyBtpj", "_key": "!folders!yqwsUbSI5liyBtpj", "color": "#293f5f", + "description": "", "folder": "zAYtcZkRVsN58RGG", "name": "U.S. Covert Operations Manual", "sorting": "a", diff --git a/data/packs/perks.db/unstoppables__y6eI37QhWZMaqeyZ.json b/data/packs/perks.db/unstoppables__y6eI37QhWZMaqeyZ.json index a82e27b0..f5310c23 100644 --- a/data/packs/perks.db/unstoppables__y6eI37QhWZMaqeyZ.json +++ b/data/packs/perks.db/unstoppables__y6eI37QhWZMaqeyZ.json @@ -2,6 +2,7 @@ "_id": "y6eI37QhWZMaqeyZ", "_key": "!folders!y6eI37QhWZMaqeyZ", "color": "#293f5f", + "description": "", "folder": "zAYtcZkRVsN58RGG", "name": "Unstoppables", "sorting": "a", diff --git a/data/packs/perks.db/visit_the_ux_ron_galaxy___Lf2VvWWVug9jj5Ly.json b/data/packs/perks.db/visit_the_ux_ron_galaxy___Lf2VvWWVug9jj5Ly.json index c980d9a0..35ff152f 100644 --- a/data/packs/perks.db/visit_the_ux_ron_galaxy___Lf2VvWWVug9jj5Ly.json +++ b/data/packs/perks.db/visit_the_ux_ron_galaxy___Lf2VvWWVug9jj5Ly.json @@ -10,8 +10,6 @@ "description": "

Spend 1 Luck point to avoid all Energy damage from a single attack

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.szFJr7G3Z8XuW5rk" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/wasteland_survival_guide__dFCoGx8Inb2YiPBZ.json b/data/packs/perks.db/wasteland_survival_guide__dFCoGx8Inb2YiPBZ.json index 46cc73e2..d6e39c72 100644 --- a/data/packs/perks.db/wasteland_survival_guide__dFCoGx8Inb2YiPBZ.json +++ b/data/packs/perks.db/wasteland_survival_guide__dFCoGx8Inb2YiPBZ.json @@ -2,6 +2,7 @@ "_id": "dFCoGx8Inb2YiPBZ", "_key": "!folders!dFCoGx8Inb2YiPBZ", "color": "#293f5f", + "description": "", "folder": "zAYtcZkRVsN58RGG", "name": "Wasteland Survival Guide", "sorting": "a", diff --git a/data/packs/perks.db/water_aerobics_for_ghouls__xXZcXGsZY6g4QkTl.json b/data/packs/perks.db/water_aerobics_for_ghouls__xXZcXGsZY6g4QkTl.json index 6394f1ae..07ea0df1 100644 --- a/data/packs/perks.db/water_aerobics_for_ghouls__xXZcXGsZY6g4QkTl.json +++ b/data/packs/perks.db/water_aerobics_for_ghouls__xXZcXGsZY6g4QkTl.json @@ -10,8 +10,6 @@ "description": "

Reduce the difficulty of an Athletics test to swim by 1 (min. 0)

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.hQmjix9JtmveUaBz" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/what_is_plasma__anyway___MsNkQ2J8T75NE3uJ.json b/data/packs/perks.db/what_is_plasma__anyway___MsNkQ2J8T75NE3uJ.json index 37c9f227..8fd0893a 100644 --- a/data/packs/perks.db/what_is_plasma__anyway___MsNkQ2J8T75NE3uJ.json +++ b/data/packs/perks.db/what_is_plasma__anyway___MsNkQ2J8T75NE3uJ.json @@ -10,8 +10,6 @@ "description": "

+2 to Physical and Energy damage resistances vs Plasma weapons

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.05H6aksyvOateBtf" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/what_sorcery_is_this___1KDDs6qPimKnwL9r.json b/data/packs/perks.db/what_sorcery_is_this___1KDDs6qPimKnwL9r.json index 112a8d55..d9cca8ad 100644 --- a/data/packs/perks.db/what_sorcery_is_this___1KDDs6qPimKnwL9r.json +++ b/data/packs/perks.db/what_sorcery_is_this___1KDDs6qPimKnwL9r.json @@ -10,8 +10,6 @@ "description": "

Gain +2 Energy damage resistance against one attack

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.oR7Yb9XMHc1Yn49v" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/who_can_stop_the_unstoppable_grog_na_rok____7heg2KN3JXIllHT2.json b/data/packs/perks.db/who_can_stop_the_unstoppable_grog_na_rok____7heg2KN3JXIllHT2.json index 11f1ec9f..f1064b10 100644 --- a/data/packs/perks.db/who_can_stop_the_unstoppable_grog_na_rok____7heg2KN3JXIllHT2.json +++ b/data/packs/perks.db/who_can_stop_the_unstoppable_grog_na_rok____7heg2KN3JXIllHT2.json @@ -10,8 +10,6 @@ "description": "

Spend 2 Luck points to avoid all damage from an attack from a Mutated Human (including Ghouls and super mutants)

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.xBhJROt39tupLIhb" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/data/packs/perks.db/will_robots_rule_the_world___9LAlQMlnpZ2lYqKV.json b/data/packs/perks.db/will_robots_rule_the_world___9LAlQMlnpZ2lYqKV.json index 70bbf998..a3b10049 100644 --- a/data/packs/perks.db/will_robots_rule_the_world___9LAlQMlnpZ2lYqKV.json +++ b/data/packs/perks.db/will_robots_rule_the_world___9LAlQMlnpZ2lYqKV.json @@ -10,8 +10,6 @@ "description": "

+2 to Physical and Energy damage resistances vs Robots

", "favorite": false, "rank": { - "levelIncrease": 0, - "levelStart": 1, "max": 1, "value": 0 }, @@ -43,6 +41,9 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + "Compendium.fallout.books_and_magz.Item.Hb3AdW5QaAHVDlNZ" + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, From a1b09d9c9ce1da69fce4c9f440748b24dbbe4ea0 Mon Sep 17 00:00:00 2001 From: Paul Maskelyne Date: Wed, 18 Dec 2024 21:23:28 +0000 Subject: [PATCH 10/11] add support for magazine perk requirements and tweaks to item sheet --- i18n/en.yaml | 11 +- .../migrations/updates/Update_241218_1.mjs | 19 ++++ system/src/sheets/FalloutItemSheet.mjs | 58 ++++++++++ system/template.json | 16 ++- system/templates/item/perk/attributes-tab.hbs | 105 +++++++++--------- 5 files changed, 147 insertions(+), 62 deletions(-) create mode 100644 system/src/migrations/updates/Update_241218_1.mjs diff --git a/i18n/en.yaml b/i18n/en.yaml index ad58cbe2..d02efb65 100644 --- a/i18n/en.yaml +++ b/i18n/en.yaml @@ -213,18 +213,18 @@ FALLOUT.HEALTH.max: Max Health FALLOUT.Item.Origin.FixedTraits.label: Fixed Traits FALLOUT.Item.Origin.Traits.label: Origin Traits FALLOUT.Item.Origin.Traits.prompt: Select Trait... -FALLOUT.Item.PowerArmor.Attach: Attach -FALLOUT.Item.PowerArmor.Attached: Attached FALLOUT.Item.Perk.isCompanion: Is a Companion -FALLOUT.Item.Perk.legacy: Legacy Requirements FALLOUT.Item.Perk.level: Level -FALLOUT.Item.Perk.levelIncrease: Level Increase +FALLOUT.Item.Perk.Magazine.label: Magazines +FALLOUT.Item.Perk.Magazine.prompt: Select Magazine... FALLOUT.Item.Perk.notGhoul: Not a Ghoul FALLOUT.Item.Perk.notHuman: Not a Human FALLOUT.Item.Perk.notRadiationImmune: Not Immune to Radiation FALLOUT.Item.Perk.notRobot: Not a Robot FALLOUT.Item.Perk.notSupermutant: Not a Supermutant -FALLOUT.Item.Perk.Warning.legacy: This is the original requirments info. Will be removed at a later update. +FALLOUT.Item.Perk.readMagazines: Read Magazines +FALLOUT.Item.PowerArmor.Attach: Attach +FALLOUT.Item.PowerArmor.Attached: Attached FALLOUT.Item.PowerArmor.AttachedToFrame: Attached to Frame FALLOUT.Item.PowerArmor.Frame: Frame FALLOUT.Item.PowerArmor.IsFrame: Is Frame @@ -485,6 +485,7 @@ FALLOUT.TEMPLATES.MaterialsRequired: Materials Required FALLOUT.TEMPLATES.MAX_PARTY_AP: MAX PARTY AP FALLOUT.TEMPLATES.max: max FALLOUT.TEMPLATES.MAX: MAX +FALLOUT.TEMPLATES.MaxRanks: Max Ranks FALLOUT.TEMPLATES.Melee_Bonus: Melee Bonus FALLOUT.TEMPLATES.Melee_Damage: Melee Damage FALLOUT.TEMPLATES.Mod_Type: Mod Type diff --git a/system/src/migrations/updates/Update_241218_1.mjs b/system/src/migrations/updates/Update_241218_1.mjs new file mode 100644 index 00000000..5f151170 --- /dev/null +++ b/system/src/migrations/updates/Update_241218_1.mjs @@ -0,0 +1,19 @@ +import { FalloutUpdateBase } from "../FalloutUpdateBase.mjs"; + +export default class Update_241218_1 extends FalloutUpdateBase { + + static version = 241218.1; + + async updateItem(itemData, actorData) { + if (itemData.type !== "perk") return; + + const updateData = { + "system.-=issue": null, + "system.-=learned": null, + "system.-=perk": null, + "system.read": itemData.system.learned ?? false, + }; + + return updateData; + } +} diff --git a/system/src/sheets/FalloutItemSheet.mjs b/system/src/sheets/FalloutItemSheet.mjs index a52ff1ca..0be8086e 100644 --- a/system/src/sheets/FalloutItemSheet.mjs +++ b/system/src/sheets/FalloutItemSheet.mjs @@ -92,6 +92,9 @@ export default class FalloutItemSheet extends ItemSheet { case "origin": await this.getOriginSelectorConfigs(context); break; + case "perk": + await this.getPerkSelectorConfigs(context); + break; case "weapon": await this.getWeaponData(context, item); break; @@ -201,6 +204,24 @@ export default class FalloutItemSheet extends ItemSheet { } } + async getPerkSelectorConfigs(context) { + const [selectedMagazines, availableMagazines] = + await fallout.utils.getDedupedSelectedItems( + await fallout.compendiums.books_and_magz(false), + this.item.system.requirementsEx.magazineUuids ?? [] + ); + + context.magazineSelectionConfig = { + availableItems: availableMagazines, + choicesKey: "requirementsEx.magazineUuids", + isItem: true, + label: game.i18n.localize("FALLOUT.Item.Perk.Magazine.label"), + name: "system.requirementsEx.magazineUuids", + prompt: game.i18n.localize("FALLOUT.Item.Perk.Magazine.prompt"), + selectedItems: selectedMagazines, + }; + } + async getWeaponData(context, item) { context.isWeaponBroken = this.item.isWeaponBroken; @@ -276,6 +297,10 @@ export default class FalloutItemSheet extends ItemSheet { activateListeners(html) { super.activateListeners(html); + html.find("[data-action='delete-choice']").click( + async event => this._deleteChoiceItem(event) + ); + // Send To Chat html.find(".chaty").click(ev => { this.item.sendToChat(); @@ -337,6 +362,31 @@ export default class FalloutItemSheet extends ItemSheet { }); } + async _deleteChoiceItem(event) { + event.preventDefault(); + event.stopPropagation(); + + const deleteUuid = event.currentTarget.dataset.uuid; + const choicesKey = event.currentTarget.dataset.choicesKey; + + let currentChoices = choicesKey + .split(".") + .reduce((obj, path) => obj ? obj[path]: [], this.item.system); + + const newChoices = []; + for (const itemUuid of currentChoices) { + if (itemUuid === deleteUuid) continue; + newChoices.push(itemUuid); + } + + const updateData = {}; + updateData[`system.${choicesKey}`] = newChoices; + + await this.item.update(updateData); + + return this.render(true); + } + async _onChangeChoiceList(event, choicesKey, isItem) { const options = event.target.list.options; const value = event.target.value; @@ -408,6 +458,14 @@ export default class FalloutItemSheet extends ItemSheet { this.item.update(updateData); break; } + case "perk": { + const updateData = this._getSubmitData(); + + delete updateData["system.requirementsEx.magazineUuid"]; + + this.item.update(updateData); + break; + } case "weapon": { const updateData = this._getSubmitData(); diff --git a/system/template.json b/system/template.json index 9e48c5fa..0307a647 100644 --- a/system/template.json +++ b/system/template.json @@ -16,6 +16,7 @@ "body", "derived", "encumbrance", + "pc_shared", "stats", "valuables" ] @@ -226,9 +227,10 @@ "robot": { "templates": [ "base", + "body", "derived", "encumbrance", - "body", + "pc_shared", "stats", "valuables" ] @@ -538,6 +540,9 @@ "npc_shared": { "category": "normal" }, + "pc_shared": { + "readMagazines": [] + }, "settler": { "settlement": { "action": "unnasigned", @@ -1073,10 +1078,12 @@ }, "books_and_magz": { "effect": "", - "issue": "", - "learned": false, - "perk": "", "publication": "", + "read": false, + "uses": { + "max": 1, + "value": 0 + }, "templates": [ "base", "physical" @@ -1168,6 +1175,7 @@ } }, "isCompanion": false, + "magazineUuids": [], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, diff --git a/system/templates/item/perk/attributes-tab.hbs b/system/templates/item/perk/attributes-tab.hbs index 4a387408..6ecf9b4c 100644 --- a/system/templates/item/perk/attributes-tab.hbs +++ b/system/templates/item/perk/attributes-tab.hbs @@ -3,7 +3,7 @@ {{> item/perk/_partials/attributes}}
-
+
-
- - -
- -
-
- - {{#if (gt system.rank.max 1)}} -
- - -
- -
-
- {{/if}} -
- - -
-
-
+
+
+
+ + + + + {{#ifCond system.rank.max ">" 1}} + / + + {{/ifCond}} +
-
-
@@ -130,5 +122,12 @@ {{checked system.requirementsEx.isCompanion}} />
+
+ + {{> item/_shared-partials/choice-selector + config=magazineSelectionConfig + editable=editable + label=(localize "FALLOUT.Item.Perk.readMagazines") + }}
From 9181a0698519927f735071aee19ad84cc0077a4e Mon Sep 17 00:00:00 2001 From: Paul Maskelyne Date: Fri, 20 Dec 2024 10:26:52 +0000 Subject: [PATCH 11/11] closes #559 --- CHANGELOG.md | 9 ++ ...e_nation_by_storm____ECXYCwNy7GKVavV3.json | 8 +- .../_la_fantoma___9Z4Asa5c915hem9w.json | 8 +- ...ce_from_married_men__8uCaW6rs4fwDWJUF.json | 8 +- ...erience_to_remember__LATCQmWWljVCwMnt.json | 8 +- ...art_of_the_tomahawk__MsXLDa4RZ0UHMT2J.json | 8 +- ...ack_of_the_fishmen___mT6qkeV6xTG1pnex.json | 8 +- ...k_of_the_metal_men___13RpvXhUn7TdKjEA.json | 8 +- ...ose_pesky_gun_laws___qcEZIWmadDggAT8K.json | 8 +- ...ofing_your_campsite__AJEifHfxya4EViFy.json | 8 +- ...are_the_man_handler__hCRQEWSkpgvFluXe.json | 8 +- .../blood_on_the_harp__qx4yMqnLv4ZI6Ppx.json | 8 +- ...ive_than_lockpicks___4lu6hamyxERQzWNa.json | 8 +- .../boxing_times__zsdAyshPMJ7Clyis.json | 8 +- ...bbits_of_appalachia__fYekpImbXPFZgNkz.json | 8 +- ...ometh_the_trickster__78JHpLZz5rQeTMP9.json | 8 +- ..._kazi_vs__manta_man__CYfpl0Gt0KEq1CcJ.json | 8 +- ...s_of_a_housebreaker__ZHve7VSwmsyHRjom.json | 8 +- .../coupon_spectacular__lc4MTpvhDkQ7ApOS.json | 8 +- ...urse_of_the_burned___jPdCfq2T6pELwzbK.json | 8 +- .../deadly_lasers___6rHaK2QtsSPGvSpJ.json | 8 +- ...slaves__demon_sands__hhLOBbowNeo4VSDe.json | 8 +- .../down_home_cookin___5k41CcVoWDkABFcI.json | 8 +- ..._of_de_capitalists___szr8VmfdWra3zwXO.json | 8 +- .../duck_and_cover___ZTVTUHilc84UzoRP.json | 8 +- ..._war_maiden_of_mars__n5iAbo8IerJqOQNR.json | 8 +- .../farming_the_wastes__0GXqsrMeNMoA9iCS.json | 8 +- .../fatherless_cur___vcIgVqypELu1vP9C.json | 8 +- ...istling_in_the_dark__KE1PFFcFheyQriDU.json | 8 +- ...02_urban_camouflage__rV3tvVvTmDGs7E0t.json | 8 +- ...epaint_fundamentals__mPUq6ivdAuHbxor6.json | 8 +- ..._you_re_looking_for__4yO3TrAohgWDMhDI.json | 8 +- ..._05_who_goes_there___2RauaAfTO24MIsP2.json | 8 +- ...board__sudden_death__9W6IRymdpOZXKmHG.json | 8 +- ...p_on_the_communists__ouvM5DNPcc9nqgIw.json | 8 +- ..._camouflage_special__m6XUFT8MYFsgAvyH.json | 8 +- ...ook_better_in_black__lHCsUY3S6twO3Fjb.json | 8 +- ..._through_the_tulips__vAtCC2CaGrGOgnSL.json | 8 +- .../fixin__things__mBOgGCUFastqsi1c.json | 8 +- .../future_of_warfare___jKcPooNmifCreXOn.json | 8 +- ...uture_weapons_today__IRIhIXR0X1PnThvd.json | 8 +- ...and_gamma_radiation__L7d6xppSur7dXyKt.json | 8 +- .../get_off_my_lawn__yqeVKyCZWStLXitm.json | 8 +- ...ant_insects_invade___1bOiFImI3fM9CaIJ.json | 8 +- ...iant_super_weapons___CndyqCypQg50fKrr.json | 8 +- ...to_hunting_commies___116TjNgfBwkNOSF6.json | 8 +- ...ardy_as_a_sasquatch__mbkQ1d1IQjlSE6HG.json | 8 +- ...homesteading_horror__uCmxHbctgoe8jQDo.json | 8 +- ...nting_in_the_wastes__rzLGWCVR5aHjEyFy.json | 8 +- .../i_married_a_robot__usR2XUJr38Er8QCh.json | 8 +- ...f_the_corsair_queen__9UgvihjW0x2I5vn9.json | 8 +- ...t_repellent_special__NyoiFuBl8FN4iRiZ.json | 8 +- ...e_of_the_bat_babies__V8SOn4RCMzgkx4u0.json | 8 +- ...acceptable_overkill__qJ0xswPVJhHeBwLT.json | 8 +- ..._long_best_friends___uizbEBbI5Jl1tjeI.json | 8 +- ...s_for_little_ladies__UvPtfBpiOmAmiKg2.json | 8 +- ..._with_flying_colors__GUbEJnFDx9p0CvbD.json | 8 +- ...n_the_snows_of_lust__S71PQOPJq2vV0pH8.json | 8 +- ...ts_surgical_journal__FQDIJeABc0a1g7Nt.json | 8 +- .../meeting_people__8nJBGtcrUsO2hUDG.json | 8 +- ...master_key_exposed___YVmBhcEYI0eLLDM8.json | 8 +- ...tmare_in_the_garden__9hZXkRhoJIX47mWS.json | 8 +- .../nuke_the_man___xT9LvN0vcacln4pN.json | 8 +- ...k_in_5_seconds_flat__M32bIhaLlqXttW9q.json | 8 +- ..._weapon_of_tomorrow__fYy1RCAJMGPRO9WJ.json | 8 +- ...programmer_s_digest__0QyGlHy565YJcdMI.json | 8 +- ...ise_of_the_mutants___J86ayEuqmagF9OH0.json | 8 +- ...cience_for_toddlers__Xh4PnVNi5xJrCtZr.json | 8 +- .../science_gone_mad___zpcKGtIDvZn8Z1ut.json | 8 +- ...elf_defense_secrets__l04nHOGBarXy6rxt.json | 8 +- ...eet_guns_of_detroit__mT0Wf89P2UGLZ83y.json | 8 +- ...ounded_by_the_dead___0pTA0wlRQUQ2oAHk.json | 8 +- ...ake_aim__army_style__yjknvThwoDmQwU3M.json | 8 +- ...nktown_jerky_vendor__IB9mafYkrD1E7EuV.json | 8 +- ...talk_yourself_sober__YFSFj5moNn7KNnT8.json | 8 +- ...a_squirrel_massacre__h5GN8irnNWKC3xMD.json | 8 +- ...radiation_poisoning__EIzEOJH0iP4JzWnw.json | 8 +- ..._future_of_hunting___DBYRYX03IcO2aTQG.json | 8 +- ...h_of_harper_s_ferry__sJuyumHFWHrT4Kr0.json | 8 +- ...f_the_virgin_eaters__G88aHNSeg4SvaCo9.json | 8 +- ..._russian_s_revenge___iiFcIlhklIMxjaoC.json | 8 +- ...t_doomsday_device____4jcc9O3jIgAhUulK.json | 8 +- ...e_ohio_river_hermit__0WGq8Aaq82V8nViB.json | 8 +- ...e_secretary_charmer__PKilL8to3SDZHUAU.json | 8 +- ...the_starlet_sniper___sNyzZdtR8zQeKE86.json | 8 +- ...ay_s_super_soldiers__od1qgkoqyO2SbhPV.json | 8 +- ...the_pterror_dactyls__IgqLkMbelsAnYC9q.json | 8 +- .../trim_the_fat___ZVFaC4f8Ki48eTdx.json | 8 +- ...true_police_stories__WeOABgbveKblRqPw.json | 8 +- ..._army_goes_to_space__5Y5Dkh9W0XRFfpQV.json | 8 +- ..._the_ux_ron_galaxy___szFJr7G3Z8XuW5rk.json | 8 +- ...aerobics_for_ghouls__hQmjix9JtmveUaBz.json | 8 +- ..._is_plasma__anyway___05H6aksyvOateBtf.json | 8 +- ...at_sorcery_is_this___oR7Yb9XMHc1Yn49v.json | 8 +- ...pable_grog_na_rok____xBhJROt39tupLIhb.json | 8 +- ...ots_rule_the_world___Hb3AdW5QaAHVDlNZ.json | 8 +- ...out_rpg__quickstart__QVmdwFQgCjY85CTc.json | 28 +++++ i18n/en.yaml | 7 ++ system/src/config.mjs | 2 + system/src/documents/FalloutActor.mjs | 112 +++++++++++++++++- system/src/documents/FalloutItem.mjs | 6 - .../migrations/updates/Update_241218_1.mjs | 2 +- system/src/migrations/updates/_module.mjs | 1 + system/src/sheets/FalloutPcSheet.mjs | 9 ++ system/src/system/FalloutChat.mjs | 7 ++ system/src/system/FalloutPerkManager.mjs | 95 +++++++++++++++ system/src/utils/FalloutUtils.mjs | 1 + .../simple-expandable-item.hbs | 9 ++ system/templates/chat/read-magazine.hbs | 15 +++ .../item/books_and_magz/attributes-tab.hbs | 28 ++++- 110 files changed, 795 insertions(+), 296 deletions(-) create mode 100644 system/src/system/FalloutPerkManager.mjs create mode 100644 system/templates/chat/read-magazine.hbs diff --git a/CHANGELOG.md b/CHANGELOG.md index 64eb9b22..e34dba7b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +# v11.15.0 + +#### Enhancements +- [#559] Improvements to Books and Magazines + + * New control added to magazine items in the inventory to "read" a magazine. This automatically rolls and extends the uses remaining if needed for characters with the Comprehension perk. + +--- + # v11.14.2 #### Enhancements diff --git a/data/packs/books_and_magz.db/10_number_1_hits____rock_o_bot_takes_the_nation_by_storm____ECXYCwNy7GKVavV3.json b/data/packs/books_and_magz.db/10_number_1_hits____rock_o_bot_takes_the_nation_by_storm____ECXYCwNy7GKVavV3.json index 92dbd2bc..9a8e36b3 100644 --- a/data/packs/books_and_magz.db/10_number_1_hits____rock_o_bot_takes_the_nation_by_storm____ECXYCwNy7GKVavV3.json +++ b/data/packs/books_and_magz.db/10_number_1_hits____rock_o_bot_takes_the_nation_by_storm____ECXYCwNy7GKVavV3.json @@ -11,14 +11,16 @@ "description": "

An informational magazine covering topics such as rocket science, robotics, laser technology, and other cutting-edge fields of science and technology.

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from once. If you later learn the perk, you may use that benefit once per scene. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.beJfGkUq386Kw4Sj]{10 Number 1 Hits!!! Rock-o-bot Takes the Nation by Storm!!}

", "effect": "

Once, when you inflict a Critical Hit, increase the total damage inflicted by +2

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "Tesla Science Magazine", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/_la_fantoma___9Z4Asa5c915hem9w.json b/data/packs/books_and_magz.db/_la_fantoma___9Z4Asa5c915hem9w.json index ae35aff0..ea455f33 100644 --- a/data/packs/books_and_magz.db/_la_fantoma___9Z4Asa5c915hem9w.json +++ b/data/packs/books_and_magz.db/_la_fantoma___9Z4Asa5c915hem9w.json @@ -11,14 +11,16 @@ "description": "

An issue of a pre-War comic book, detailing the adventures of ¡La Fantoma!, a master of stealth and infiltration.

\n
    \n
  • Perk: When you succeed at a Sneak test to avoid notice, you may spend 1 AP to create a distraction somewhere within Medium range; the character who failed the opposed test to detect you heads towards the distraction you created. If you learn this perk, you may use it once per scene.
  • \n
\n

@UUID[Compendium.fallout.perks.Item.wUoc5IDZQ0ye1TDw]{¡La Fantoma!}

", "effect": "

When you succeed at a Sneak test to avoid notice, you may spend 1 AP to create a distraction somewhere within Medium range; the character who failed the opposed test to detect you heads towards the distraction you created.

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/advice_from_married_men__8uCaW6rs4fwDWJUF.json b/data/packs/books_and_magz.db/advice_from_married_men__8uCaW6rs4fwDWJUF.json index cee6cb22..6abc4f05 100644 --- a/data/packs/books_and_magz.db/advice_from_married_men__8uCaW6rs4fwDWJUF.json +++ b/data/packs/books_and_magz.db/advice_from_married_men__8uCaW6rs4fwDWJUF.json @@ -11,14 +11,16 @@ "description": "

A pre-War magazine series dedicated to lifestyle and relationships, often covering cultural events, health advice, diet tips, relationship advice, and more.

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from for a single scene. If you later learn the perk, you may use that benefit constantly. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.B5AHVLoXVF8buanM]{Advice from Married Men}

", "effect": "

+1 Physical damage resistance to all party members for one scene

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "Live & Love", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/an_experience_to_remember__LATCQmWWljVCwMnt.json b/data/packs/books_and_magz.db/an_experience_to_remember__LATCQmWWljVCwMnt.json index c89b5a3b..a0925c22 100644 --- a/data/packs/books_and_magz.db/an_experience_to_remember__LATCQmWWljVCwMnt.json +++ b/data/packs/books_and_magz.db/an_experience_to_remember__LATCQmWWljVCwMnt.json @@ -11,14 +11,16 @@ "description": "

A pre-War magazine series dedicated to lifestyle and relationships, often covering cultural events, health advice, diet tips, relationship advice, and more.

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from for a single scene. If you later learn the perk, you may use that benefit constantly. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.4iTCNKydcsh3PHwY]{An Experience to Remember}

", "effect": "

Choose one other Magazine perk you have previously used but not learned; that now takes effect

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "Live & Love", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/art_of_the_tomahawk__MsXLDa4RZ0UHMT2J.json b/data/packs/books_and_magz.db/art_of_the_tomahawk__MsXLDa4RZ0UHMT2J.json index e2365194..84a4287a 100644 --- a/data/packs/books_and_magz.db/art_of_the_tomahawk__MsXLDa4RZ0UHMT2J.json +++ b/data/packs/books_and_magz.db/art_of_the_tomahawk__MsXLDa4RZ0UHMT2J.json @@ -11,14 +11,16 @@ "description": "

Thrilling, true stories for rugged men! Backwoodsman is a magazine series containing articles and stories about outdoor survival, for people who like to talk about surviving in the wild.

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from once. If you later learn the perk, you may use that benefit once per scene. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.I7DFjAhnEzDZmdL7]{Art of the Tomahawk}

", "effect": "

Reduce difficulty of a test to resist catching a disease by 1 (min. of 0)

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "Backwoodsman", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/attack_of_the_fishmen___mT6qkeV6xTG1pnex.json b/data/packs/books_and_magz.db/attack_of_the_fishmen___mT6qkeV6xTG1pnex.json index 01dc58a8..e105ea31 100644 --- a/data/packs/books_and_magz.db/attack_of_the_fishmen___mT6qkeV6xTG1pnex.json +++ b/data/packs/books_and_magz.db/attack_of_the_fishmen___mT6qkeV6xTG1pnex.json @@ -11,14 +11,16 @@ "description": "

A magazine containing thrilling short stories of daring adventure!

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, granting bonus damage or bonus damage resistance against a single foe or
    type of attack. This lasts only for a single attack (made or received, respectively), unless the perk is learned, in which case it applies to all attacks. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.9uBD2OLMA2YtE3ST]{Attack of the Fishmen!}

", "effect": "

+1 @fos[DC] on attacks vs mirelurk

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "Astoundingly Awesome Tales", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/attack_of_the_metal_men___13RpvXhUn7TdKjEA.json b/data/packs/books_and_magz.db/attack_of_the_metal_men___13RpvXhUn7TdKjEA.json index e8ab688e..e3a38212 100644 --- a/data/packs/books_and_magz.db/attack_of_the_metal_men___13RpvXhUn7TdKjEA.json +++ b/data/packs/books_and_magz.db/attack_of_the_metal_men___13RpvXhUn7TdKjEA.json @@ -11,14 +11,16 @@ "description": "

A magazine containing thrilling short stories of daring adventure!

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, granting bonus damage or bonus damage resistance against a single foe or
    type of attack. This lasts only for a single attack (made or received, respectively), unless the perk is learned, in which case it applies to all attacks. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.NNhKS3XzGuAnXNmq]{Attack of the Metal Men!}

", "effect": "

+2 to Physical and Energy damage resistances vs Robots

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "Astoundingly Awesome Tales", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/avoid_those_pesky_gun_laws___qcEZIWmadDggAT8K.json b/data/packs/books_and_magz.db/avoid_those_pesky_gun_laws___qcEZIWmadDggAT8K.json index 62310350..5180745b 100644 --- a/data/packs/books_and_magz.db/avoid_those_pesky_gun_laws___qcEZIWmadDggAT8K.json +++ b/data/packs/books_and_magz.db/avoid_those_pesky_gun_laws___qcEZIWmadDggAT8K.json @@ -11,14 +11,16 @@ "description": "

A magazine series catering to weapons enthusiasts, with articles dedicated to hunting, weapons, gun law, and the portrayal of practical use of firearms.

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from once. If you later learn the perk, you may use that benefit once per scene. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.Zl8Mt7ll7IqbgFq2]{Avoid Those Pesky Gun Laws!}

", "effect": "

When you salvage a weapon, gain 2 AP which may only be spent to salvage additional units of materials

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "Guns and Bullets", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/bear_proofing_your_campsite__AJEifHfxya4EViFy.json b/data/packs/books_and_magz.db/bear_proofing_your_campsite__AJEifHfxya4EViFy.json index 6153a36e..9e7c2d4d 100644 --- a/data/packs/books_and_magz.db/bear_proofing_your_campsite__AJEifHfxya4EViFy.json +++ b/data/packs/books_and_magz.db/bear_proofing_your_campsite__AJEifHfxya4EViFy.json @@ -11,14 +11,16 @@ "description": "

A magazine series catering to weapons enthusiasts, with articles dedicated to hunting, weapons, gun law, and the portrayal of practical use of firearms.

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from once. If you later learn the perk, you may use that benefit once per scene. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.5tgqF87DaXrrz59x]{Bear-Proofing your Campsite}

", "effect": "

One attack against Yao Guai inflicts +3CD damage

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "Guns and Bullets", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/beware_the_man_handler__hCRQEWSkpgvFluXe.json b/data/packs/books_and_magz.db/beware_the_man_handler__hCRQEWSkpgvFluXe.json index 344576e4..669decc4 100644 --- a/data/packs/books_and_magz.db/beware_the_man_handler__hCRQEWSkpgvFluXe.json +++ b/data/packs/books_and_magz.db/beware_the_man_handler__hCRQEWSkpgvFluXe.json @@ -11,14 +11,16 @@ "description": "

A pre-War magazine series dedicated to lifestyle and relationships, often covering cultural events, health advice, diet tips, relationship advice, and more.

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from for a single scene. If you later learn the perk, you may use that benefit constantly. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.BvqY6Zk4bfPSpIj7]{Beware the Man Handler}

", "effect": "

The group AP pool may contain 1 AP more than normal for one scene

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "Live & Love", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/blood_on_the_harp__qx4yMqnLv4ZI6Ppx.json b/data/packs/books_and_magz.db/blood_on_the_harp__qx4yMqnLv4ZI6Ppx.json index 54ca63b2..0a860c28 100644 --- a/data/packs/books_and_magz.db/blood_on_the_harp__qx4yMqnLv4ZI6Ppx.json +++ b/data/packs/books_and_magz.db/blood_on_the_harp__qx4yMqnLv4ZI6Ppx.json @@ -11,14 +11,16 @@ "description": "

A series of comic books published by Hubris Comics before the Great War. The comics depict the actionpacked adventures of the title character in a prehistoric world.

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from once. If you later learn the perk, you may use that benefit once per scene. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.56snTc6VYoTJqCMi]{Blood on the Harp}

", "effect": "

One successful melee attack you make inflicts +2CD damage

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "Grognak the Barbarian", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/bobby_pins__more_effective_than_lockpicks___4lu6hamyxERQzWNa.json b/data/packs/books_and_magz.db/bobby_pins__more_effective_than_lockpicks___4lu6hamyxERQzWNa.json index 92f1674c..db2b5701 100644 --- a/data/packs/books_and_magz.db/bobby_pins__more_effective_than_lockpicks___4lu6hamyxERQzWNa.json +++ b/data/packs/books_and_magz.db/bobby_pins__more_effective_than_lockpicks___4lu6hamyxERQzWNa.json @@ -11,14 +11,16 @@ "description": "

Tumblers Today is a pre-War magazine containing information about the clandestine art of lockpicking and the latest in mechanical locks found in safes, footlockers, and doors. The cover art for the magazine depicts imagery from each issue, highlighting the topic and technique of the issue.

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from once. If you later learn the perk, you may use that benefit once per scene. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.Q6MhXT1qvcpX6fxU]{Bobby Pins: More Effective Than Lockpicks?}

", "effect": "

When using a Bobby Pin, reduce the difficulty of a Lockpicking test by a further 1 (minimum 0)

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "Tumblers Today", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/boxing_times__zsdAyshPMJ7Clyis.json b/data/packs/books_and_magz.db/boxing_times__zsdAyshPMJ7Clyis.json index c8574fb2..718577c3 100644 --- a/data/packs/books_and_magz.db/boxing_times__zsdAyshPMJ7Clyis.json +++ b/data/packs/books_and_magz.db/boxing_times__zsdAyshPMJ7Clyis.json @@ -11,14 +11,16 @@ "description": "

A pre-War magazine aimed at fans of boxing, often containing features on noteworthy or up-and-coming boxers, discussions of technique and equipment, and in-depth reporting on the sport.

\n
    \n
  • Perk: Once, when you succeed at an Unarmed attack, if you spend any AP to increase the damage you dealt, you may add the Stun damage effect to your attack. If you later learn this perk, you may use this on any successful Unarmed attack.
  • \n
\n

@UUID[Compendium.fallout.perks.Item.9rp4u6tgFbJk9GRT]{Boxing Times}

", "effect": "

Once, when you succeed at an Unarmed attack, if you spend any AP to increase the damage you dealt, you may add the Stun damage effect to your attack.

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/carnivorous_rabbits_of_appalachia__fYekpImbXPFZgNkz.json b/data/packs/books_and_magz.db/carnivorous_rabbits_of_appalachia__fYekpImbXPFZgNkz.json index b04a2e9a..5f6cf006 100644 --- a/data/packs/books_and_magz.db/carnivorous_rabbits_of_appalachia__fYekpImbXPFZgNkz.json +++ b/data/packs/books_and_magz.db/carnivorous_rabbits_of_appalachia__fYekpImbXPFZgNkz.json @@ -11,14 +11,16 @@ "description": "

Thrilling, true stories for rugged men! Backwoodsman is a magazine series containing articles and stories about outdoor survival, for people who like to talk about surviving in the wild.

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from once. If you later learn the perk, you may use that benefit once per scene. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.wwIthL6FW1dIq1MU]{Carnivorous Rabbits of Appalachia}

", "effect": "

Add +2CD damage to an attack against a Mammal or Lizard

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "Backwoodsman", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/cometh_the_trickster__78JHpLZz5rQeTMP9.json b/data/packs/books_and_magz.db/cometh_the_trickster__78JHpLZz5rQeTMP9.json index eb2768c5..32921b4e 100644 --- a/data/packs/books_and_magz.db/cometh_the_trickster__78JHpLZz5rQeTMP9.json +++ b/data/packs/books_and_magz.db/cometh_the_trickster__78JHpLZz5rQeTMP9.json @@ -11,14 +11,16 @@ "description": "

A series of comic books published by Hubris Comics before the Great War. The comics depict the actionpacked adventures of the title character in a prehistoric world.

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from once. If you later learn the perk, you may use that benefit once per scene. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.MKt5lgPvnlrnMV9S]{Cometh the Trickster}

", "effect": "

Add +1 to the difficulty of another character’s skill test to detect you

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "Grognak the Barbarian", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/commie_kazi_vs__manta_man__CYfpl0Gt0KEq1CcJ.json b/data/packs/books_and_magz.db/commie_kazi_vs__manta_man__CYfpl0Gt0KEq1CcJ.json index 853b3e1e..fa576abe 100644 --- a/data/packs/books_and_magz.db/commie_kazi_vs__manta_man__CYfpl0Gt0KEq1CcJ.json +++ b/data/packs/books_and_magz.db/commie_kazi_vs__manta_man__CYfpl0Gt0KEq1CcJ.json @@ -11,14 +11,16 @@ "description": "

Unstoppables is a comic book published by Hubris Comics prior to the Great War. The series follows an ensemble cast of characters from the Hubris Comics roster, including the Silver Shroud, Mistress of Mystery, The Inspector, Manta Man and Grognak the Barbarian. Together, they form the titular Unstoppables. The cover art for the magazine depicts imagery highlighting the heroes, villains, and the adventure of each issue.

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, allowing you to spend Luck points to avoid a single instance of damage, which you may benefit from once. If you later learn the perk, you may use that benefit as often as you have Luck points to spend on it. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.qItV5QGk0sN0md6p]{Commie-Kazi vs. Manta Man}

", "effect": "

Spend 1 Luck point to avoid all damage from a Blast weapon

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "Unstopables", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/confessions_of_a_housebreaker__ZHve7VSwmsyHRjom.json b/data/packs/books_and_magz.db/confessions_of_a_housebreaker__ZHve7VSwmsyHRjom.json index 8ff17807..0e46a335 100644 --- a/data/packs/books_and_magz.db/confessions_of_a_housebreaker__ZHve7VSwmsyHRjom.json +++ b/data/packs/books_and_magz.db/confessions_of_a_housebreaker__ZHve7VSwmsyHRjom.json @@ -11,14 +11,16 @@ "description": "

Tumblers Today is a pre-War magazine containing information about the clandestine art of lockpicking and the latest in mechanical locks found in safes, footlockers, and doors. The cover art for the magazine depicts imagery from each issue, highlighting the topic and technique of the issue.

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from once. If you later learn the perk, you may use that benefit once per scene. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.PCA8zoHuaLjnsF7g]{Confessions of a Housebreaker}

", "effect": "

When scavenging or looting, spend 1 Luck to find 2+2CD Bobby Pins

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "Tumblers Today", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/coupon_spectacular__lc4MTpvhDkQ7ApOS.json b/data/packs/books_and_magz.db/coupon_spectacular__lc4MTpvhDkQ7ApOS.json index 1c6c3c56..03bbc5bf 100644 --- a/data/packs/books_and_magz.db/coupon_spectacular__lc4MTpvhDkQ7ApOS.json +++ b/data/packs/books_and_magz.db/coupon_spectacular__lc4MTpvhDkQ7ApOS.json @@ -11,14 +11,16 @@ "description": "

The Wasteland Survival Guide is another post-War series of instructional magazines, written and illustrated with crude pen drawings. It has been copied and distributed across the wastelands but can most commonly be found in settlements near to the Capital Wasteland.

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from once. If you later learn the perk, you may use that benefit once per scene. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.grJRadyKsz8Eu0cJ]{Coupon Spectacular}

", "effect": "

When buying food or drink items, the price is shifted an additional 10% in your favor

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "Wasteland Survival Guide", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/curse_of_the_burned___jPdCfq2T6pELwzbK.json b/data/packs/books_and_magz.db/curse_of_the_burned___jPdCfq2T6pELwzbK.json index 038d1732..82422bca 100644 --- a/data/packs/books_and_magz.db/curse_of_the_burned___jPdCfq2T6pELwzbK.json +++ b/data/packs/books_and_magz.db/curse_of_the_burned___jPdCfq2T6pELwzbK.json @@ -11,14 +11,16 @@ "description": "

A magazine containing thrilling short stories of daring adventure!

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, granting bonus damage or bonus damage resistance against a single foe or
    type of attack. This lasts only for a single attack (made or received, respectively), unless the perk is learned, in which case it applies to all attacks. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.Cx5ysG2Z0XPE6DZn]{Curse of the Burned!}

", "effect": "

+1 @fos[DC] on attacks vs Ghouls

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "Astoundingly Awesome Tales", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/deadly_lasers___6rHaK2QtsSPGvSpJ.json b/data/packs/books_and_magz.db/deadly_lasers___6rHaK2QtsSPGvSpJ.json index e2f8bb24..243f7b28 100644 --- a/data/packs/books_and_magz.db/deadly_lasers___6rHaK2QtsSPGvSpJ.json +++ b/data/packs/books_and_magz.db/deadly_lasers___6rHaK2QtsSPGvSpJ.json @@ -11,14 +11,16 @@ "description": "

A magazine containing thrilling short stories of daring adventure!

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, granting bonus damage or bonus damage resistance against a single foe or
    type of attack. This lasts only for a single attack (made or received, respectively), unless the perk is learned, in which case it applies to all attacks. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.YeQmWe6K2QMAEaep]{Deadly Lasers!}

", "effect": "

+1CD on attacks with Energy weapons

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "Astoundingly Awesome Tales", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/demon_slaves__demon_sands__hhLOBbowNeo4VSDe.json b/data/packs/books_and_magz.db/demon_slaves__demon_sands__hhLOBbowNeo4VSDe.json index d25f196c..80805b1f 100644 --- a/data/packs/books_and_magz.db/demon_slaves__demon_sands__hhLOBbowNeo4VSDe.json +++ b/data/packs/books_and_magz.db/demon_slaves__demon_sands__hhLOBbowNeo4VSDe.json @@ -11,14 +11,16 @@ "description": "

A series of comic books published by Hubris Comics before the Great War. The comics depict the actionpacked adventures of the title character in a prehistoric world.

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from once. If you later learn the perk, you may use that benefit once per scene. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.FHMZ8ohO5uegkBHL]{Demon Slaves, Demon Sands}

", "effect": "

One attack against Ghouls inflicts +2CD damage

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "Grognak the Barbarian", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/down_home_cookin___5k41CcVoWDkABFcI.json b/data/packs/books_and_magz.db/down_home_cookin___5k41CcVoWDkABFcI.json index 982d9515..5e098d7c 100644 --- a/data/packs/books_and_magz.db/down_home_cookin___5k41CcVoWDkABFcI.json +++ b/data/packs/books_and_magz.db/down_home_cookin___5k41CcVoWDkABFcI.json @@ -11,14 +11,16 @@ "description": "

Thrilling, true stories for rugged men! Backwoodsman is a magazine series containing articles and stories about outdoor survival, for people who like to talk about surviving in the wild.

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from once. If you later learn the perk, you may use that benefit once per scene. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.1aIYFwFQGic2zHjK]{Down Home Cookin'}

", "effect": "

Add +2CD damage to a Thrown weapon attack (other than an Explosive)

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "Backwoodsman", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/dr__brainwash_and_his_army_of_de_capitalists___szr8VmfdWra3zwXO.json b/data/packs/books_and_magz.db/dr__brainwash_and_his_army_of_de_capitalists___szr8VmfdWra3zwXO.json index fceb388f..d99fa9c6 100644 --- a/data/packs/books_and_magz.db/dr__brainwash_and_his_army_of_de_capitalists___szr8VmfdWra3zwXO.json +++ b/data/packs/books_and_magz.db/dr__brainwash_and_his_army_of_de_capitalists___szr8VmfdWra3zwXO.json @@ -11,14 +11,16 @@ "description": "

Unstoppables is a comic book published by Hubris Comics prior to the Great War. The series follows an ensemble cast of characters from the Hubris Comics roster, including the Silver Shroud, Mistress of Mystery, The Inspector, Manta Man and Grognak the Barbarian. Together, they form the titular Unstoppables. The cover art for the magazine depicts imagery highlighting the heroes, villains, and the adventure of each issue.

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, allowing you to spend Luck points to avoid a single instance of damage, which you may benefit from once. If you later learn the perk, you may use that benefit as often as you have Luck points to spend on it. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.35g6izwF0LhTPGMO]{Dr. Brainwash and His Army of De-Capitalists!}

", "effect": "

Spend 3 Luck points to avoid all damage from a single attack or hazard

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "Unstopables", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/duck_and_cover___ZTVTUHilc84UzoRP.json b/data/packs/books_and_magz.db/duck_and_cover___ZTVTUHilc84UzoRP.json index 2d4f2833..731aa46a 100644 --- a/data/packs/books_and_magz.db/duck_and_cover___ZTVTUHilc84UzoRP.json +++ b/data/packs/books_and_magz.db/duck_and_cover___ZTVTUHilc84UzoRP.json @@ -11,14 +11,16 @@ "description": "

A pre-War book about the manufacture, use, and disarming of explosives.

\n
    \n
  • Perk: Once, when you are affected by a Blast weapon, you may choose to fall prone (p.25). If you do so, you add +3 to all damage resistances against the damage caused by that Blast. If you later learn this perk, you may use whenever you are affected by a Blast weapon by spending 1 AP.
  • \n
\n

@UUID[Compendium.fallout.perks.Item.gD1wycvvp1ivtXdY]{Duck and Cover!}

", "effect": "

Once, when you are affected by a Blast weapon, you may choose to fall prone (p.25). If you do so, you add +3 to all damage resistances against the damage caused by that Blast.

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/enter_maula__war_maiden_of_mars__n5iAbo8IerJqOQNR.json b/data/packs/books_and_magz.db/enter_maula__war_maiden_of_mars__n5iAbo8IerJqOQNR.json index 6a5dd861..0b7f9faf 100644 --- a/data/packs/books_and_magz.db/enter_maula__war_maiden_of_mars__n5iAbo8IerJqOQNR.json +++ b/data/packs/books_and_magz.db/enter_maula__war_maiden_of_mars__n5iAbo8IerJqOQNR.json @@ -11,14 +11,16 @@ "description": "

A series of comic books published by Hubris Comics before the Great War. The comics depict the actionpacked adventures of the title character in a prehistoric world.

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from once. If you later learn the perk, you may use that benefit once per scene. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.OIVq6l91X8x6r6zi]{Enter Maula: War Maiden of Mars}

", "effect": "

When you make a melee attack with a Two-Handed melee weapon, gain the Piercing 1 damage effect (or +1 to any existing Piercing effect)

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "Grognak the Barbarian", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/farming_the_wastes__0GXqsrMeNMoA9iCS.json b/data/packs/books_and_magz.db/farming_the_wastes__0GXqsrMeNMoA9iCS.json index f2e19dd1..0a30e58c 100644 --- a/data/packs/books_and_magz.db/farming_the_wastes__0GXqsrMeNMoA9iCS.json +++ b/data/packs/books_and_magz.db/farming_the_wastes__0GXqsrMeNMoA9iCS.json @@ -11,14 +11,16 @@ "description": "

The Wasteland Survival Guide is another post-War series of instructional magazines, written and illustrated with crude pen drawings. It has been copied and distributed across the wastelands but can most commonly be found in settlements near to the Capital Wasteland.

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from once. If you later learn the perk, you may use that benefit once per scene. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.TmIh9ecBP1YvDwdF]{Farming the Wastes}

", "effect": "

Consuming a fruit or vegetable food item heals twice as many HP

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "Wasteland Survival Guide", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/fatherless_cur___vcIgVqypELu1vP9C.json b/data/packs/books_and_magz.db/fatherless_cur___vcIgVqypELu1vP9C.json index 17ff1104..829ecfc6 100644 --- a/data/packs/books_and_magz.db/fatherless_cur___vcIgVqypELu1vP9C.json +++ b/data/packs/books_and_magz.db/fatherless_cur___vcIgVqypELu1vP9C.json @@ -11,14 +11,16 @@ "description": "

A series of comic books published by Hubris Comics before the Great War. The comics depict the actionpacked adventures of the title character in a prehistoric world.

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from once. If you later learn the perk, you may use that benefit once per scene. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.sWkveVPjKk45QqwF]{Fatherless Cur!}

", "effect": "

Ignore one complication on a melee attack

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "Grognak the Barbarian", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/fh_5_01_whistling_in_the_dark__KE1PFFcFheyQriDU.json b/data/packs/books_and_magz.db/fh_5_01_whistling_in_the_dark__KE1PFFcFheyQriDU.json index 9b1888de..c20d6e17 100644 --- a/data/packs/books_and_magz.db/fh_5_01_whistling_in_the_dark__KE1PFFcFheyQriDU.json +++ b/data/packs/books_and_magz.db/fh_5_01_whistling_in_the_dark__KE1PFFcFheyQriDU.json @@ -11,14 +11,16 @@ "description": "

The U.S. Covert Operations Manual is a training handbook produced by the Department of the Army to train its personnel in the art of subterfuge. The manuals were not intended for public circulation and were marked “Authorized Eyes Only.” This hasn’t stopped them being found, read, and scattered across the wastelands.

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from once. If you later learn the perk, you may use that benefit once per scene. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.cPjofC2nJegzoPXS]{FH 5-01 Whistling in the Dark}

", "effect": "

If you are detected while sneaking, you add +2 to Physical damage resistance against the first attack you receive after being detected

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "U.S. Covert Operations Manual", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/fh_5_02_urban_camouflage__rV3tvVvTmDGs7E0t.json b/data/packs/books_and_magz.db/fh_5_02_urban_camouflage__rV3tvVvTmDGs7E0t.json index 548ac4ac..e6affff4 100644 --- a/data/packs/books_and_magz.db/fh_5_02_urban_camouflage__rV3tvVvTmDGs7E0t.json +++ b/data/packs/books_and_magz.db/fh_5_02_urban_camouflage__rV3tvVvTmDGs7E0t.json @@ -11,14 +11,16 @@ "description": "

The U.S. Covert Operations Manual is a training handbook produced by the Department of the Army to train its personnel in the art of subterfuge. The manuals were not intended for public circulation and were marked “Authorized Eyes Only.” This hasn’t stopped them being found, read, and scattered across the wastelands.

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from once. If you later learn the perk, you may use that benefit once per scene. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.AVB1RZC2w05dkUbZ]{FH 5-02 Urban Camouflage}

", "effect": "

Enemies suffer +1 difficulty on tests to detect you; this does not stack with any difficulty increases for poor light or darkness

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "U.S. Covert Operations Manual", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/fh_5_03_facepaint_fundamentals__mPUq6ivdAuHbxor6.json b/data/packs/books_and_magz.db/fh_5_03_facepaint_fundamentals__mPUq6ivdAuHbxor6.json index f206f0a6..d98335d1 100644 --- a/data/packs/books_and_magz.db/fh_5_03_facepaint_fundamentals__mPUq6ivdAuHbxor6.json +++ b/data/packs/books_and_magz.db/fh_5_03_facepaint_fundamentals__mPUq6ivdAuHbxor6.json @@ -11,14 +11,16 @@ "description": "

The U.S. Covert Operations Manual is a training handbook produced by the Department of the Army to train its personnel in the art of subterfuge. The manuals were not intended for public circulation and were marked “Authorized Eyes Only.” This hasn’t stopped them being found, read, and scattered across the wastelands.

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from once. If you later learn the perk, you may use that benefit once per scene. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.vYiPt2jg7x1f0NTl]{FH 5-03 Facepaint Fundamentals}

", "effect": "

+1 to all damage resistances against attacks from Character NPCs

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "U.S. Covert Operations Manual", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/fh_5_04_not_the_soldiers_you_re_looking_for__4yO3TrAohgWDMhDI.json b/data/packs/books_and_magz.db/fh_5_04_not_the_soldiers_you_re_looking_for__4yO3TrAohgWDMhDI.json index 88eddd93..612e3fea 100644 --- a/data/packs/books_and_magz.db/fh_5_04_not_the_soldiers_you_re_looking_for__4yO3TrAohgWDMhDI.json +++ b/data/packs/books_and_magz.db/fh_5_04_not_the_soldiers_you_re_looking_for__4yO3TrAohgWDMhDI.json @@ -11,14 +11,16 @@ "description": "

The U.S. Covert Operations Manual is a training handbook produced by the Department of the Army to train its personnel in the art of subterfuge. The manuals were not intended for public circulation and were marked “Authorized Eyes Only.” This hasn’t stopped them being found, read, and scattered across the wastelands.

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from once. If you later learn the perk, you may use that benefit once per scene. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.g6qVETrGj3ide6hr]{FH 5-04 Not the Soldiers You’re Looking For}

", "effect": "

+1CD damage inflicted by attacks against Character NPCs

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "U.S. Covert Operations Manual", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/fh_5_05_who_goes_there___2RauaAfTO24MIsP2.json b/data/packs/books_and_magz.db/fh_5_05_who_goes_there___2RauaAfTO24MIsP2.json index 3ea3bab5..d09189d7 100644 --- a/data/packs/books_and_magz.db/fh_5_05_who_goes_there___2RauaAfTO24MIsP2.json +++ b/data/packs/books_and_magz.db/fh_5_05_who_goes_there___2RauaAfTO24MIsP2.json @@ -11,14 +11,16 @@ "description": "

The U.S. Covert Operations Manual is a training handbook produced by the Department of the Army to train its personnel in the art of subterfuge. The manuals were not intended for public circulation and were marked “Authorized Eyes Only.” This hasn’t stopped them being found, read, and scattered across the wastelands.

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from once. If you later learn the perk, you may use that benefit once per scene. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.lZ0REnexDQeH2cmK]{FH 5-05 Who Goes There?}

", "effect": "

When you spend a Luck point to re-roll a d20 on a PER test, instead count that die as if it had rolled a 1

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "U.S. Covert Operations Manual", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/fh_5_06_squeaky_floorboard__sudden_death__9W6IRymdpOZXKmHG.json b/data/packs/books_and_magz.db/fh_5_06_squeaky_floorboard__sudden_death__9W6IRymdpOZXKmHG.json index fddb2be4..cbb3ee6f 100644 --- a/data/packs/books_and_magz.db/fh_5_06_squeaky_floorboard__sudden_death__9W6IRymdpOZXKmHG.json +++ b/data/packs/books_and_magz.db/fh_5_06_squeaky_floorboard__sudden_death__9W6IRymdpOZXKmHG.json @@ -11,14 +11,16 @@ "description": "

The U.S. Covert Operations Manual is a training handbook produced by the Department of the Army to train its personnel in the art of subterfuge. The manuals were not intended for public circulation and were marked “Authorized Eyes Only.” This hasn’t stopped them being found, read, and scattered across the wastelands.

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from once. If you later learn the perk, you may use that benefit once per scene. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.DHdPahzQ9HMZ0FXb]{FH 5-06 Squeaky Floorboard, Sudden Death}

", "effect": "

Once, when you suffer one or more Complications on a Sneak test, ignore the complications

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "U.S. Covert Operations Manual", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/fh_5_07_getting_the_drop_on_the_communists__ouvM5DNPcc9nqgIw.json b/data/packs/books_and_magz.db/fh_5_07_getting_the_drop_on_the_communists__ouvM5DNPcc9nqgIw.json index c7a66dc9..f904cf8e 100644 --- a/data/packs/books_and_magz.db/fh_5_07_getting_the_drop_on_the_communists__ouvM5DNPcc9nqgIw.json +++ b/data/packs/books_and_magz.db/fh_5_07_getting_the_drop_on_the_communists__ouvM5DNPcc9nqgIw.json @@ -11,14 +11,16 @@ "description": "

The U.S. Covert Operations Manual is a training handbook produced by the Department of the Army to train its personnel in the art of subterfuge. The manuals were not intended for public circulation and were marked “Authorized Eyes Only.” This hasn’t stopped them being found, read, and scattered across the wastelands.

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from once. If you later learn the perk, you may use that benefit once per scene. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.5rxzpSKhciVgbmzP]{FH 5-07 Getting the Drop on the Communists}

", "effect": "

Once, when an enemy aims before making an attack against you, you may cause them to lose the benefits of aiming

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "U.S. Covert Operations Manual", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/fh_5_08_bushes__boxes__and_beehives__camouflage_special__m6XUFT8MYFsgAvyH.json b/data/packs/books_and_magz.db/fh_5_08_bushes__boxes__and_beehives__camouflage_special__m6XUFT8MYFsgAvyH.json index 96b28003..5095842c 100644 --- a/data/packs/books_and_magz.db/fh_5_08_bushes__boxes__and_beehives__camouflage_special__m6XUFT8MYFsgAvyH.json +++ b/data/packs/books_and_magz.db/fh_5_08_bushes__boxes__and_beehives__camouflage_special__m6XUFT8MYFsgAvyH.json @@ -11,14 +11,16 @@ "description": "

The U.S. Covert Operations Manual is a training handbook produced by the Department of the Army to train its personnel in the art of subterfuge. The manuals were not intended for public circulation and were marked “Authorized Eyes Only.” This hasn’t stopped them being found, read, and scattered across the wastelands.

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from once. If you later learn the perk, you may use that benefit once per scene. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.l9jhloiw4Sylv6Y3]{FH 5-08 Bushes, Boxes, and Beehives: Camouflage Special}

", "effect": "

+2CD damage inflicted by an unarmed attack or an attack made with a knife

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "U.S. Covert Operations Manual", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/fh_5_09_look_better_in_black__lHCsUY3S6twO3Fjb.json b/data/packs/books_and_magz.db/fh_5_09_look_better_in_black__lHCsUY3S6twO3Fjb.json index 4a3e8b5d..8f380910 100644 --- a/data/packs/books_and_magz.db/fh_5_09_look_better_in_black__lHCsUY3S6twO3Fjb.json +++ b/data/packs/books_and_magz.db/fh_5_09_look_better_in_black__lHCsUY3S6twO3Fjb.json @@ -11,14 +11,16 @@ "description": "

The U.S. Covert Operations Manual is a training handbook produced by the Department of the Army to train its personnel in the art of subterfuge. The manuals were not intended for public circulation and were marked “Authorized Eyes Only.” This hasn’t stopped them being found, read, and scattered across the wastelands.

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from once. If you later learn the perk, you may use that benefit once per scene. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.nWVbU3dqMxeoxPoT]{FH 5-09 Look Better in Black}

", "effect": "

Once, when using a Stealth Boy, it lasts for one additional turn

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "U.S. Covert Operations Manual", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/fh_5_10_tiptoe_through_the_tulips__vAtCC2CaGrGOgnSL.json b/data/packs/books_and_magz.db/fh_5_10_tiptoe_through_the_tulips__vAtCC2CaGrGOgnSL.json index 1bef68bc..3a23ca03 100644 --- a/data/packs/books_and_magz.db/fh_5_10_tiptoe_through_the_tulips__vAtCC2CaGrGOgnSL.json +++ b/data/packs/books_and_magz.db/fh_5_10_tiptoe_through_the_tulips__vAtCC2CaGrGOgnSL.json @@ -11,14 +11,16 @@ "description": "

The U.S. Covert Operations Manual is a training handbook produced by the Department of the Army to train its personnel in the art of subterfuge. The manuals were not intended for public circulation and were marked “Authorized Eyes Only.” This hasn’t stopped them being found, read, and scattered across the wastelands.

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from once. If you later learn the perk, you may use that benefit once per scene. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.xBewaCbKbQO5BQKp]{FH 5-10 Tiptoe Through the Tulips}

", "effect": "

When you spend a Luck point to re-roll a d20 on an AGI test, instead count that die as if it had rolled a 1

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "U.S. Covert Operations Manual", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/fixin__things__mBOgGCUFastqsi1c.json b/data/packs/books_and_magz.db/fixin__things__mBOgGCUFastqsi1c.json index c480f1e8..caac9646 100644 --- a/data/packs/books_and_magz.db/fixin__things__mBOgGCUFastqsi1c.json +++ b/data/packs/books_and_magz.db/fixin__things__mBOgGCUFastqsi1c.json @@ -11,14 +11,16 @@ "description": "

A magazine for those dedicated to fixing things themselves, each issue contains a wealth of information on how to mend and repair a variety of objects and materials, reviews of the best tools to use, and examples of repairs sent in by readers.

\n
    \n
  • Perk: Once, when you attempt to repair an item, halve the amounts of the materials needed to complete the repair (round up). If you later learn this perk, you may use this whenever you attempt repairs.
  • \n
\n

@UUID[Compendium.fallout.perks.Item.7gsRBEPt328MaEyI]{Fixin' Things}

", "effect": "

Once, when you attempt to repair an item, halve the amounts of the materials needed to complete the repair (round up).

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/future_of_warfare___jKcPooNmifCreXOn.json b/data/packs/books_and_magz.db/future_of_warfare___jKcPooNmifCreXOn.json index da752a20..ee4e95a8 100644 --- a/data/packs/books_and_magz.db/future_of_warfare___jKcPooNmifCreXOn.json +++ b/data/packs/books_and_magz.db/future_of_warfare___jKcPooNmifCreXOn.json @@ -11,14 +11,16 @@ "description": "

An informational magazine covering topics such as rocket science, robotics, laser technology, and other cutting-edge fields of science and technology.

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from once. If you later learn the perk, you may use that benefit once per scene. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.PBp0DOgO6fmob9LU]{Future of Warfare?}

", "effect": "

On a single attack with a Big Gun, you inflict a Critical Hit if you inflict 3 or more damage after damage resistance (rather than the normal 5 or more damage)

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "Tesla Science Magazine", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/future_weapons_today__IRIhIXR0X1PnThvd.json b/data/packs/books_and_magz.db/future_weapons_today__IRIhIXR0X1PnThvd.json index 2bba9bdb..4f2fa8f2 100644 --- a/data/packs/books_and_magz.db/future_weapons_today__IRIhIXR0X1PnThvd.json +++ b/data/packs/books_and_magz.db/future_weapons_today__IRIhIXR0X1PnThvd.json @@ -11,14 +11,16 @@ "description": "

A magazine for enthusiasts of energy weaponry, featuring articles on new technologies, reviews of new weapons, and true stories about energy weapons in action.

\n
    \n
  • Perk: Once, when you make an attack with an Energy Weapon, you may overcharge it. Increase the damage by +2CD for that attack. The weapon cannot be used to make an attack in the turn after an overcharged attack as it cools down. If you later learn this perk, you may overcharge an Energy Weapon once per scene.
  • \n
\n

@UUID[Compendium.fallout.perks.Item.LJXpGjoI1HYU6Heb]{Future Weapons Today}

", "effect": "

Once, when you make an attack with an Energy Weapon, you may overcharge it. Increase the damage by +2CD for that attack. The weapon cannot be used to make an attack in the turn after an overcharged attack as it cools down.

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/geckos_and_gamma_radiation__L7d6xppSur7dXyKt.json b/data/packs/books_and_magz.db/geckos_and_gamma_radiation__L7d6xppSur7dXyKt.json index 565c808b..7b8f7e7e 100644 --- a/data/packs/books_and_magz.db/geckos_and_gamma_radiation__L7d6xppSur7dXyKt.json +++ b/data/packs/books_and_magz.db/geckos_and_gamma_radiation__L7d6xppSur7dXyKt.json @@ -11,14 +11,16 @@ "description": "

An informational magazine covering topics such as rocket science, robotics, laser technology, and other cutting-edge fields of science and technology.

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from once. If you later learn the perk, you may use that benefit once per scene. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.kYMZ1knDNl0hLeI8]{Geckos and Gamma Radiation}

", "effect": "

+2CD damage inflicted on one attack against a Mutated creature

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "Tesla Science Magazine", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/get_off_my_lawn__yqeVKyCZWStLXitm.json b/data/packs/books_and_magz.db/get_off_my_lawn__yqeVKyCZWStLXitm.json index a48dd8d6..55d36e91 100644 --- a/data/packs/books_and_magz.db/get_off_my_lawn__yqeVKyCZWStLXitm.json +++ b/data/packs/books_and_magz.db/get_off_my_lawn__yqeVKyCZWStLXitm.json @@ -11,14 +11,16 @@ "description": "

Thrilling, true stories for rugged men! Backwoodsman is a magazine series containing articles and stories about outdoor survival, for people who like to talk about surviving in the wild.

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from once. If you later learn the perk, you may use that benefit once per scene. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.6b46sO6gPyRRziMy]{Get Off My Lawn}

", "effect": "

Find twice as much meat from a butchered creature

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "Backwoodsman", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/giant_insects_invade___1bOiFImI3fM9CaIJ.json b/data/packs/books_and_magz.db/giant_insects_invade___1bOiFImI3fM9CaIJ.json index 93d78d98..07c0ea0d 100644 --- a/data/packs/books_and_magz.db/giant_insects_invade___1bOiFImI3fM9CaIJ.json +++ b/data/packs/books_and_magz.db/giant_insects_invade___1bOiFImI3fM9CaIJ.json @@ -11,14 +11,16 @@ "description": "

A magazine containing thrilling short stories of daring adventure!

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, granting bonus damage or bonus damage resistance against a single foe or
    type of attack. This lasts only for a single attack (made or received, respectively), unless the perk is learned, in which case it applies to all attacks. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.fMq7BDUKGUIZDOEY]{Giant Insects Invade!}

", "effect": "

+2 to Radiation damage resistance

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "Astoundingly Awesome Tales", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/giant_super_weapons___CndyqCypQg50fKrr.json b/data/packs/books_and_magz.db/giant_super_weapons___CndyqCypQg50fKrr.json index dd34ef01..b409c960 100644 --- a/data/packs/books_and_magz.db/giant_super_weapons___CndyqCypQg50fKrr.json +++ b/data/packs/books_and_magz.db/giant_super_weapons___CndyqCypQg50fKrr.json @@ -11,14 +11,16 @@ "description": "

An informational magazine covering topics such as rocket science, robotics, laser technology, and other cutting-edge fields of science and technology.

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from once. If you later learn the perk, you may use that benefit once per scene. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.JGsQpE2E1zseUEdM]{Giant Super Weapons!}

", "effect": "

Once, when you fire a Gatling weapon, you consume ammunition at 8x the rate, rather than 10x the rate

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "Tesla Science Magazine", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/guide_to_hunting_commies___116TjNgfBwkNOSF6.json b/data/packs/books_and_magz.db/guide_to_hunting_commies___116TjNgfBwkNOSF6.json index 6de858cb..b86e91a6 100644 --- a/data/packs/books_and_magz.db/guide_to_hunting_commies___116TjNgfBwkNOSF6.json +++ b/data/packs/books_and_magz.db/guide_to_hunting_commies___116TjNgfBwkNOSF6.json @@ -11,14 +11,16 @@ "description": "

A magazine series catering to weapons enthusiasts, with articles dedicated to hunting, weapons, gun law, and the portrayal of practical use of firearms.

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from once. If you later learn the perk, you may use that benefit once per scene. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.BoK3Po9WKYHAv4Y9]{Guide to Hunting Commies!}

", "effect": "

One attack against an enemy with a lower level than you inflicts +2CD damage

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "Guns and Bullets", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/hardy_as_a_sasquatch__mbkQ1d1IQjlSE6HG.json b/data/packs/books_and_magz.db/hardy_as_a_sasquatch__mbkQ1d1IQjlSE6HG.json index 068ccd2c..65417d6e 100644 --- a/data/packs/books_and_magz.db/hardy_as_a_sasquatch__mbkQ1d1IQjlSE6HG.json +++ b/data/packs/books_and_magz.db/hardy_as_a_sasquatch__mbkQ1d1IQjlSE6HG.json @@ -11,14 +11,16 @@ "description": "

Thrilling, true stories for rugged men! Backwoodsman is a magazine series containing articles and stories about outdoor survival, for people who like to talk about surviving in the wild.

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from once. If you later learn the perk, you may use that benefit once per scene. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.5FSxhtSwphd72BS1]{Hardy as a Sasquatch}

", "effect": "

When scavenging from plants, gain twice as much

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "Backwoodsman", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/homesteading_horror__uCmxHbctgoe8jQDo.json b/data/packs/books_and_magz.db/homesteading_horror__uCmxHbctgoe8jQDo.json index 8a15163b..aaba1e61 100644 --- a/data/packs/books_and_magz.db/homesteading_horror__uCmxHbctgoe8jQDo.json +++ b/data/packs/books_and_magz.db/homesteading_horror__uCmxHbctgoe8jQDo.json @@ -11,14 +11,16 @@ "description": "

Thrilling, true stories for rugged men! Backwoodsman is a magazine series containing articles and stories about outdoor survival, for people who like to talk about surviving in the wild.

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from once. If you later learn the perk, you may use that benefit once per scene. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.6XStNgfUJG92au27]{Homesteading Horror}

", "effect": "

Reduce the difficulty of crafting a weapon by 1 (min. of 0)

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "Backwoodsman", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/hunting_in_the_wastes__rzLGWCVR5aHjEyFy.json b/data/packs/books_and_magz.db/hunting_in_the_wastes__rzLGWCVR5aHjEyFy.json index 6cbc009f..335c1e6a 100644 --- a/data/packs/books_and_magz.db/hunting_in_the_wastes__rzLGWCVR5aHjEyFy.json +++ b/data/packs/books_and_magz.db/hunting_in_the_wastes__rzLGWCVR5aHjEyFy.json @@ -11,14 +11,16 @@ "description": "

The Wasteland Survival Guide is another post-War series of instructional magazines, written and illustrated with crude pen drawings. It has been copied and distributed across the wastelands but can most commonly be found in settlements near to the Capital Wasteland.

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from once. If you later learn the perk, you may use that benefit once per scene. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.p8cH2qolrlrnLKIt]{Hunting in the Wastes}

", "effect": "

When you butcher an animal you’ve killed, and the amount of meat found can be increased by spending AP, you gain 1 bonus AP for that purpose (this AP is lost if not used)

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "Wasteland Survival Guide", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/i_married_a_robot__usR2XUJr38Er8QCh.json b/data/packs/books_and_magz.db/i_married_a_robot__usR2XUJr38Er8QCh.json index c3d0efbe..cb7fcc9b 100644 --- a/data/packs/books_and_magz.db/i_married_a_robot__usR2XUJr38Er8QCh.json +++ b/data/packs/books_and_magz.db/i_married_a_robot__usR2XUJr38Er8QCh.json @@ -11,14 +11,16 @@ "description": "

A pre-War magazine series dedicated to lifestyle and relationships, often covering cultural events, health advice, diet tips, relationship advice, and more.

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from for a single scene. If you later learn the perk, you may use that benefit constantly. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.xfBuEJQHYAmds5XG]{I Married a Robot}

", "effect": "

+2 to all damage resistances against Robots for one scene

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "Live & Love", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/in_the_bosom_of_the_corsair_queen__9UgvihjW0x2I5vn9.json b/data/packs/books_and_magz.db/in_the_bosom_of_the_corsair_queen__9UgvihjW0x2I5vn9.json index 3bb5b97b..a7baebe9 100644 --- a/data/packs/books_and_magz.db/in_the_bosom_of_the_corsair_queen__9UgvihjW0x2I5vn9.json +++ b/data/packs/books_and_magz.db/in_the_bosom_of_the_corsair_queen__9UgvihjW0x2I5vn9.json @@ -11,14 +11,16 @@ "description": "

A series of comic books published by Hubris Comics before the Great War. The comics depict the actionpacked adventures of the title character in a prehistoric world.

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from once. If you later learn the perk, you may use that benefit once per scene. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.bzXcVbZZtHhGCcOs]{In the Bosom of the Corsair Queen}

", "effect": "

One successful melee attack you make automatically inflicts a Critical Hit

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "Grognak the Barbarian", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/insect_repellent_special__NyoiFuBl8FN4iRiZ.json b/data/packs/books_and_magz.db/insect_repellent_special__NyoiFuBl8FN4iRiZ.json index fdd94f7b..4558f2c4 100644 --- a/data/packs/books_and_magz.db/insect_repellent_special__NyoiFuBl8FN4iRiZ.json +++ b/data/packs/books_and_magz.db/insect_repellent_special__NyoiFuBl8FN4iRiZ.json @@ -11,14 +11,16 @@ "description": "

The Wasteland Survival Guide is another post-War series of instructional magazines, written and illustrated with crude pen drawings. It has been copied and distributed across the wastelands but can most commonly be found in settlements near to the Capital Wasteland.

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from once. If you later learn the perk, you may use that benefit once per scene. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.qxfqtIIZynyM2qIj]{Insect Repellent Special}

", "effect": "

Increase all damage resistances by +2 vs an attack from an Insect

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "Wasteland Survival Guide", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/jungle_of_the_bat_babies__V8SOn4RCMzgkx4u0.json b/data/packs/books_and_magz.db/jungle_of_the_bat_babies__V8SOn4RCMzgkx4u0.json index 2be615a9..0f187ca0 100644 --- a/data/packs/books_and_magz.db/jungle_of_the_bat_babies__V8SOn4RCMzgkx4u0.json +++ b/data/packs/books_and_magz.db/jungle_of_the_bat_babies__V8SOn4RCMzgkx4u0.json @@ -11,14 +11,16 @@ "description": "

A series of comic books published by Hubris Comics before the Great War. The comics depict the actionpacked adventures of the title character in a prehistoric world.

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from once. If you later learn the perk, you may use that benefit once per scene. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.FgiFIu2LmrckPy5Y]{Jungle of the Bat-Babies}

", "effect": "

When you suffer Poison damage, gain +3 Poison damage resistance

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "Grognak the Barbarian", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/lasers___hunting__acceptable_overkill__qJ0xswPVJhHeBwLT.json b/data/packs/books_and_magz.db/lasers___hunting__acceptable_overkill__qJ0xswPVJhHeBwLT.json index bc4c029d..dcd177e2 100644 --- a/data/packs/books_and_magz.db/lasers___hunting__acceptable_overkill__qJ0xswPVJhHeBwLT.json +++ b/data/packs/books_and_magz.db/lasers___hunting__acceptable_overkill__qJ0xswPVJhHeBwLT.json @@ -11,14 +11,16 @@ "description": "

A magazine series catering to weapons enthusiasts, with articles dedicated to hunting, weapons, gun law, and the portrayal of practical use of firearms.

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from once. If you later learn the perk, you may use that benefit once per scene. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.nRkIZJRQqkTsqQV7]{Lasers & Hunting: Acceptable Overkill}

", "effect": "

One attack with a Laser weapon gains the Vicious damage effect if it didn’t already have it

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "Guns and Bullets", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/life_long_best_friends___uizbEBbI5Jl1tjeI.json b/data/packs/books_and_magz.db/life_long_best_friends___uizbEBbI5Jl1tjeI.json index c5e549f6..bd744881 100644 --- a/data/packs/books_and_magz.db/life_long_best_friends___uizbEBbI5Jl1tjeI.json +++ b/data/packs/books_and_magz.db/life_long_best_friends___uizbEBbI5Jl1tjeI.json @@ -11,14 +11,16 @@ "description": "

A pre-War magazine series dedicated to lifestyle and relationships, often covering cultural events, health advice, diet tips, relationship advice, and more.

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from for a single scene. If you later learn the perk, you may use that benefit constantly. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.SKyP3uQ4CQCcdKZs]{Life Long Best Friends!}

", "effect": "

+1 Maximum Health Points to all party members for one scene

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "Live & Love", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/little_guns_for_little_ladies__UvPtfBpiOmAmiKg2.json b/data/packs/books_and_magz.db/little_guns_for_little_ladies__UvPtfBpiOmAmiKg2.json index aa0947aa..ff1adafa 100644 --- a/data/packs/books_and_magz.db/little_guns_for_little_ladies__UvPtfBpiOmAmiKg2.json +++ b/data/packs/books_and_magz.db/little_guns_for_little_ladies__UvPtfBpiOmAmiKg2.json @@ -11,14 +11,16 @@ "description": "

A magazine series catering to weapons enthusiasts, with articles dedicated to hunting, weapons, gun law, and the portrayal of practical use of firearms.

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from once. If you later learn the perk, you may use that benefit once per scene. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.YUHxXpiMFWmEtbXB]{Little Guns for Little Ladies}

", "effect": "

One attack with a Small Guns weapon gains the Vicious damage effect if it didn’t have it already

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "Guns and Bullets", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/locksmith_certification_special___pass_with_flying_colors__GUbEJnFDx9p0CvbD.json b/data/packs/books_and_magz.db/locksmith_certification_special___pass_with_flying_colors__GUbEJnFDx9p0CvbD.json index 5da3c2c5..f4b76e75 100644 --- a/data/packs/books_and_magz.db/locksmith_certification_special___pass_with_flying_colors__GUbEJnFDx9p0CvbD.json +++ b/data/packs/books_and_magz.db/locksmith_certification_special___pass_with_flying_colors__GUbEJnFDx9p0CvbD.json @@ -11,14 +11,16 @@ "description": "

Tumblers Today is a pre-War magazine containing information about the clandestine art of lockpicking and the latest in mechanical locks found in safes, footlockers, and doors. The cover art for the magazine depicts imagery from each issue, highlighting the topic and technique of the issue.

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from once. If you later learn the perk, you may use that benefit once per scene. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.xRA5ktVoyWDHRy8N]{Locksmith Certification Special — Pass with Flying Colors}

", "effect": "

When you suffer one or more complications on a Lockpicking test, spend 1 Luck point to ignore those complications

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "Tumblers Today", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/lost_in_the_snows_of_lust__S71PQOPJq2vV0pH8.json b/data/packs/books_and_magz.db/lost_in_the_snows_of_lust__S71PQOPJq2vV0pH8.json index 19ad5139..e7260269 100644 --- a/data/packs/books_and_magz.db/lost_in_the_snows_of_lust__S71PQOPJq2vV0pH8.json +++ b/data/packs/books_and_magz.db/lost_in_the_snows_of_lust__S71PQOPJq2vV0pH8.json @@ -11,14 +11,16 @@ "description": "

A series of comic books published by Hubris Comics before the Great War. The comics depict the actionpacked adventures of the title character in a prehistoric world.

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from once. If you later learn the perk, you may use that benefit once per scene. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.pIGqn3CdOhsyQyhx]{Lost in the Snows of Lust}

", "effect": "

Gain +2 Physical damage resistance against one attack

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "Grognak the Barbarian", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/massachusetts_surgical_journal__FQDIJeABc0a1g7Nt.json b/data/packs/books_and_magz.db/massachusetts_surgical_journal__FQDIJeABc0a1g7Nt.json index 9675c47e..cb763ecc 100644 --- a/data/packs/books_and_magz.db/massachusetts_surgical_journal__FQDIJeABc0a1g7Nt.json +++ b/data/packs/books_and_magz.db/massachusetts_surgical_journal__FQDIJeABc0a1g7Nt.json @@ -11,14 +11,16 @@ "description": "

A periodical medical journal originating from preWar Massachusetts, a region now known as the Commonwealth. It contains detailed discussions of advances in medical science and technology, published studies on unusual diseases, and a host of other useful medical knowledge.

\n

Perk: Once, when you provide medical attention to another character and assist their END + Survival test to heal Injuries, you may treat your assistance die as if it had rolled a 1. If you learn this perk, you may do this once per session.

\n

@UUID[Compendium.fallout.perks.Item.scI8HRzH0QjDb1bh]{Massachusetts Surgical Journal}

", "effect": "

Once, when you provide medical attention to another character and assist their END + Survival test to heal Injuries, you may treat your assistance die as if it had rolled a 1. 

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/meeting_people__8nJBGtcrUsO2hUDG.json b/data/packs/books_and_magz.db/meeting_people__8nJBGtcrUsO2hUDG.json index c59d90aa..36d1c62e 100644 --- a/data/packs/books_and_magz.db/meeting_people__8nJBGtcrUsO2hUDG.json +++ b/data/packs/books_and_magz.db/meeting_people__8nJBGtcrUsO2hUDG.json @@ -11,14 +11,16 @@ "description": "

A magazine aimed at those who lack social grace. Meeting People magazine advertises itself as a primer for social interaction, giving tips on how to find and make friends, dating advice, and guidance on building confidence and spotting social cues.

\n
    \n
  • Perk: Once, when you roll one or more complications on a Speech test, you may ignore those complications. If you learn this perk, you may do this once per scene.
  • \n
\n

@UUID[Compendium.fallout.perks.Item.tKQ4oQiQxWoM10p6]{Meeting People}

", "effect": "

Once, when you roll one or more complications on a Speech test, you may ignore those complications.

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/mysteries_of_the_master_key_exposed___YVmBhcEYI0eLLDM8.json b/data/packs/books_and_magz.db/mysteries_of_the_master_key_exposed___YVmBhcEYI0eLLDM8.json index 8d94a4d4..ef8fb1e2 100644 --- a/data/packs/books_and_magz.db/mysteries_of_the_master_key_exposed___YVmBhcEYI0eLLDM8.json +++ b/data/packs/books_and_magz.db/mysteries_of_the_master_key_exposed___YVmBhcEYI0eLLDM8.json @@ -11,14 +11,16 @@ "description": "

Tumblers Today is a pre-War magazine containing information about the clandestine art of lockpicking and the latest in mechanical locks found in safes, footlockers, and doors. The cover art for the magazine depicts imagery from each issue, highlighting the topic and technique of the issue.

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from once. If you later learn the perk, you may use that benefit once per scene. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.dx2dkCtFBWb5kukV]{Mysteries of the Master Key Exposed!}

", "effect": "

You may re-roll 1d20 on a single Lockpicking test

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "Tumblers Today", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/nightmare_in_the_garden__9hZXkRhoJIX47mWS.json b/data/packs/books_and_magz.db/nightmare_in_the_garden__9hZXkRhoJIX47mWS.json index 462fc644..e8c099ea 100644 --- a/data/packs/books_and_magz.db/nightmare_in_the_garden__9hZXkRhoJIX47mWS.json +++ b/data/packs/books_and_magz.db/nightmare_in_the_garden__9hZXkRhoJIX47mWS.json @@ -11,14 +11,16 @@ "description": "

Thrilling, true stories for rugged men! Backwoodsman is a magazine series containing articles and stories about outdoor survival, for people who like to talk about surviving in the wild.

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from once. If you later learn the perk, you may use that benefit once per scene. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.C2pRfk15zpFV3sgG]{Nightmare in the Garden}

", "effect": "

Heal +2HP when you consume an Alcoholic drink

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "Backwoodsman", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/nuke_the_man___xT9LvN0vcacln4pN.json b/data/packs/books_and_magz.db/nuke_the_man___xT9LvN0vcacln4pN.json index b9f0b54c..3d01b5e0 100644 --- a/data/packs/books_and_magz.db/nuke_the_man___xT9LvN0vcacln4pN.json +++ b/data/packs/books_and_magz.db/nuke_the_man___xT9LvN0vcacln4pN.json @@ -11,14 +11,16 @@ "description": "

A pre-War magazine series dedicated to lifestyle and relationships, often covering cultural events, health advice, diet tips, relationship advice, and more.

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from for a single scene. If you later learn the perk, you may use that benefit constantly. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.H27K9ike953ZIyRl]{Nuke-the-Man!}

", "effect": "

+1CD damage to attacks from all party members for one scene

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "Live & Love", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/open_any_lock_in_5_seconds_flat__M32bIhaLlqXttW9q.json b/data/packs/books_and_magz.db/open_any_lock_in_5_seconds_flat__M32bIhaLlqXttW9q.json index 3af5d71a..d3109a7d 100644 --- a/data/packs/books_and_magz.db/open_any_lock_in_5_seconds_flat__M32bIhaLlqXttW9q.json +++ b/data/packs/books_and_magz.db/open_any_lock_in_5_seconds_flat__M32bIhaLlqXttW9q.json @@ -11,14 +11,16 @@ "description": "

Tumblers Today is a pre-War magazine containing information about the clandestine art of lockpicking and the latest in mechanical locks found in safes, footlockers, and doors. The cover art for the magazine depicts imagery from each issue, highlighting the topic and technique of the issue.

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from once. If you later learn the perk, you may use that benefit once per scene. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.mrgLpKa5RkDmIWHq]{Open Any Lock in 5 Seconds Flat}

", "effect": "

When you successfully pick a lock, you may use the Reduce Time AP option without spending AP

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "Tumblers Today", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/plasma__the_weapon_of_tomorrow__fYy1RCAJMGPRO9WJ.json b/data/packs/books_and_magz.db/plasma__the_weapon_of_tomorrow__fYy1RCAJMGPRO9WJ.json index b2cf6c85..5eefeff9 100644 --- a/data/packs/books_and_magz.db/plasma__the_weapon_of_tomorrow__fYy1RCAJMGPRO9WJ.json +++ b/data/packs/books_and_magz.db/plasma__the_weapon_of_tomorrow__fYy1RCAJMGPRO9WJ.json @@ -11,14 +11,16 @@ "description": "

A magazine series catering to weapons enthusiasts, with articles dedicated to hunting, weapons, gun law, and the portrayal of practical use of firearms.

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from once. If you later learn the perk, you may use that benefit once per scene. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.SbayR4I8JCyymq0a]{Plasma: The Weapon of Tomorrow}

", "effect": "

One attack with a Plasma weapon gains the Vicious damage effect if it didn’t already have it

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "Guns and Bullets", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/programmer_s_digest__0QyGlHy565YJcdMI.json b/data/packs/books_and_magz.db/programmer_s_digest__0QyGlHy565YJcdMI.json index e0ddc998..66181063 100644 --- a/data/packs/books_and_magz.db/programmer_s_digest__0QyGlHy565YJcdMI.json +++ b/data/packs/books_and_magz.db/programmer_s_digest__0QyGlHy565YJcdMI.json @@ -11,14 +11,16 @@ "description": "

A magazine aimed at computer afficionados, discussing programming languages, encryption and decryption techniques, and the latest software.

\n
    \n
  • Perk: Once, when you fail a Science test to hack into a computer terminal and would be locked out (prevented from trying again), you may choose not to be locked out, allowing you to make another attempt. If you learn this Perk, you may do this whenever you are locked out of a computer.A magazine aimed at computer afficionados, discussing programming languages, encryption and decryption techniques, and the latest software.
  • \n
\n

@UUID[Compendium.fallout.perks.Item.xmOWzjBpDXRfPa9Y]{Programmer's Digest}

", "effect": "

Once, when you fail a Science test to hack into a computer terminal and would be locked out (prevented from trying again), you may choose not to be locked out, allowing you to make another attempt.

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/rise_of_the_mutants___J86ayEuqmagF9OH0.json b/data/packs/books_and_magz.db/rise_of_the_mutants___J86ayEuqmagF9OH0.json index 13bfb579..baf2c7f1 100644 --- a/data/packs/books_and_magz.db/rise_of_the_mutants___J86ayEuqmagF9OH0.json +++ b/data/packs/books_and_magz.db/rise_of_the_mutants___J86ayEuqmagF9OH0.json @@ -11,14 +11,16 @@ "description": "

A magazine containing thrilling short stories of daring adventure!

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, granting bonus damage or bonus damage resistance against a single foe or
    type of attack. This lasts only for a single attack (made or received, respectively), unless the perk is learned, in which case it applies to all attacks. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.Gn880XN7Auhdop6S]{Rise of the Mutants!}

", "effect": "

+1CD on attacks vs super mutants

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "Astoundingly Awesome Tales", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/rocket_science_for_toddlers__Xh4PnVNi5xJrCtZr.json b/data/packs/books_and_magz.db/rocket_science_for_toddlers__Xh4PnVNi5xJrCtZr.json index 418686e1..889f9244 100644 --- a/data/packs/books_and_magz.db/rocket_science_for_toddlers__Xh4PnVNi5xJrCtZr.json +++ b/data/packs/books_and_magz.db/rocket_science_for_toddlers__Xh4PnVNi5xJrCtZr.json @@ -11,14 +11,16 @@ "description": "

An informational magazine covering topics such as rocket science, robotics, laser technology, and other cutting-edge fields of science and technology.

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from once. If you later learn the perk, you may use that benefit once per scene. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.3gc78PRC1se8qefU]{Rocket Science for Toddlers}

", "effect": "

+2CD damage inflicted by one attack with a Blast weapon

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "Tesla Science Magazine", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/science_gone_mad___zpcKGtIDvZn8Z1ut.json b/data/packs/books_and_magz.db/science_gone_mad___zpcKGtIDvZn8Z1ut.json index fad81b86..1ab3547b 100644 --- a/data/packs/books_and_magz.db/science_gone_mad___zpcKGtIDvZn8Z1ut.json +++ b/data/packs/books_and_magz.db/science_gone_mad___zpcKGtIDvZn8Z1ut.json @@ -11,14 +11,16 @@ "description": "

A magazine containing thrilling short stories of daring adventure!

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, granting bonus damage or bonus damage resistance against a single foe or
    type of attack. This lasts only for a single attack (made or received, respectively), unless the perk is learned, in which case it applies to all attacks. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.fDu6KU5u17sqA1hf]{Science Gone Mad!}

", "effect": "

+2 to Energy damage resistance

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "Astoundingly Awesome Tales", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/self_defense_secrets__l04nHOGBarXy6rxt.json b/data/packs/books_and_magz.db/self_defense_secrets__l04nHOGBarXy6rxt.json index cb2a5d73..e384e989 100644 --- a/data/packs/books_and_magz.db/self_defense_secrets__l04nHOGBarXy6rxt.json +++ b/data/packs/books_and_magz.db/self_defense_secrets__l04nHOGBarXy6rxt.json @@ -11,14 +11,16 @@ "description": "

The Wasteland Survival Guide is another post-War series of instructional magazines, written and illustrated with crude pen drawings. It has been copied and distributed across the wastelands but can most commonly be found in settlements near to the Capital Wasteland.

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from once. If you later learn the perk, you may use that benefit once per scene. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.yXOy24286aAjL5ID]{Self Defense Secrets}

", "effect": "

Gain +1 defense against a melee attack

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "Wasteland Survival Guide", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/street_guns_of_detroit__mT0Wf89P2UGLZ83y.json b/data/packs/books_and_magz.db/street_guns_of_detroit__mT0Wf89P2UGLZ83y.json index c93feb9d..bf12cf18 100644 --- a/data/packs/books_and_magz.db/street_guns_of_detroit__mT0Wf89P2UGLZ83y.json +++ b/data/packs/books_and_magz.db/street_guns_of_detroit__mT0Wf89P2UGLZ83y.json @@ -11,14 +11,16 @@ "description": "

A magazine series catering to weapons enthusiasts, with articles dedicated to hunting, weapons, gun law, and the portrayal of practical use of firearms.

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from once. If you later learn the perk, you may use that benefit once per scene. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.iQofqWEFwGokog1G]{Street Guns of Detroit}

", "effect": "

Gain an extra 2 AP after one successful attack. This AP must be spent immediately: it cannot be saved

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "Guns and Bullets", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/surrounded_by_the_dead___0pTA0wlRQUQ2oAHk.json b/data/packs/books_and_magz.db/surrounded_by_the_dead___0pTA0wlRQUQ2oAHk.json index 4f375fc4..e4456d83 100644 --- a/data/packs/books_and_magz.db/surrounded_by_the_dead___0pTA0wlRQUQ2oAHk.json +++ b/data/packs/books_and_magz.db/surrounded_by_the_dead___0pTA0wlRQUQ2oAHk.json @@ -11,14 +11,16 @@ "description": "

A magazine containing thrilling short stories of daring adventure!

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, granting bonus damage or bonus damage resistance against a single foe or
    type of attack. This lasts only for a single attack (made or received, respectively), unless the perk is learned, in which case it applies to all attacks. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.pk42jPbAVMosmA0k]{Surrounded by the Dead!}

", "effect": "

+1CD on attacks where you spend one or more Ammunition for bonus damage

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "Astoundingly Awesome Tales", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/take_aim__army_style__yjknvThwoDmQwU3M.json b/data/packs/books_and_magz.db/take_aim__army_style__yjknvThwoDmQwU3M.json index 85f89099..f4408bf2 100644 --- a/data/packs/books_and_magz.db/take_aim__army_style__yjknvThwoDmQwU3M.json +++ b/data/packs/books_and_magz.db/take_aim__army_style__yjknvThwoDmQwU3M.json @@ -11,14 +11,16 @@ "description": "

A magazine series catering to weapons enthusiasts, with articles dedicated to hunting, weapons, gun law, and the portrayal of practical use of firearms.

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from once. If you later learn the perk, you may use that benefit once per scene. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.oRB1ZIvzhsUMElSc]{Take Aim, Army Style}

", "effect": "

One aimed attack made with a weapon which lacks the Accurate quality inflicts +2CD damage

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "Guns and Bullets", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/tales_of_a_junktown_jerky_vendor__IB9mafYkrD1E7EuV.json b/data/packs/books_and_magz.db/tales_of_a_junktown_jerky_vendor__IB9mafYkrD1E7EuV.json index 3ab8f9b8..dc4e3b6d 100644 --- a/data/packs/books_and_magz.db/tales_of_a_junktown_jerky_vendor__IB9mafYkrD1E7EuV.json +++ b/data/packs/books_and_magz.db/tales_of_a_junktown_jerky_vendor__IB9mafYkrD1E7EuV.json @@ -11,14 +11,16 @@ "description": "

One example of a post-War magazine, Tales of a Junktown Jerky Vendor is a collection of short, handmade books written by an unknown vendor of jerky from Junktown. Copies have spread across the wasteland and can be found from California (near Junktown itself) to the Commonwealth.

\n
    \n
  • Perk: Once, when you succeed or fail at a Barter test to haggle on the price of a trade, you may spend 1 Luck point to shift the price 10% in your favor. If you learn this Perk, you may do this on any Barter test to haggle, though you must spend one additional Luck point each extra time you use it during a session (1 for the first time, 2 for the second, 3 for the third, etc.).
  • \n
\n

@UUID[Compendium.fallout.perks.Item.Qf4PBCvZdSvPAeX7]{Tales of a Junktown Jerky Vendor}

", "effect": "

Once, when you succeed or fail at a Barter test to haggle on the price of a trade, you may spend 1 Luck point to shift the price 10% in your favor.

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/talk_yourself_sober__YFSFj5moNn7KNnT8.json b/data/packs/books_and_magz.db/talk_yourself_sober__YFSFj5moNn7KNnT8.json index f92455ba..627f6404 100644 --- a/data/packs/books_and_magz.db/talk_yourself_sober__YFSFj5moNn7KNnT8.json +++ b/data/packs/books_and_magz.db/talk_yourself_sober__YFSFj5moNn7KNnT8.json @@ -11,14 +11,16 @@ "description": "

A pre-War magazine series dedicated to lifestyle and relationships, often covering cultural events, health advice, diet tips, relationship advice, and more.

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from for a single scene. If you later learn the perk, you may use that benefit constantly. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.Jip3JdMpV9HTHujn]{Talk Yourself Sober}

", "effect": "

Gain 1 Luck point (lost at the end of the scene if not used) when you consume an Alcoholic drink

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "Live & Love", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/the_appalachia_squirrel_massacre__h5GN8irnNWKC3xMD.json b/data/packs/books_and_magz.db/the_appalachia_squirrel_massacre__h5GN8irnNWKC3xMD.json index 793999ea..cee78fe5 100644 --- a/data/packs/books_and_magz.db/the_appalachia_squirrel_massacre__h5GN8irnNWKC3xMD.json +++ b/data/packs/books_and_magz.db/the_appalachia_squirrel_massacre__h5GN8irnNWKC3xMD.json @@ -11,14 +11,16 @@ "description": "

Thrilling, true stories for rugged men! Backwoodsman is a magazine series containing articles and stories about outdoor survival, for people who like to talk about surviving in the wild.

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from once. If you later learn the perk, you may use that benefit once per scene. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.kQD85MOcz1B4KHsV]{The Appalachia Squirrel Massacre}

", "effect": "

One item of cooked food you make and eat heals +3 HP

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "Backwoodsman", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/the_bright_side_of_radiation_poisoning__EIzEOJH0iP4JzWnw.json b/data/packs/books_and_magz.db/the_bright_side_of_radiation_poisoning__EIzEOJH0iP4JzWnw.json index a5408139..c0550b39 100644 --- a/data/packs/books_and_magz.db/the_bright_side_of_radiation_poisoning__EIzEOJH0iP4JzWnw.json +++ b/data/packs/books_and_magz.db/the_bright_side_of_radiation_poisoning__EIzEOJH0iP4JzWnw.json @@ -11,14 +11,16 @@ "description": "

The Wasteland Survival Guide is another post-War series of instructional magazines, written and illustrated with crude pen drawings. It has been copied and distributed across the wastelands but can most commonly be found in settlements near to the Capital Wasteland.

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from once. If you later learn the perk, you may use that benefit once per scene. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.BSi2qWkBGOJKFFED]{The Bright Side of Radiation Poisoning}

", "effect": "

When you consume irradiated food or drink, heal additional HP equal to the roll on the @fos[DC]

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "Wasteland Survival Guide", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/the_future_of_hunting___DBYRYX03IcO2aTQG.json b/data/packs/books_and_magz.db/the_future_of_hunting___DBYRYX03IcO2aTQG.json index 3b03674a..1b491db6 100644 --- a/data/packs/books_and_magz.db/the_future_of_hunting___DBYRYX03IcO2aTQG.json +++ b/data/packs/books_and_magz.db/the_future_of_hunting___DBYRYX03IcO2aTQG.json @@ -11,14 +11,16 @@ "description": "

A magazine series catering to weapons enthusiasts, with articles dedicated to hunting, weapons, gun law, and the portrayal of practical use of firearms.

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from once. If you later learn the perk, you may use that benefit once per scene. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.kBFXBzcatoT884Je]{The Future of Hunting?}

", "effect": "

One attack against Robots inflicts +2CD damage

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "Guns and Bullets", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/the_gunsmith_of_harper_s_ferry__sJuyumHFWHrT4Kr0.json b/data/packs/books_and_magz.db/the_gunsmith_of_harper_s_ferry__sJuyumHFWHrT4Kr0.json index 036aff55..3086fbf1 100644 --- a/data/packs/books_and_magz.db/the_gunsmith_of_harper_s_ferry__sJuyumHFWHrT4Kr0.json +++ b/data/packs/books_and_magz.db/the_gunsmith_of_harper_s_ferry__sJuyumHFWHrT4Kr0.json @@ -11,14 +11,16 @@ "description": "

Thrilling, true stories for rugged men! Backwoodsman is a magazine series containing articles and stories about outdoor survival, for people who like to talk about surviving in the wild.

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from once. If you later learn the perk, you may use that benefit once per scene. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.3caIOATNwBm6EPuh]{The Gunsmith of Harper’s Ferry}

", "effect": "

When you find ammo, you find +2CD more shots

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "Backwoodsman", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/the_lair_of_the_virgin_eaters__G88aHNSeg4SvaCo9.json b/data/packs/books_and_magz.db/the_lair_of_the_virgin_eaters__G88aHNSeg4SvaCo9.json index 462f5438..ba8dae3d 100644 --- a/data/packs/books_and_magz.db/the_lair_of_the_virgin_eaters__G88aHNSeg4SvaCo9.json +++ b/data/packs/books_and_magz.db/the_lair_of_the_virgin_eaters__G88aHNSeg4SvaCo9.json @@ -11,14 +11,16 @@ "description": "

A series of comic books published by Hubris Comics before the Great War. The comics depict the actionpacked adventures of the title character in a prehistoric world.

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from once. If you later learn the perk, you may use that benefit once per scene. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.KEpm4gH8RvMjhpoO]{The Lair of the Virgin Eaters}

", "effect": "

Gain +10 Carry weight for one scene

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "Grognak the Barbarian", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/the_mad_russian_s_revenge___iiFcIlhklIMxjaoC.json b/data/packs/books_and_magz.db/the_mad_russian_s_revenge___iiFcIlhklIMxjaoC.json index 49f92e34..430bd251 100644 --- a/data/packs/books_and_magz.db/the_mad_russian_s_revenge___iiFcIlhklIMxjaoC.json +++ b/data/packs/books_and_magz.db/the_mad_russian_s_revenge___iiFcIlhklIMxjaoC.json @@ -11,14 +11,16 @@ "description": "

A magazine containing thrilling short stories of daring adventure!

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, granting bonus damage or bonus damage resistance against a single foe or
    type of attack. This lasts only for a single attack (made or received, respectively), unless the perk is learned, in which case it applies to all attacks. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.LSUSRTgMyqfN1EQx]{The Mad Russian's Revenge!}

", "effect": "

+2 to Poison damage resistance

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "Astoundingly Awesome Tales", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/the_moon__a_communist_doomsday_device____4jcc9O3jIgAhUulK.json b/data/packs/books_and_magz.db/the_moon__a_communist_doomsday_device____4jcc9O3jIgAhUulK.json index b7cb38aa..78a837d6 100644 --- a/data/packs/books_and_magz.db/the_moon__a_communist_doomsday_device____4jcc9O3jIgAhUulK.json +++ b/data/packs/books_and_magz.db/the_moon__a_communist_doomsday_device____4jcc9O3jIgAhUulK.json @@ -11,14 +11,16 @@ "description": "

A magazine series catering to weapons enthusiasts, with articles dedicated to hunting, weapons, gun law, and the portrayal of practical use of firearms.

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from once. If you later learn the perk, you may use that benefit once per scene. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.zZg9mSTuufYGzSib]{The Moon: A Communist Doomsday Device?!}

", "effect": "

Gain +2 to Physical or Energy damage resistance against one attack at night

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "Guns and Bullets", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/the_ohio_river_hermit__0WGq8Aaq82V8nViB.json b/data/packs/books_and_magz.db/the_ohio_river_hermit__0WGq8Aaq82V8nViB.json index 12ad6499..540c0870 100644 --- a/data/packs/books_and_magz.db/the_ohio_river_hermit__0WGq8Aaq82V8nViB.json +++ b/data/packs/books_and_magz.db/the_ohio_river_hermit__0WGq8Aaq82V8nViB.json @@ -11,14 +11,16 @@ "description": "

Thrilling, true stories for rugged men! Backwoodsman is a magazine series containing articles and stories about outdoor survival, for people who like to talk about surviving in the wild.

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from once. If you later learn the perk, you may use that benefit once per scene. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.7vvLcpVth2gMnB7o]{The Ohio River Hermit}

", "effect": "

Reduce the difficulty of repairing a damaged item by 1 (min. 0)

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "Backwoodsman", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/the_secretary_charmer__PKilL8to3SDZHUAU.json b/data/packs/books_and_magz.db/the_secretary_charmer__PKilL8to3SDZHUAU.json index 93cbefb5..129f0ba3 100644 --- a/data/packs/books_and_magz.db/the_secretary_charmer__PKilL8to3SDZHUAU.json +++ b/data/packs/books_and_magz.db/the_secretary_charmer__PKilL8to3SDZHUAU.json @@ -11,14 +11,16 @@ "description": "

A pre-War magazine series dedicated to lifestyle and relationships, often covering cultural events, health advice, diet tips, relationship advice, and more.

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from for a single scene. If you later learn the perk, you may use that benefit constantly. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.disfFslU7fhYTIlC]{The Secretary Charmer}

", "effect": "

At the start of one scene, add +1 AP to the group pool

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "Live & Love", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/the_starlet_sniper___sNyzZdtR8zQeKE86.json b/data/packs/books_and_magz.db/the_starlet_sniper___sNyzZdtR8zQeKE86.json index d1f72d64..0ba6886d 100644 --- a/data/packs/books_and_magz.db/the_starlet_sniper___sNyzZdtR8zQeKE86.json +++ b/data/packs/books_and_magz.db/the_starlet_sniper___sNyzZdtR8zQeKE86.json @@ -11,14 +11,16 @@ "description": "

A magazine containing thrilling short stories of daring adventure!

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, granting bonus damage or bonus damage resistance against a single foe or
    type of attack. This lasts only for a single attack (made or received, respectively), unless the perk is learned, in which case it applies to all attacks. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.x6hpmUJFDTD3Iw82]{The Starlet Sniper!}

", "effect": "

+1CD on attacks with Accurate weapons

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "Astoundingly Awesome Tales", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/tomorrow_s_technology_for_today_s_super_soldiers__od1qgkoqyO2SbhPV.json b/data/packs/books_and_magz.db/tomorrow_s_technology_for_today_s_super_soldiers__od1qgkoqyO2SbhPV.json index 9088a32f..4efb8b01 100644 --- a/data/packs/books_and_magz.db/tomorrow_s_technology_for_today_s_super_soldiers__od1qgkoqyO2SbhPV.json +++ b/data/packs/books_and_magz.db/tomorrow_s_technology_for_today_s_super_soldiers__od1qgkoqyO2SbhPV.json @@ -11,14 +11,16 @@ "description": "

An informational magazine covering topics such as rocket science, robotics, laser technology, and other cutting-edge fields of science and technology.

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from once. If you later learn the perk, you may use that benefit once per scene. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.eTkUS79PttpiHVm0]{Tomorrow's Technology for Today's Super Soldiers}

", "effect": "

After spending a fusion core charge, you may spend 1 Luck point: if you do so the charge is not spent

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "Tesla Science Magazine", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/trapped_in_the_dimension_of_the_pterror_dactyls__IgqLkMbelsAnYC9q.json b/data/packs/books_and_magz.db/trapped_in_the_dimension_of_the_pterror_dactyls__IgqLkMbelsAnYC9q.json index 5597e256..5ebfc19d 100644 --- a/data/packs/books_and_magz.db/trapped_in_the_dimension_of_the_pterror_dactyls__IgqLkMbelsAnYC9q.json +++ b/data/packs/books_and_magz.db/trapped_in_the_dimension_of_the_pterror_dactyls__IgqLkMbelsAnYC9q.json @@ -11,14 +11,16 @@ "description": "

Unstoppables is a comic book published by Hubris Comics prior to the Great War. The series follows an ensemble cast of characters from the Hubris Comics roster, including the Silver Shroud, Mistress of Mystery, The Inspector, Manta Man and Grognak the Barbarian. Together, they form the titular Unstoppables. The cover art for the magazine depicts imagery highlighting the heroes, villains, and the adventure of each issue.

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, allowing you to spend Luck points to avoid a single instance of damage, which you may benefit from once. If you later learn the perk, you may use that benefit as often as you have Luck points to spend on it. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.VrMFCFltA2MKaCcH]{Trapped in the Dimension of the Pterror-dactyls}

", "effect": "

Spend 1 Luck point to avoid all damage from a single melee attack

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "Unstopables", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/trim_the_fat___ZVFaC4f8Ki48eTdx.json b/data/packs/books_and_magz.db/trim_the_fat___ZVFaC4f8Ki48eTdx.json index a911fcdb..1d2d282d 100644 --- a/data/packs/books_and_magz.db/trim_the_fat___ZVFaC4f8Ki48eTdx.json +++ b/data/packs/books_and_magz.db/trim_the_fat___ZVFaC4f8Ki48eTdx.json @@ -11,14 +11,16 @@ "description": "

A pre-War magazine series dedicated to lifestyle and relationships, often covering cultural events, health advice, diet tips, relationship advice, and more.

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from for a single scene. If you later learn the perk, you may use that benefit constantly. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.siFrRn6TjSmxGKas]{Trim the Fat!}

", "effect": "

Regain twice as many HP from fruit or vegetables eaten in one scene

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "Live & Love", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/true_police_stories__WeOABgbveKblRqPw.json b/data/packs/books_and_magz.db/true_police_stories__WeOABgbveKblRqPw.json index 45826b93..74bf2aad 100644 --- a/data/packs/books_and_magz.db/true_police_stories__WeOABgbveKblRqPw.json +++ b/data/packs/books_and_magz.db/true_police_stories__WeOABgbveKblRqPw.json @@ -11,14 +11,16 @@ "description": "

True Police Stories was a pre-War pulp magazine boasting “20 pages—a single issue” that was dedicated to editorialized stories on famous criminal investigations and busts of the time.

\n
    \n
  • Perk: Once, when you roll the damage of an attack, you may spend a Luck point to turn up to three @fos[DC] to any face, rather than rolling them. If you learn this perk, you may do this once per scene.
  • \n
\n

@UUID[Compendium.fallout.perks.Item.DC6xyEVANOUPyy1I]{True Police Stories}

", "effect": "

Once, when you roll the damage of an attack, you may spend a Luck point to turn up to three @fos[DC] to any face, rather than rolling them.

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/u_s__army_goes_to_space__5Y5Dkh9W0XRFfpQV.json b/data/packs/books_and_magz.db/u_s__army_goes_to_space__5Y5Dkh9W0XRFfpQV.json index c79afdae..88204b97 100644 --- a/data/packs/books_and_magz.db/u_s__army_goes_to_space__5Y5Dkh9W0XRFfpQV.json +++ b/data/packs/books_and_magz.db/u_s__army_goes_to_space__5Y5Dkh9W0XRFfpQV.json @@ -11,14 +11,16 @@ "description": "

An informational magazine covering topics such as rocket science, robotics, laser technology, and other cutting-edge fields of science and technology.

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from once. If you later learn the perk, you may use that benefit once per scene. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.lkAJKVOfU1DfjLU9]{U.S. Army Goes to Space}

", "effect": "

On a single attack with an Energy weapon, you inflict a Critical Hit if you inflict 3 or more damage after damage resistance (rather than the normal 5 or more damage)

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "Tesla Science Magazine", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/visit_the_ux_ron_galaxy___szFJr7G3Z8XuW5rk.json b/data/packs/books_and_magz.db/visit_the_ux_ron_galaxy___szFJr7G3Z8XuW5rk.json index aad497b0..6f6bd6b9 100644 --- a/data/packs/books_and_magz.db/visit_the_ux_ron_galaxy___szFJr7G3Z8XuW5rk.json +++ b/data/packs/books_and_magz.db/visit_the_ux_ron_galaxy___szFJr7G3Z8XuW5rk.json @@ -11,14 +11,16 @@ "description": "

Unstoppables is a comic book published by Hubris Comics prior to the Great War. The series follows an ensemble cast of characters from the Hubris Comics roster, including the Silver Shroud, Mistress of Mystery, The Inspector, Manta Man and Grognak the Barbarian. Together, they form the titular Unstoppables. The cover art for the magazine depicts imagery highlighting the heroes, villains, and the adventure of each issue.

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, allowing you to spend Luck points to avoid a single instance of damage, which you may benefit from once. If you later learn the perk, you may use that benefit as often as you have Luck points to spend on it. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.Lf2VvWWVug9jj5Ly]{Visit the Ux-Ron Galaxy!}

", "effect": "

Spend 1 Luck point to avoid all Energy damage from a single attack

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "Unstopables", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/water_aerobics_for_ghouls__hQmjix9JtmveUaBz.json b/data/packs/books_and_magz.db/water_aerobics_for_ghouls__hQmjix9JtmveUaBz.json index 77048f06..b4d15bcc 100644 --- a/data/packs/books_and_magz.db/water_aerobics_for_ghouls__hQmjix9JtmveUaBz.json +++ b/data/packs/books_and_magz.db/water_aerobics_for_ghouls__hQmjix9JtmveUaBz.json @@ -11,14 +11,16 @@ "description": "

The Wasteland Survival Guide is another post-War series of instructional magazines, written and illustrated with crude pen drawings. It has been copied and distributed across the wastelands but can most commonly be found in settlements near to the Capital Wasteland.

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from once. If you later learn the perk, you may use that benefit once per scene. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.xXZcXGsZY6g4QkTl]{Water Aerobics for Ghouls}

", "effect": "

Reduce the difficulty of an Athletics test to swim by 1 (min. 0)

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "Wasteland Survival Guide", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/what_is_plasma__anyway___05H6aksyvOateBtf.json b/data/packs/books_and_magz.db/what_is_plasma__anyway___05H6aksyvOateBtf.json index 1f99bbdf..5bdf4801 100644 --- a/data/packs/books_and_magz.db/what_is_plasma__anyway___05H6aksyvOateBtf.json +++ b/data/packs/books_and_magz.db/what_is_plasma__anyway___05H6aksyvOateBtf.json @@ -11,14 +11,16 @@ "description": "

An informational magazine covering topics such as rocket science, robotics, laser technology, and other cutting-edge fields of science and technology.

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from once. If you later learn the perk, you may use that benefit once per scene. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.MsNkQ2J8T75NE3uJ]{What Is Plasma, Anyway?}

", "effect": "

+2 to Physical and Energy damage resistances vs Plasma weapons

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "Tesla Science Magazine", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/what_sorcery_is_this___oR7Yb9XMHc1Yn49v.json b/data/packs/books_and_magz.db/what_sorcery_is_this___oR7Yb9XMHc1Yn49v.json index b1266fed..551fd86c 100644 --- a/data/packs/books_and_magz.db/what_sorcery_is_this___oR7Yb9XMHc1Yn49v.json +++ b/data/packs/books_and_magz.db/what_sorcery_is_this___oR7Yb9XMHc1Yn49v.json @@ -11,14 +11,16 @@ "description": "

A series of comic books published by Hubris Comics before the Great War. The comics depict the actionpacked adventures of the title character in a prehistoric world.

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from once. If you later learn the perk, you may use that benefit once per scene. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.1KDDs6qPimKnwL9r]{What Sorcery is This?}

", "effect": "

Gain +2 Energy damage resistance against one attack

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "Grognak the Barbarian", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/who_can_stop_the_unstoppable_grog_na_rok____xBhJROt39tupLIhb.json b/data/packs/books_and_magz.db/who_can_stop_the_unstoppable_grog_na_rok____xBhJROt39tupLIhb.json index 464e1ce6..f19b4acf 100644 --- a/data/packs/books_and_magz.db/who_can_stop_the_unstoppable_grog_na_rok____xBhJROt39tupLIhb.json +++ b/data/packs/books_and_magz.db/who_can_stop_the_unstoppable_grog_na_rok____xBhJROt39tupLIhb.json @@ -11,14 +11,16 @@ "description": "

Unstoppables is a comic book published by Hubris Comics prior to the Great War. The series follows an ensemble cast of characters from the Hubris Comics roster, including the Silver Shroud, Mistress of Mystery, The Inspector, Manta Man and Grognak the Barbarian. Together, they form the titular Unstoppables. The cover art for the magazine depicts imagery highlighting the heroes, villains, and the adventure of each issue.

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, allowing you to spend Luck points to avoid a single instance of damage, which you may benefit from once. If you later learn the perk, you may use that benefit as often as you have Luck points to spend on it. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.7heg2KN3JXIllHT2]{Who Can Stop the Unstoppable Grog-Na-Rok?!}

", "effect": "

Spend 2 Luck points to avoid all damage from an attack from a Mutated Human (including Ghouls and super mutants)

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "Unstopables", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/books_and_magz.db/will_robots_rule_the_world___Hb3AdW5QaAHVDlNZ.json b/data/packs/books_and_magz.db/will_robots_rule_the_world___Hb3AdW5QaAHVDlNZ.json index 6ba3e2d2..a194993b 100644 --- a/data/packs/books_and_magz.db/will_robots_rule_the_world___Hb3AdW5QaAHVDlNZ.json +++ b/data/packs/books_and_magz.db/will_robots_rule_the_world___Hb3AdW5QaAHVDlNZ.json @@ -11,14 +11,16 @@ "description": "

An informational magazine covering topics such as rocket science, robotics, laser technology, and other cutting-edge fields of science and technology.

\n
    \n
  • Perk: Depending on the individual issue found, you receive a different perk, which you may benefit from once. If you later learn the perk, you may use that benefit once per scene. Roll to determine the issue found:
  • \n
\n

@UUID[Compendium.fallout.perks.Item.9LAlQMlnpZ2lYqKV]{Will Robots Rule the World?}

", "effect": "

+2 to Physical and Energy damage resistances vs Robots

", "favorite": false, - "issue": "", - "learned": false, - "perk": "", "publication": "Tesla Science Magazine", "quantity": 1, "rarity": 3, + "read": false, "source": "core_rulebook", "stashed": false, + "uses": { + "max": 1, + "value": 0 + }, "weight": 0 }, "type": "books_and_magz" diff --git a/data/packs/fallout_adventures.db/fallout_rpg__quickstart__QVmdwFQgCjY85CTc.json b/data/packs/fallout_adventures.db/fallout_rpg__quickstart__QVmdwFQgCjY85CTc.json index d72333b4..ef7da53c 100644 --- a/data/packs/fallout_adventures.db/fallout_rpg__quickstart__QVmdwFQgCjY85CTc.json +++ b/data/packs/fallout_adventures.db/fallout_rpg__quickstart__QVmdwFQgCjY85CTc.json @@ -7628,6 +7628,8 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, @@ -7699,6 +7701,8 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, @@ -8148,6 +8152,8 @@ }, "origin": "Survivor", "radiation": 0, + "readMagazines": [ + ], "resistance": { "energy": 0, "physical": 0, @@ -10026,6 +10032,8 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, @@ -10097,6 +10105,8 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, @@ -10406,6 +10416,8 @@ }, "origin": "Vault Dweller", "radiation": 0, + "readMagazines": [ + ], "resistance": { "energy": 0, "physical": 0, @@ -11113,6 +11125,8 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, @@ -12780,6 +12794,8 @@ }, "origin": "Ghoul", "radiation": 0, + "readMagazines": [ + ], "resistance": { "energy": 0, "physical": 0, @@ -13977,6 +13993,8 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, @@ -14698,6 +14716,8 @@ }, "origin": "Brotherhood Initiate", "radiation": 0, + "readMagazines": [ + ], "resistance": { "energy": 0, "physical": 0, @@ -16560,6 +16580,8 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, @@ -16867,6 +16889,8 @@ }, "origin": "Mister Handy", "radiation": 0, + "readMagazines": [ + ], "resistance": { "energy": 0, "physical": 0, @@ -17574,6 +17598,8 @@ "isCompanion": false, "level": 1, "levelIncrease": 0, + "magazineUuids": [ + ], "notGhoul": false, "notHuman": false, "notRadiationImmune": false, @@ -19363,6 +19389,8 @@ }, "origin": "Super Mutant", "radiation": 0, + "readMagazines": [ + ], "resistance": { "energy": 0, "physical": 0, diff --git a/i18n/en.yaml b/i18n/en.yaml index d02efb65..208a0591 100644 --- a/i18n/en.yaml +++ b/i18n/en.yaml @@ -158,6 +158,9 @@ FALLOUT.CHAT_MESSAGE.radiation_from_consumable.body: "{actorName} takes {radsTak FALLOUT.CHAT_MESSAGE.radiation_from_consumable.title: Radiation Damage FALLOUT.CHAT_MESSAGE.radiation_from_dirty_water_resisted.body: "{actorName} resisted the {baseRadDamage} radiation damage from consuming Dirty Water" FALLOUT.CHAT_MESSAGE.radiation_from_dirty_water.body: "{actorName} takes {radsTaken} radiation damage from consuming Dirty Water" +FALLOUT.CHAT_MESSAGE.readMagazine.body: "{actorName} reads a magazine entitled \"{itemName}\"" +FALLOUT.CHAT_MESSAGE.readMagazine.title: Magazine Read +FALLOUT.CHAT_MESSAGE.readMagazine.comprehension: The Comprehension roll was successful, so this magazine's benefit can be used an additional time by rereading the magazine FALLOUT.CHAT_MESSAGE.SalvageJunk.Scrapper: Scrapper FALLOUT.CHAT_MESSAGE.scavenging.body: "{location} has been scavenged, taking {time}" FALLOUT.CHAT_MESSAGE.scavenging.title: Location Scavenging @@ -183,12 +186,14 @@ FALLOUT.EffectDelete: Delete Effect FALLOUT.EffectEdit: Edit Effect FALLOUT.EffectToggle: Toggle Effect FALLOUT.equipped: Equipped +FALLOUT.ERRORS.MagazineUsedMaximumTimes: That magazine benefit has already been used the maximum amount of times FALLOUT.ERRORS.NoCharacterTokenSelected: No character token selected FALLOUT.ERRORS.NoPLayerCharacterAssigned: This player has no main character assigned FALLOUT.ERRORS.NoUsableCharacterFound: No useable character was found for this action FALLOUT.ERRORS.ThisWeaponIsBroken: This weapon is broken and can no longer be used. FALLOUT.ERRORS.UnableToDetermineWeaponAttribute: Unable to determine the attribute to use for this weapon. FALLOUT.ERRORS.UnableToDetermineWeaponSkill: Unable to determine the skill to use for this weapon. +FALLOUT.ERRORS.UnableToFindCompendiumVersionOfItem: Unable to locate compendium version of {itemType} named "{name}" FALLOUT.ERRORS.WeaponHasMissingCreatureConfiguration: This weapon does not have a Creature Attribute and/or Creature Skill specified. FALLOUT.FOOD: Food FALLOUT.Form.ScavengingCategoryTables.hint: Here you can specify the default RollTables to use for each category of scavenging result. @@ -547,6 +552,7 @@ FALLOUT.TEMPLATES.Use_Intelligence: Use Intelligence FALLOUT.TEMPLATES.Use_Luck: Use Luck FALLOUT.TEMPLATES.Use_Perception: Use Perception FALLOUT.TEMPLATES.Use_Strength: Use Strength +FALLOUT.TEMPLATES.Uses: Uses FALLOUT.TEMPLATES.VEHICLE_QUALITIES: VEHICLE QUALITIES FALLOUT.TEMPLATES.Wealth: Wealth FALLOUT.TEMPLATES.Weapon_Qualities: Weapon Qualities @@ -640,6 +646,7 @@ FALLOUT.UI.PreWarMoneyRoll: Pre-War Money Roll FALLOUT.UI.Qty: Qty FALLOUT.UI.Quantity: Quantity FALLOUT.UI.Rarity: Rarity +FALLOUT.UI.Read: Read FALLOUT.UI.ROBOT_MODULES: Robot Modules FALLOUT.UI.SaveChanges: Save Changes FALLOUT.UI.Special_Abilities: Special Abilities diff --git a/system/src/config.mjs b/system/src/config.mjs index b31337d6..86d41334 100644 --- a/system/src/config.mjs +++ b/system/src/config.mjs @@ -13,8 +13,10 @@ FALLOUT.SIXTEEN_HOURS_IN_SECONDS = 60 * 60 * 16; FALLOUT.ONE_DAY_IN_SECONDS = 60 * 60 * 24; FALLOUT.DEFAULT_ATTRIBUTES_TOTAL = 40; +FALLOUT.DEFAULT_COMPREHENSION_DICE = 1; FALLOUT.DEFAULT_CONSUMABLE_RAD_DICE = 1; FALLOUT.DEFAULT_JUNK_SALVAGE_MINS = 10; +FALLOUT.DEFAULT_MAX_MAGAZINE_USES = 2; FALLOUT.APPAREL_TYPES = { armor: "FALLOUT.APPAREL.armor", diff --git a/system/src/documents/FalloutActor.mjs b/system/src/documents/FalloutActor.mjs index 1f27cac3..829a5ed7 100644 --- a/system/src/documents/FalloutActor.mjs +++ b/system/src/documents/FalloutActor.mjs @@ -1,3 +1,5 @@ +import FalloutPerkManager from "../system/FalloutPerkManager.mjs"; + export default class FalloutActor extends Actor { isSleeping = false; @@ -160,6 +162,10 @@ export default class FalloutActor extends Actor { prepareData() { super.prepareData(); + if (this.isPlayerCharacter) { + this._preparePerkManager(); + } + this.system.currency.caps = Math.round(this.system.currency.caps); } @@ -874,6 +880,27 @@ export default class FalloutActor extends Actor { } + _preparePerkManager() { + this.perkManager = new FalloutPerkManager(this); + + this.perkManager.setActorAttributes( + foundry.utils.duplicate(this.system.attributes) + ); + + const knownPerks = []; + + for (const item of this.items) { + if (item.type === "perk") { + knownPerks.push({ + identifier: item.name.slugify(), + rank: item.system.rank.value, + }); + } + } + + this.perkManager.setKnownPerks(knownPerks); + } + async _toggleImmunity(type) { if (!["poison", "radiation"].includes(type)) return; @@ -1489,7 +1516,7 @@ export default class FalloutActor extends Actor { this, { title: game.i18n.localize( - `FALLOUT.CHAT_MESSAGE.consumed.${consumableType}.title` + "FALLOUT.CHAT_MESSAGE.readMagazine.title" ), body: game.i18n.format("FALLOUT.CHAT_MESSAGE.consumed.body", { @@ -1622,6 +1649,89 @@ export default class FalloutActor extends Actor { } + async readMagazine(item) { + if (!this.isPlayerCharacter) return; + + const compendiumVersion = + (await fallout.compendiums.books_and_magz(false)).find( + i => i.name.slugify() === item.name.slugify() + ); + + if (!compendiumVersion) { + return ui.notifications.error( + game.i18n.format( + "FALLOUT.ERRORS.UnableToFindCompendiumVersionOfItem", + { + itemType: item.type, + name: item.name, + } + ) + ); + } + + if (item.system.uses.value >= item.system.uses.max) { + return ui.notifications.warn( + game.i18n.localize("FALLOUT.ERRORS.MagazineUsedMaximumTimes") + ); + } + + const itemUpdate = { + "system.uses.value": item.system.uses.value + 1, + "system.read": true, + }; + + // Roll to see if this benefit can be used one extra time if the + // character has the Comprehension perk + // + const comprehensionLevel = this.perkLevel("comprehension"); + let comprehensionSuccess = false; + if (comprehensionLevel > 0 + && item.system.uses.max < CONFIG.FALLOUT.DEFAULT_MAX_MAGAZINE_USES + ) { + const comprehensionDice = CONFIG.FALLOUT.DEFAULT_COMPREHENSION_DICE; + + let formula = `${comprehensionDice}dccs>=5`; + let roll = new Roll(formula); + + let comprehensionRoll = await roll.evaluate(); + + fallout.Roller2D20.showDiceSoNice(comprehensionRoll); + + const result = parseInt(roll.result); + if (result > 0) { + comprehensionSuccess = true; + itemUpdate["system.uses.max"] = item.system.uses.max + 1; + } + } + + item.update(itemUpdate); + + const readMagazines = this.system.readMagazines ?? []; + + if (!readMagazines.includes(compendiumVersion.uuid)) { + readMagazines.push(compendiumVersion.uuid); + } + + fallout.chat.renderReadMagazineMessage( + this, + { + title: game.i18n.localize( + "FALLOUT.CHAT_MESSAGE.readMagazine.title" + ), + body: game.i18n.format("FALLOUT.CHAT_MESSAGE.readMagazine.body", + { + actorName: this.name, + itemName: item.name, + } + ), + benefit: item.system.effect, + comprehensionSuccess, + } + ); + + this.update({"system.readMagazines": readMagazines}); + } + // Reduce Ammo async reduceAmmo(ammoName="", roundsToUse=0) { const [ammoItems, shotsAvailable] = this._getAvailableAmmoType(ammoName); diff --git a/system/src/documents/FalloutItem.mjs b/system/src/documents/FalloutItem.mjs index ab125174..c2419042 100644 --- a/system/src/documents/FalloutItem.mjs +++ b/system/src/documents/FalloutItem.mjs @@ -107,18 +107,12 @@ export default class FalloutItem extends Item { super.prepareData(); switch (this.type) { - // case "ammo": - // this._prepareAmmoData(); - // break; case "consumable": this._prepareConsumableData(); break; case "skill": this._prepareSkillData(); break; - // case "weapon": - // this._prepareWeaponData(); - // break; } } diff --git a/system/src/migrations/updates/Update_241218_1.mjs b/system/src/migrations/updates/Update_241218_1.mjs index 5f151170..163de022 100644 --- a/system/src/migrations/updates/Update_241218_1.mjs +++ b/system/src/migrations/updates/Update_241218_1.mjs @@ -5,7 +5,7 @@ export default class Update_241218_1 extends FalloutUpdateBase { static version = 241218.1; async updateItem(itemData, actorData) { - if (itemData.type !== "perk") return; + if (itemData.type !== "books_and_magz") return; const updateData = { "system.-=issue": null, diff --git a/system/src/migrations/updates/_module.mjs b/system/src/migrations/updates/_module.mjs index 3dc9f57e..33df3104 100644 --- a/system/src/migrations/updates/_module.mjs +++ b/system/src/migrations/updates/_module.mjs @@ -25,3 +25,4 @@ export {default as Update_240511_1} from "./Update_240511_1.mjs"; export {default as Update_240511_2} from "./Update_240511_2.mjs"; export {default as Update_240930_1} from "./Update_240930_1.mjs"; export {default as Update_241212_1} from "./Update_241212_1.mjs"; +export {default as Update_241218_1} from "./Update_241218_1.mjs"; diff --git a/system/src/sheets/FalloutPcSheet.mjs b/system/src/sheets/FalloutPcSheet.mjs index ac944913..88939a03 100644 --- a/system/src/sheets/FalloutPcSheet.mjs +++ b/system/src/sheets/FalloutPcSheet.mjs @@ -206,6 +206,15 @@ export default class FalloutPcSheet extends FalloutBaseActorSheet { if (allUsed) li.slideUp(200, () => this.render(false)); }); + html.find("[data-action='readMagazine']").click(async ev => { + const li = $(ev.currentTarget).parents(".item"); + const item = this.actor.items.get(li.data("itemId")); + + const allUsed = await this.actor.readMagazine(item); + + if (allUsed) li.slideUp(200, () => this.render(false)); + }); + html.find(".injury-mark").contextmenu(async ev => { let status = parseInt(ev.currentTarget.dataset.status); // if (status === 0) diff --git a/system/src/system/FalloutChat.mjs b/system/src/system/FalloutChat.mjs index 5f1cc5c2..b7f8049c 100644 --- a/system/src/system/FalloutChat.mjs +++ b/system/src/system/FalloutChat.mjs @@ -57,6 +57,13 @@ export default class FalloutChat { ); } + static async renderReadMagazineMessage(actor, data, mode) { + this._renderChatMessage(actor, data, + "systems/fallout/templates/chat/read-magazine.hbs", + mode + ); + } + static async renderResetLuckPointsMessage(data, mode) { this._renderChatMessage(null, data, "systems/fallout/templates/chat/reset-luck-points.hbs", diff --git a/system/src/system/FalloutPerkManager.mjs b/system/src/system/FalloutPerkManager.mjs new file mode 100644 index 00000000..5df3ac4a --- /dev/null +++ b/system/src/system/FalloutPerkManager.mjs @@ -0,0 +1,95 @@ +export default class FalloutPerkManager { + constructor(actor, options={}) { + this.actorOwnedPerksLut = {}; + this.actorAttributes = []; + this.actorSkills = []; + } + + async getAvailablePerks() { + const selectedPerks = new Collection(); + + const allPerks = await fallout.compendiums.perks(); + for (const perk of allPerks) { + perk.system.multiRank = perk.system.rank.max > 1; + perk.system.perkIdentifier = perk.name.slugify(); + + // Make sure we meet the requirements + const meetsRequirements = await this._meetsRequirements(perk); + + if (meetsRequirements) { + let rank = 1; + + if (Object.hasOwn( + this.actorOwnedPerksLut, perk.system.perkIdentifier + )) { + const current = this.actorOwnedPerksLut[ + perk.system.perkIdentifier + ]; + + rank = current + 1; + } + + selectedPerks.set(perk._id, {item: perk, rank}); + } + } + + return selectedPerks; + } + + async setActorAttributes(attributes) { + this.actorAttributes = attributes; + } + + async setKnownPerks(perks) { + this.actorOwnedPerksLut = {}; + + for (const perk of perks) { + this.actorOwnedPerksLut[perk.identifier] = perk.rank; + } + } + + async _meetsRequirements(perk) { + let requirementsMet = true; + + // First make sure that if the character already knows the talent that + // they have not maxed it out + const knownTalent = this.actorOwnedPerksLut[ + perk.system.perkIdentifier + ]; + + if (knownTalent) { + if (knownTalent >= perk.system.rank.max) { + requirementsMet = false; + } + } + + // Are we the correct level for the next rank of the perk? + // + const playerLevel = this.actor?.system?.level?.value ?? 1; + if (perk.system.multiRank) { + const nextPerkRank = (knownTalent ?? 0) + 1; + + const startLevel = perk.system?.requirementsEx?.level ?? 1; + const rankLevelStep = perk.system?.requirementsEx?.levelIncrease ?? 1; + + const levelRequired = startLevel + ((nextPerkRank - 1) * rankLevelStep); + + if (playerLevel < levelRequired) requirementsMet = false; + } + else if (playerLevel < perk.system?.requirementsEx?.level ?? 1) { + requirementsMet = false; + } + + + // Do we meet the attribute requirements? + // + for (const attribute of perk.system.requirementsEx.attributes) { + const actorValue = this.actorAttributes[attribute].value ?? 0; + const perkValue = perk.system.requirementsEx.attributes[attribute] ?? 0; + + if (actorValue < perkValue) requirementsMet = false; + } + + return requirementsMet; + } +} diff --git a/system/src/utils/FalloutUtils.mjs b/system/src/utils/FalloutUtils.mjs index 9118034a..6db6205b 100644 --- a/system/src/utils/FalloutUtils.mjs +++ b/system/src/utils/FalloutUtils.mjs @@ -77,6 +77,7 @@ export default class FalloutUtils { return majorVersion >= version; } + // Attempts to get the current actor for a user. If the current user is the // GM then the currently selected token actor will be used if possible, // otherwise diff --git a/system/templates/actor/_shared-partials/simple-expandable-item.hbs b/system/templates/actor/_shared-partials/simple-expandable-item.hbs index 55ec4bc9..2d56eaa6 100644 --- a/system/templates/actor/_shared-partials/simple-expandable-item.hbs +++ b/system/templates/actor/_shared-partials/simple-expandable-item.hbs @@ -46,6 +46,15 @@ {{/unless}} {{/ifCond}} + {{#ifCond item.type '===' 'books_and_magz'}} + + + + {{/ifCond}} {{#if item.canBeEquipped}} +
+

{{title}}

+

{{body}}

+ {{#if comprehensionSuccess}} + + {{localize "FALLOUT.CHAT_MESSAGE.readMagazine.comprehension"}} + + {{/if}} +
+
+ {{{benefit}}} +
+
+
diff --git a/system/templates/item/books_and_magz/attributes-tab.hbs b/system/templates/item/books_and_magz/attributes-tab.hbs index 5fa7fd70..b9e658c9 100644 --- a/system/templates/item/books_and_magz/attributes-tab.hbs +++ b/system/templates/item/books_and_magz/attributes-tab.hbs @@ -12,15 +12,37 @@ > +
+ + + + + / + + +
+