From 236c4bd9791e1f288039556867a655b9b03f2101 Mon Sep 17 00:00:00 2001 From: vonv <44206935+vonv@users.noreply.github.com> Date: Wed, 5 Jul 2023 18:02:57 +0200 Subject: [PATCH 1/8] Update fr.json --- lang/fr.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lang/fr.json b/lang/fr.json index 008ab05c..9a76c265 100644 --- a/lang/fr.json +++ b/lang/fr.json @@ -1284,6 +1284,6 @@ "CoC7.CoCIDFlag.error.document-not-found": "Item inconnu dans le monde ou dans les compendiums pour le CoC ID \"{cocid}\", langue \"{lang}\", et l'époque \"{era}\". Vérifiez l'époque du monde.", "CoC7.CoCIDFlag.error.documents-not-found": "Items inconnus dans le monde ou dans les compendiums pour les CoC IDs ({cocids}), langue \"{lang}\", et l'époque \"{era}\". Vérifiez l'époque du monde.", - "CoC7.CoCIDBatch.title": "§§§Batch set System ID (CoC ID)", + "CoC7.CoCIDBatch.title": "Automate du System ID (CoC ID)", "CoC7.CoCIDBatch.summary": "Le système CoC7 a ajouté le System ID (CoC ID). Cela permet d'identifier les items FoundryVTT, les compétences par exemple. Cette page vous permettra de positionner l'identifiant pour des '{type}' existant(e)s. Le System ID doit utiliser les traductions anglaises pour pouvoir supporter le portage dans d'autres langues." } From e072b9f6324e1795ba8c246e2730c20f4929f559 Mon Sep 17 00:00:00 2001 From: snap01 <43982555+snap01@users.noreply.github.com> Date: Sun, 16 Jul 2023 11:40:09 +0100 Subject: [PATCH 2/8] When editing npc/creature skills edit the %value directly --- module/actors/actor.js | 2 +- module/items/sheets/skill.js | 1 + templates/items/skill-sheet.html | 7 +++---- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/module/actors/actor.js b/module/actors/actor.js index 05b5f49e..11e2c6a2 100644 --- a/module/actors/actor.js +++ b/module/actors/actor.js @@ -758,7 +758,7 @@ export class CoCActor extends Actor { if (!this.getItemIdByName(game.i18n.localize(COC7.newSkillName))) { return this.createSkill( game.i18n.localize(COC7.newSkillName), - null, + (this.type !== 'character' ? 1 : null), showSheet ) } diff --git a/module/items/sheets/skill.js b/module/items/sheets/skill.js index f9747613..50d54736 100644 --- a/module/items/sheets/skill.js +++ b/module/items/sheets/skill.js @@ -54,6 +54,7 @@ export class CoC7SkillSheet extends ItemSheet { const sheetData = super.getData() sheetData.hasOwner = this.item.isEmbedded === true + sheetData.hadNonCharacterOwner = sheetData.hasOwner && this.actor?.type !== 'character' sheetData.effects = CoC7ActiveEffect.prepareActiveEffectCategories( this.item.effects diff --git a/templates/items/skill-sheet.html b/templates/items/skill-sheet.html index 61ea6883..02778476 100644 --- a/templates/items/skill-sheet.html +++ b/templates/items/skill-sheet.html @@ -14,12 +14,11 @@ {{else}} {{/if}} - {{#if hasOwner}} - - + {{#if hadNonCharacterOwner}} + + {{else}} - {{/if}} From 6feea841d528a15eb90e625ba681d50abaf2c0b1 Mon Sep 17 00:00:00 2001 From: snap01 <43982555+snap01@users.noreply.github.com> Date: Sun, 16 Jul 2023 15:28:50 +0100 Subject: [PATCH 3/8] Fix issues toggling status effects Refactor any spec dropdown selection --- module/actors/actor.js | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/module/actors/actor.js b/module/actors/actor.js index 11e2c6a2..87b4b8b3 100644 --- a/module/actors/actor.js +++ b/module/actors/actor.js @@ -934,7 +934,7 @@ export class CoCActor extends Actor { const group = game.system.api.cocid.guessGroupFromDocument(data) if (group) { skillList = (await game.system.api.cocid.fromCoCIDRegexBest({ cocidRegExp: new RegExp('^' + CoC7Utilities.quoteRegExp(group) + '.+$'), type: 'i' })).filter(item => { - return !(item.system.properties?.special && !!(item.system.properties?.requiresname || item.system.properties?.picknameonly)) + return (item.system.properties?.special ?? false) && !(item.system.properties?.requiresname ?? false) && !(item.system.properties?.picknameonly ?? false) }) } if (data.system?.flags?.occupation || data.system?.flags?.archetype) { @@ -2126,9 +2126,9 @@ export class CoCActor extends Actor { ? parseInt(this.system.attribs.san.dailyLoss) : 0 totalLoss = totalLoss + loss - if (loss >= 5) this.setCondition(COC7.status.tempoInsane) + if (loss >= 5) await this.setCondition(COC7.status.tempoInsane) if (totalLoss >= this.system.attribs.san.dailyLimit) { - this.setCondition(COC7.status.indefInsane) + await this.setCondition(COC7.status.indefInsane) } await this.update({ 'system.attribs.san.value': value, @@ -3250,6 +3250,9 @@ export class CoCActor extends Actor { case COC7.status.dying: case COC7.status.prone: case COC7.status.dead: + await this.update({ + [`system.conditions.${conditionName}.-=value`]: null + }) await this.update({ [`system.conditions.${conditionName}.value`]: false }) @@ -3623,4 +3626,9 @@ export class CoCActor extends Actor { // if( injuried) ui.notifications.info( game.i18n.format('CoC7.InfoActorInjuried', {actor: token.name})); // return; // } + + // async update (data = {}, context = {}) { + // console.log('>>>>', data, context) + // super.update(data, context) + // } } From 3f653f16d055d65a54f5b7c018e7c228c95e3255 Mon Sep 17 00:00:00 2001 From: snap01 <43982555+snap01@users.noreply.github.com> Date: Sun, 16 Jul 2023 15:31:41 +0100 Subject: [PATCH 4/8] Update CHANGELOG.md --- .github/CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/CHANGELOG.md b/.github/CHANGELOG.md index 46c9fe70..1fa68935 100644 --- a/.github/CHANGELOG.md +++ b/.github/CHANGELOG.md @@ -9,6 +9,10 @@ Happy gaming ! When not specified, all changes were made by @castanhocorreia, @HavlockV, and @snap01. +- Fix indefinite insanity marker not clearing properly if set automatically #1375 +- When editing npc/creature skills edit the %value directly +- Update to French localization, thanks to @vonv #1373 + ## Version 0.10.4 When not specified, all changes were made by @castanhocorreia, @HavlockV, and @snap01. From e26ee125c0951657ed0a8b972511e52a1e246a44 Mon Sep 17 00:00:00 2001 From: snap01 <43982555+snap01@users.noreply.github.com> Date: Sun, 23 Jul 2023 09:38:00 +0100 Subject: [PATCH 5/8] Add Regency Cthulhu era flag --- compendiums/skills.yaml | 1479 ++++++++++++++++++---------------- lang/en.json | 2 + module/apps/coc-id-editor.js | 2 +- module/config.js | 4 +- packs/skills.db | 164 ++-- 5 files changed, 851 insertions(+), 800 deletions(-) diff --git a/compendiums/skills.yaml b/compendiums/skills.yaml index 97ba1f12..61239dba 100644 --- a/compendiums/skills.yaml +++ b/compendiums/skills.yaml @@ -1,16 +1,16 @@ -_id: 0qCTuRFUCACSEsWj -name: Mechanical Repair +_id: UOuN0gESXPp2HXwH +name: Accounting type: skill -img: systems/CoC7/assets/icons/skills/mechanical_repair.svg +img: systems/CoC7/assets/icons/skills/accounting.svg system: description: value:

See the Call of Cthulhu - 7th Ed Core Rulebook

- base: 10 + base: 5 properties: push: true flags: cocidFlag: - id: i.skill.mechanical-repair + id: i.skill.accounting lang: en eras: standard: true @@ -20,22 +20,24 @@ flags: downDarkerTrails: true downDarkerTrailsPulp: true gasLight: true + regency: true + regencyPulp: true priority: 0 --- -_id: 0rlp7EuZDzQGjIYf -name: Science (Zoology) +_id: dQ4zUjSteT3sgwKx +name: Animal Handling type: skill -img: systems/CoC7/assets/icons/skills/science_zoology.svg +img: systems/CoC7/assets/icons/skills/animal_handling.svg system: description: value:

See the Call of Cthulhu - 7th Ed Core Rulebook

- base: 1 + base: 5 properties: - special: true push: true + rarity: true flags: cocidFlag: - id: i.skill.science-zoology + id: i.skill.animal-handling lang: en eras: standard: true @@ -44,218 +46,224 @@ flags: pulp: true priority: 0 --- -_id: 1c3fdvpQtvZf5YXK -name: Navigate +_id: ovIp66Luwfwbq28F +name: Anthropology type: skill -img: systems/CoC7/assets/icons/skills/navigate.svg +img: systems/CoC7/assets/icons/skills/anthropology.svg system: description: value:

See the Call of Cthulhu - 7th Ed Core Rulebook

- base: 10 + base: 1 properties: push: true flags: cocidFlag: - id: i.skill.navigate + id: i.skill.anthropology lang: en + eras: + standard: true + modern: true + downDarkerTrails: true + downDarkerTrailsPulp: true + gasLight: true + regency: true + regencyPulp: true priority: 0 --- -_id: 1zSIeY0eat2AxQok -name: Swim +_id: wOs3gryeGRPkGoWD +name: Appraise type: skill -img: systems/CoC7/assets/icons/skills/swim.svg +img: systems/CoC7/assets/icons/skills/appraise.svg system: description: value:

See the Call of Cthulhu - 7th Ed Core Rulebook

- base: 20 + base: 5 properties: push: true flags: cocidFlag: - id: i.skill.swim + id: i.skill.appraise lang: en - eras: - standard: true - modern: true - modernPulp: true - pulp: true - downDarkerTrails: true - downDarkerTrailsPulp: true - gasLight: true priority: 0 --- -_id: 23vdyJDDfjyneH3I -name: Firearms (Heavy Weapons) +_id: GHhkcJUqjcP4lToY +name: Archaeology type: skill -img: systems/CoC7/assets/icons/skills/firearms_heavy_weapons.svg +img: systems/CoC7/assets/icons/skills/archaeology.svg system: description: value:

See the Call of Cthulhu - 7th Ed Core Rulebook

- base: 10 + base: 1 properties: - firearm: true - combat: true - special: true + push: true flags: cocidFlag: - id: i.skill.firearms-heavy-weapons + id: i.skill.archaeology lang: en eras: standard: true modern: true modernPulp: true pulp: true + downDarkerTrails: true + downDarkerTrailsPulp: true + gasLight: true priority: 0 --- -_id: 35dvJDsrY8JipXRU -name: Firearms (Flamethrower) +_id: m6V53lyfz7zh95FE +name: Art/Craft (Acting) type: skill -img: systems/CoC7/assets/icons/skills/firearms_flamethrower.svg +img: systems/CoC7/assets/icons/skills/art_craft_acting.svg system: description: value:

See the Call of Cthulhu - 7th Ed Core Rulebook

- base: 10 + base: 5 properties: - firearm: true - combat: true special: true + push: true flags: cocidFlag: - id: i.skill.firearms-flamethrower + id: i.skill.art-craft-acting lang: en eras: standard: true modern: true modernPulp: true pulp: true + gasLight: true + regencyPulp: true + regency: true priority: 0 --- -_id: 4lN6yD6zwbjX6BFp -name: Diving +_id: HAuFBG4ZT2yO9yn7 +name: Art/Craft (Any) type: skill -img: systems/CoC7/assets/icons/skills/diving_helmet.svg +img: systems/CoC7/assets/icons/skills/art_craft_any.svg system: description: value:

See the Call of Cthulhu - 7th Ed Core Rulebook

- base: 1 + base: 5 properties: + special: true + requiresname: true push: true - rarity: true flags: cocidFlag: - id: i.skill.diving + id: i.skill.art-craft-any lang: en - eras: - standard: true - modern: true - downDarkerTrails: true - downDarkerTrailsPulp: true priority: 0 --- -_id: 64hnBZNC8FM7oTkg -name: Law +_id: m8sBJxvuUdtQ2mDU +name: Art/Craft (Fine Art) type: skill -img: systems/CoC7/assets/icons/skills/law.svg +img: systems/CoC7/assets/icons/skills/art_craft_fine_art.svg system: description: value:

See the Call of Cthulhu - 7th Ed Core Rulebook

base: 5 properties: + special: true push: true flags: cocidFlag: - id: i.skill.law + id: i.skill.art-craft-fine-art lang: en eras: standard: true modern: true modernPulp: true pulp: true - downDarkerTrails: true - downDarkerTrailsPulp: true gasLight: true + regency: true + regencyPulp: true priority: 0 --- -_id: 6pSfZVS68jSHxa5T -name: Occult +_id: zcvnv8qY4GrVwwTL +name: Art/Craft (Forgery) type: skill -img: systems/CoC7/assets/icons/skills/occult.svg +img: systems/CoC7/assets/icons/skills/art_craft_forgery.svg system: description: value:

See the Call of Cthulhu - 7th Ed Core Rulebook

base: 5 properties: + special: true push: true flags: cocidFlag: - id: i.skill.occult + id: i.skill.art-craft-forgery lang: en + eras: + standard: true + modern: true + modernPulp: true + pulp: true + gasLight: true + regency: true + regencyPulp: true priority: 0 --- -_id: 8twBT7nbyh5dEp3J -name: Science (Chemistry) +_id: WLYZNASZ2YP8zN3g +name: Art/Craft (Photography) type: skill -img: systems/CoC7/assets/icons/skills/science_chemistry.svg +img: systems/CoC7/assets/icons/skills/art_craft_photography.svg system: description: value:

See the Call of Cthulhu - 7th Ed Core Rulebook

- base: 1 + base: 5 properties: special: true push: true flags: cocidFlag: - id: i.skill.science-chemistry + id: i.skill.art-craft-photography lang: en eras: standard: true modern: true modernPulp: true pulp: true + gasLight: true priority: 0 --- -_id: 9zy7PLmTLXknFce4 -name: Science (Engineering) +_id: JgtxiN3KzooOWIQV +name: Charm type: skill -img: systems/CoC7/assets/icons/skills/spanner.svg +img: systems/CoC7/assets/icons/skills/charm.svg system: description: value:

See the Call of Cthulhu - 7th Ed Core Rulebook

- base: 1 + base: 15 properties: - special: true push: true flags: cocidFlag: - id: i.skill.science-engineering + id: i.skill.charm lang: en - eras: - standard: true - modern: true - modernPulp: true - pulp: true priority: 0 --- -_id: AcUIbZFhfoXqQP2m -name: Track +_id: I80gmmo830LuOBKl +name: Civics type: skill -img: systems/CoC7/assets/icons/skills/track.svg +img: systems/CoC7/assets/icons/skills/shaking-hands.svg system: description: - value:

See the Call of Cthulhu - 7th Ed Core Rulebook

+ value:

See the Cthulhu Invictus

base: 10 properties: push: true flags: cocidFlag: - id: i.skill.track + id: i.skill.civics lang: en + eras: + invictus: true priority: 0 --- -_id: BcWHh8EhmyKj7bNk -name: Library Use +_id: oh5eFj00Wohnx1My +name: Climb type: skill -img: systems/CoC7/assets/icons/skills/library_use.svg +img: systems/CoC7/assets/icons/skills/climb.svg system: description: value:

See the Call of Cthulhu - 7th Ed Core Rulebook

@@ -264,121 +272,108 @@ system: push: true flags: cocidFlag: - id: i.skill.library-use + id: i.skill.climb lang: en - eras: - standard: true - modern: true - modernPulp: true - pulp: true - downDarkerTrails: true - downDarkerTrailsPulp: true - gasLight: true priority: 0 --- -_id: DcV524K0jNfjDEZC -name: Stealth +_id: VZSv9eodMQ4ZPcrO +name: Computer Use type: skill -img: systems/CoC7/assets/icons/skills/stealth.svg +img: systems/CoC7/assets/icons/skills/computer_use.svg system: description: value:

See the Call of Cthulhu - 7th Ed Core Rulebook

- base: 20 + base: 5 properties: push: true flags: cocidFlag: - id: i.skill.stealth + id: i.skill.computer-use lang: en eras: - standard: true modern: true modernPulp: true - pulp: true - downDarkerTrails: true - downDarkerTrailsPulp: true - darkAges: true - darkAgesPulp: true - gasLight: true priority: 0 --- -_id: Dh6sHWep0qKQmi3I -name: Science (Physics) +_id: vYrJ5h9cIQBzvw8E +name: Credit Rating type: skill -img: systems/CoC7/assets/icons/skills/science_physics.svg +img: systems/CoC7/assets/icons/skills/credit_rating.svg system: description: value:

See the Call of Cthulhu - 7th Ed Core Rulebook

- base: 1 + base: 0 properties: - special: true + noxpgain: true push: true flags: cocidFlag: - id: i.skill.science-physics + id: i.skill.credit-rating lang: en eras: standard: true modern: true modernPulp: true pulp: true + downDarkerTrails: true + downDarkerTrailsPulp: true + gasLight: true priority: 0 --- -_id: EMA6uEtQBgJtBcPl -name: Rope Use +_id: WJky66ezt2ef5ksH +name: Cthulhu Mythos type: skill -img: systems/CoC7/assets/icons/skills/lasso.svg +img: systems/CoC7/assets/icons/skills/cthulhu_mythos.svg system: description: - value:

See the Down Darker Trails Rulebook

- base: 5 + value:

See the Call of Cthulhu - 7th Ed Core Rulebook

+ base: 0 properties: - push: true + noadjustments: true + noxpgain: true flags: cocidFlag: - id: i.skill.rope-use + id: i.skill.cthulhu-mythos lang: en - eras: - downDarkerTrails: true - downDarkerTrailsPulp: true priority: 0 --- -_id: Ed8OShyl7D834Ihk -name: Fighting (Chainsaw) +_id: bJt90h73GqdP7ti6 +name: Demolitions type: skill -img: systems/CoC7/assets/icons/skills/fighting_chainsaw.svg +img: systems/CoC7/assets/icons/skills/demolitions.svg system: description: value:

See the Call of Cthulhu - 7th Ed Core Rulebook

- base: 10 + base: 1 properties: - fighting: true - combat: true - special: true + rarity: true + push: true flags: cocidFlag: - id: i.skill.fighting-chainsaw + id: i.skill.demolitions lang: en eras: standard: true modern: true modernPulp: true pulp: true + downDarkerTrails: true + downDarkerTrailsPulp: true priority: 0 --- -_id: GHhkcJUqjcP4lToY -name: Archaeology -type: skill -img: systems/CoC7/assets/icons/skills/archaeology.svg +_id: gzNPM9gbx0EZffBV +name: Disguise +type: skill +img: systems/CoC7/assets/icons/skills/disguise.svg system: description: value:

See the Call of Cthulhu - 7th Ed Core Rulebook

- base: 1 + base: 5 properties: push: true flags: cocidFlag: - id: i.skill.archaeology + id: i.skill.disguise lang: en eras: standard: true @@ -387,124 +382,133 @@ flags: pulp: true downDarkerTrails: true downDarkerTrailsPulp: true + darkAges: true + darkAgesPulp: true gasLight: true + regency: true + regencyPulp: true priority: 0 --- -_id: HAuFBG4ZT2yO9yn7 -name: Art/Craft (Any) +_id: 4lN6yD6zwbjX6BFp +name: Diving type: skill -img: systems/CoC7/assets/icons/skills/art_craft_any.svg +img: systems/CoC7/assets/icons/skills/diving_helmet.svg system: description: value:

See the Call of Cthulhu - 7th Ed Core Rulebook

- base: 5 + base: 1 properties: - special: true - requiresname: true push: true + rarity: true flags: cocidFlag: - id: i.skill.art-craft-any + id: i.skill.diving lang: en + eras: + standard: true + modern: true + downDarkerTrails: true + downDarkerTrailsPulp: true priority: 0 --- -_id: HzOGu2yLcL9obry3 -name: Trap +_id: wK8XxNj9QwXlGFEb +name: Dodge type: skill -img: systems/CoC7/assets/icons/skills/wolf-trap.svg +img: systems/CoC7/assets/icons/skills/dodge.svg system: description: - value:

See the Down Darker Trails Rulebook

- base: 10 - properties: - push: true + value:

See the Call of Cthulhu - 7th Ed Core Rulebook

+ base: 1/2*@DEX flags: cocidFlag: - id: i.skill.trap + id: i.skill.dodge lang: en - eras: - downDarkerTrails: true - downDarkerTrailsPulp: true priority: 0 --- -_id: I80gmmo830LuOBKl -name: Civics +_id: Og2OWQH93aSDWAMZ +name: Drive Auto type: skill -img: systems/CoC7/assets/icons/skills/shaking-hands.svg +img: systems/CoC7/assets/icons/skills/drive_auto.svg system: description: - value:

See the Cthulhu Invictus

- base: 10 + value:

See the Call of Cthulhu - 7th Ed Core Rulebook

+ base: 20 properties: push: true flags: cocidFlag: - id: i.skill.civics + id: i.skill.drive-auto lang: en eras: - invictus: true + standard: true + modern: true + modernPulp: true + pulp: true priority: 0 --- -_id: IBSDR6U4dE1uejVp -name: Science (Biology) +_id: Sxviv60td6kbS4kp +name: Drive Carriage type: skill -img: systems/CoC7/assets/icons/skills/science_biology.svg +img: systems/CoC7/assets/icons/skills/cartwheel.svg system: description: - value:

See the Call of Cthulhu - 7th Ed Core Rulebook

- base: 1 + value:

See the Cthulhu by Gaslight

+ base: 20 properties: - special: true push: true flags: cocidFlag: - id: i.skill.science-biology + id: i.skill.drive-carriage lang: en eras: - standard: true - modern: true - modernPulp: true - pulp: true + gasLight: true + regency: true + regencyPulp: true priority: 0 --- -_id: IttOdCAGTeE6VU3F -name: Fighting (Spear) +_id: rAK5soSX1n3jXj2A +name: Drive Horse / Oxen type: skill -img: systems/CoC7/assets/icons/skills/fighting_spear.svg +img: systems/CoC7/assets/icons/skills/cartwheel.svg system: description: - value:

See the Call of Cthulhu - 7th Ed Core Rulebook

+ value:

See the Cthulhu Invictus

base: 20 properties: - fighting: true - combat: true - special: true + push: true flags: cocidFlag: - id: i.skill.fighting-spear + id: i.skill.drive-horse-oxen lang: en + eras: + darkAges: true + darkAgesPulp: true + invictus: true priority: 0 --- -_id: JgtxiN3KzooOWIQV -name: Charm +_id: sqenne0VZoF54W5k +name: Drive Wagon / Coach type: skill -img: systems/CoC7/assets/icons/skills/charm.svg +img: systems/CoC7/assets/icons/skills/cartwheel.svg system: description: - value:

See the Call of Cthulhu - 7th Ed Core Rulebook

- base: 15 + value:

See the Down Darker Trails Rulebook

+ base: 20 properties: push: true flags: cocidFlag: - id: i.skill.charm + id: i.skill.drive-wagon-coach lang: en + eras: + downDarkerTrails: true + downDarkerTrailsPulp: true priority: 0 --- -_id: KKFNX5M4LtEtiuxs -name: Sleight of Hand +_id: NBkq8oCGM1FjmsyF +name: Electrical Repair type: skill -img: systems/CoC7/assets/icons/skills/sleight_of_hand.svg +img: systems/CoC7/assets/icons/skills/electrical_repair.svg system: description: value:

See the Call of Cthulhu - 7th Ed Core Rulebook

@@ -513,169 +517,138 @@ system: push: true flags: cocidFlag: - id: i.skill.sleight-of-hand + id: i.skill.electrical-repair lang: en eras: standard: true modern: true modernPulp: true pulp: true - downDarkerTrails: true - downDarkerTrailsPulp: true - gasLight: true priority: 0 --- -_id: KmDGtn7ukUFVb265 -name: Firearms (Handgun) +_id: oEfvPMTx0cgyPlgV +name: Electronics type: skill -img: systems/CoC7/assets/icons/skills/firearms_handgun.svg +img: systems/CoC7/assets/icons/skills/electronics.svg system: description: value:

See the Call of Cthulhu - 7th Ed Core Rulebook

- base: 20 + base: 1 properties: - firearm: true - combat: true - special: true + push: true flags: cocidFlag: - id: i.skill.firearms-handgun + id: i.skill.electronics lang: en eras: - standard: true modern: true modernPulp: true - pulp: true - downDarkerTrails: true - downDarkerTrailsPulp: true - gasLight: true priority: 0 --- -_id: KvZuYcg3AmVrwKi2 -name: Science (Any) +_id: t7uiYybrk8dHFdjp +name: Empire type: skill -img: systems/CoC7/assets/icons/skills/science_any.svg +img: systems/CoC7/assets/icons/skills/laurel_crown.svg system: description: - value:

See the Call of Cthulhu - 7th Ed Core Rulebook

- base: 1 + value:

See the Cthulhu Invictus

+ base: 25 properties: - special: true - requiresname: true push: true flags: cocidFlag: - id: i.skill.science-any + id: i.skill.empire lang: en + eras: + invictus: true priority: 0 --- -_id: MFR4eR79niGaLfph -name: Psychology +_id: ld78TITwKNFPpanQ +name: Fast Talk type: skill -img: systems/CoC7/assets/icons/skills/psychology.svg +img: systems/CoC7/assets/icons/skills/fast_talk.svg system: description: value:

See the Call of Cthulhu - 7th Ed Core Rulebook

- base: 10 + base: 5 properties: push: true flags: cocidFlag: - id: i.skill.psychology + id: i.skill.fast-talk lang: en - eras: - standard: true - modern: true - modernPulp: true - pulp: true - downDarkerTrails: true - downDarkerTrailsPulp: true - gasLight: true priority: 0 --- -_id: MRbFH52Zh9TzhLBh -name: Locksmith +_id: 4y7D44TpkHVKxA7s +name: Fighting (Any) type: skill -img: systems/CoC7/assets/icons/skills/locksmith.svg +img: systems/CoC7/assets/icons/skills/fighting_brawl.svg system: description: - value:

See the Call of Cthulhu - 7th Ed Core Rulebook

- base: 1 + value:

Use in occupations / archetypes to prompt to select one Fighting skill

+ base: 0 properties: - push: true + fighting: true + combat: true + special: true + picknameonly: true flags: cocidFlag: - id: i.skill.locksmith + id: i.skill.fighting-any lang: en - eras: - standard: true - modern: true - modernPulp: true - pulp: true - downDarkerTrails: true - downDarkerTrailsPulp: true - gasLight: true priority: 0 --- -_id: MoAB0NRNlpEc2qWr -name: Listen +_id: T8fSLCwSD8C0iK8t +name: Fighting (Axe) type: skill -img: systems/CoC7/assets/icons/skills/listen.svg +img: systems/CoC7/assets/icons/skills/fighting_axe.svg system: description: value:

See the Call of Cthulhu - 7th Ed Core Rulebook

- base: 20 + base: 15 properties: - push: true + fighting: true + combat: true + special: true flags: cocidFlag: - id: i.skill.listen + id: i.skill.fighting-axe lang: en - eras: - standard: true - modern: true - modernPulp: true - pulp: true - downDarkerTrails: true - downDarkerTrailsPulp: true - gasLight: true priority: 0 --- -_id: NBkq8oCGM1FjmsyF -name: Electrical Repair +_id: vS8bsPWFlwgOecoB +name: Fighting (Brawl) type: skill -img: systems/CoC7/assets/icons/skills/electrical_repair.svg +img: systems/CoC7/assets/icons/skills/fighting_brawl.svg system: description: value:

See the Call of Cthulhu - 7th Ed Core Rulebook

- base: 10 + base: 25 properties: - push: true + fighting: true + combat: true + special: true flags: cocidFlag: - id: i.skill.electrical-repair + id: i.skill.fighting-brawl lang: en - eras: - standard: true - modern: true - modernPulp: true - pulp: true priority: 0 --- -_id: Nw5tSvi2Knxlqmg1 -name: Science (Forensics) +_id: Ed8OShyl7D834Ihk +name: Fighting (Chainsaw) type: skill -img: systems/CoC7/assets/icons/skills/science_forensics.svg +img: systems/CoC7/assets/icons/skills/fighting_chainsaw.svg system: description: value:

See the Call of Cthulhu - 7th Ed Core Rulebook

- base: 1 + base: 10 properties: + fighting: true + combat: true special: true - push: true flags: cocidFlag: - id: i.skill.science-forensics + id: i.skill.fighting-chainsaw lang: en eras: standard: true @@ -707,145 +680,141 @@ flags: pulp: true priority: 0 --- -_id: Og2OWQH93aSDWAMZ -name: Drive Auto +_id: TPOu48DT4QIrqE68 +name: Fighting (Garrote) type: skill -img: systems/CoC7/assets/icons/skills/drive_auto.svg +img: systems/CoC7/assets/icons/skills/fighting_garrote.svg system: description: value:

See the Call of Cthulhu - 7th Ed Core Rulebook

- base: 20 + base: 15 properties: - push: true + fighting: true + combat: true + special: true flags: cocidFlag: - id: i.skill.drive-auto + id: i.skill.fighting-garrote lang: en - eras: - standard: true - modern: true - modernPulp: true - pulp: true priority: 0 --- -_id: Pb3QI7x9xJVeXi8a -name: Fighting (Whip) +_id: IttOdCAGTeE6VU3F +name: Fighting (Spear) type: skill -img: systems/CoC7/assets/icons/skills/fighting_whip.svg +img: systems/CoC7/assets/icons/skills/fighting_spear.svg system: description: value:

See the Call of Cthulhu - 7th Ed Core Rulebook

- base: 5 + base: 20 properties: fighting: true combat: true special: true flags: cocidFlag: - id: i.skill.fighting-whip + id: i.skill.fighting-spear lang: en priority: 0 --- -_id: QcomAOgmOS5g3dsh -name: Firearms (Machine Gun) +_id: hRPbMl2N0t6aBlyc +name: Fighting (Sword) type: skill -img: systems/CoC7/assets/icons/skills/firearms_machine_gun.svg +img: systems/CoC7/assets/icons/skills/fighting_sword.svg system: description: value:

See the Call of Cthulhu - 7th Ed Core Rulebook

- base: 10 + base: 20 properties: - firearm: true + fighting: true combat: true special: true flags: cocidFlag: - id: i.skill.firearms-machine-gun + id: i.skill.fighting-sword lang: en - eras: - standard: true - modern: true - modernPulp: true - pulp: true priority: 0 --- -_id: QwaL3UC3Gvjd3hmF -name: Science (Geology) +_id: sWt5Q3ZXd6NlwhXU +name: Fighting (Throw) type: skill -img: systems/CoC7/assets/icons/skills/science_geology.svg +img: systems/CoC7/assets/icons/skills/fighting_throw.svg system: description: value:

See the Call of Cthulhu - 7th Ed Core Rulebook

- base: 1 + base: 20 properties: + fighting: true + combat: true special: true - push: true flags: cocidFlag: - id: i.skill.science-geology + id: i.skill.fighting-throw lang: en eras: standard: true modern: true modernPulp: true pulp: true + downDarkerTrails: true + downDarkerTrailsPulp: true + gasLight: true + regency: true + regencyPulp: true priority: 0 --- -_id: SL2OorS0Xx6ty02A -name: Read Lips +_id: Pb3QI7x9xJVeXi8a +name: Fighting (Whip) type: skill -img: systems/CoC7/assets/icons/skills/read_lips.svg +img: systems/CoC7/assets/icons/skills/fighting_whip.svg system: description: value:

See the Call of Cthulhu - 7th Ed Core Rulebook

- base: 1 + base: 5 properties: - rarity: true - push: true + fighting: true + combat: true + special: true flags: cocidFlag: - id: i.skill.read-lips + id: i.skill.fighting-whip lang: en - eras: - standard: true - modern: true - modernPulp: true - pulp: true priority: 0 --- -_id: SflwB1bbjaQebiPQ -name: Gambling +_id: YPiD2ubZensxjKGU +name: Firearms (Any) type: skill -img: systems/CoC7/assets/icons/skills/poker-hand.svg +img: systems/CoC7/assets/icons/skills/firearms_handgun.svg system: description: - value:

See the Down Darker Trails Rulebook

- base: 10 + value:

Use in occupations / archetypes to prompt to select one Firearms skill

+ base: 0 properties: - push: true + firearm: true + combat: true + special: true + picknameonly: true flags: cocidFlag: - id: i.skill.gambling + id: i.skill.firearms-any lang: en - eras: - downDarkerTrails: true - downDarkerTrailsPulp: true priority: 0 --- -_id: ShPoibiLsd07AtZv -name: Science (Botany) +_id: qET2wCGGdy3z18Gc +name: Firearms (Artillery) type: skill -img: systems/CoC7/assets/icons/skills/science_botany.svg +img: systems/CoC7/assets/icons/skills/firearms_artillery.svg system: description: value:

See the Call of Cthulhu - 7th Ed Core Rulebook

base: 1 properties: + firearm: true + combat: true special: true - push: true + rarity: true flags: cocidFlag: - id: i.skill.science-botany + id: i.skill.firearms-artillery lang: en eras: standard: true @@ -854,96 +823,88 @@ flags: pulp: true priority: 0 --- -_id: Sxviv60td6kbS4kp -name: Drive Carriage -type: skill -img: systems/CoC7/assets/icons/skills/cartwheel.svg -system: - description: - value:

See the Cthulhu by Gaslight

- base: 20 - properties: - push: true -flags: - cocidFlag: - id: i.skill.drive-carriage - lang: en - eras: - gasLight: true - priority: 0 ---- -_id: T8fSLCwSD8C0iK8t -name: Fighting (Axe) +_id: VwGWZ2LBOwtMaw08 +name: Firearms (Bow) type: skill -img: systems/CoC7/assets/icons/skills/fighting_axe.svg +img: systems/CoC7/assets/icons/skills/firearms_bow.svg system: description: value:

See the Call of Cthulhu - 7th Ed Core Rulebook

base: 15 properties: - fighting: true + firearm: true combat: true special: true flags: cocidFlag: - id: i.skill.fighting-axe + id: i.skill.firearms-bow lang: en priority: 0 --- -_id: TPOu48DT4QIrqE68 -name: Fighting (Garrote) +_id: 35dvJDsrY8JipXRU +name: Firearms (Flamethrower) type: skill -img: systems/CoC7/assets/icons/skills/fighting_garrote.svg +img: systems/CoC7/assets/icons/skills/firearms_flamethrower.svg system: description: value:

See the Call of Cthulhu - 7th Ed Core Rulebook

- base: 15 + base: 10 properties: - fighting: true + firearm: true combat: true special: true flags: cocidFlag: - id: i.skill.fighting-garrote + id: i.skill.firearms-flamethrower lang: en + eras: + standard: true + modern: true + modernPulp: true + pulp: true priority: 0 --- -_id: TwYYqLHe1PXnOCDF -name: Science (Mathematics) +_id: KmDGtn7ukUFVb265 +name: Firearms (Handgun) type: skill -img: systems/CoC7/assets/icons/skills/science_mathematics.svg +img: systems/CoC7/assets/icons/skills/firearms_handgun.svg system: description: value:

See the Call of Cthulhu - 7th Ed Core Rulebook

- base: 10 + base: 20 properties: + firearm: true + combat: true special: true - push: true flags: cocidFlag: - id: i.skill.science-mathematics + id: i.skill.firearms-handgun lang: en eras: standard: true modern: true modernPulp: true pulp: true + downDarkerTrails: true + downDarkerTrailsPulp: true + gasLight: true priority: 0 --- -_id: UASTWOvgCYi8G1QQ -name: Science (Cryptography) +_id: 23vdyJDDfjyneH3I +name: Firearms (Heavy Weapons) type: skill -img: systems/CoC7/assets/icons/skills/science_cryptography.svg +img: systems/CoC7/assets/icons/skills/firearms_heavy_weapons.svg system: description: value:

See the Call of Cthulhu - 7th Ed Core Rulebook

- base: 1 + base: 10 properties: + firearm: true + combat: true special: true - push: true flags: cocidFlag: - id: i.skill.science-cryptography + id: i.skill.firearms-heavy-weapons lang: en eras: standard: true @@ -952,43 +913,44 @@ flags: pulp: true priority: 0 --- -_id: UOuN0gESXPp2HXwH -name: Accounting +_id: QcomAOgmOS5g3dsh +name: Firearms (Machine Gun) type: skill -img: systems/CoC7/assets/icons/skills/accounting.svg +img: systems/CoC7/assets/icons/skills/firearms_machine_gun.svg system: description: value:

See the Call of Cthulhu - 7th Ed Core Rulebook

- base: 5 + base: 10 properties: - push: true + firearm: true + combat: true + special: true flags: cocidFlag: - id: i.skill.accounting + id: i.skill.firearms-machine-gun lang: en eras: standard: true modern: true modernPulp: true pulp: true - downDarkerTrails: true - downDarkerTrailsPulp: true - gasLight: true priority: 0 --- -_id: URo2NSSJSNdvOqXU -name: History +_id: m2pYjKk4Gk3FcEBL +name: Firearms (Rifle/Shotgun) type: skill -img: systems/CoC7/assets/icons/skills/history.svg +img: systems/CoC7/assets/icons/skills/firearms_rifle_shotgun.svg system: description: value:

See the Call of Cthulhu - 7th Ed Core Rulebook

- base: 5 + base: 25 properties: - push: true + firearm: true + combat: true + special: true flags: cocidFlag: - id: i.skill.history + id: i.skill.firearms-rifle-shotgun lang: en eras: standard: true @@ -1000,20 +962,21 @@ flags: gasLight: true priority: 0 --- -_id: V9ulAwDyLVqqQ0su -name: Science (Pharmacy) +_id: gRUXG91zIJXOLye1 +name: Firearms (Submachine Gun) type: skill -img: systems/CoC7/assets/icons/skills/science_pharmacy.svg +img: systems/CoC7/assets/icons/skills/firearms_submachine_gun.svg system: description: value:

See the Call of Cthulhu - 7th Ed Core Rulebook

- base: 1 + base: 15 properties: + firearm: true + combat: true special: true - push: true flags: cocidFlag: - id: i.skill.science-pharmacy + id: i.skill.firearms-submachine-gun lang: en eras: standard: true @@ -1022,98 +985,120 @@ flags: pulp: true priority: 0 --- -_id: VZSv9eodMQ4ZPcrO -name: Computer Use +_id: nZ8rdL4PLb7A7f5B +name: First Aid type: skill -img: systems/CoC7/assets/icons/skills/computer_use.svg +img: systems/CoC7/assets/icons/skills/first_aid.svg system: description: value:

See the Call of Cthulhu - 7th Ed Core Rulebook

- base: 5 + base: 30 properties: push: true flags: cocidFlag: - id: i.skill.computer-use + id: i.skill.first-aid lang: en - eras: - modern: true - modernPulp: true priority: 0 --- -_id: VwGWZ2LBOwtMaw08 -name: Firearms (Bow) +_id: SflwB1bbjaQebiPQ +name: Gambling type: skill -img: systems/CoC7/assets/icons/skills/firearms_bow.svg +img: systems/CoC7/assets/icons/skills/poker-hand.svg system: description: - value:

See the Call of Cthulhu - 7th Ed Core Rulebook

- base: 15 + value:

See the Down Darker Trails Rulebook

+ base: 10 properties: - firearm: true - combat: true - special: true + push: true flags: cocidFlag: - id: i.skill.firearms-bow + id: i.skill.gambling lang: en + eras: + downDarkerTrails: true + downDarkerTrailsPulp: true priority: 0 --- -_id: WJky66ezt2ef5ksH -name: Cthulhu Mythos +_id: URo2NSSJSNdvOqXU +name: History type: skill -img: systems/CoC7/assets/icons/skills/cthulhu_mythos.svg +img: systems/CoC7/assets/icons/skills/history.svg system: description: value:

See the Call of Cthulhu - 7th Ed Core Rulebook

- base: 0 + base: 5 properties: - noadjustments: true - noxpgain: true + push: true flags: cocidFlag: - id: i.skill.cthulhu-mythos + id: i.skill.history lang: en + eras: + standard: true + modern: true + modernPulp: true + pulp: true + downDarkerTrails: true + downDarkerTrailsPulp: true + gasLight: true + regency: true + regencyPulp: true priority: 0 --- -_id: WLYZNASZ2YP8zN3g -name: Art/Craft (Photography) +_id: mEblnQjptKvKCeIg +name: Hypnosis type: skill -img: systems/CoC7/assets/icons/skills/art_craft_photography.svg +img: systems/CoC7/assets/icons/skills/hypnosis.svg system: description: value:

See the Call of Cthulhu - 7th Ed Core Rulebook

- base: 5 + base: 1 properties: - special: true + rarity: true push: true flags: cocidFlag: - id: i.skill.art-craft-photography + id: i.skill.hypnosis lang: en eras: standard: true modern: true modernPulp: true pulp: true - gasLight: true + downDarkerTrails: true + downDarkerTrailsPulp: true priority: 0 --- -_id: X99v5MtRlfTNjL3B -name: Survival (Any) +_id: hDr4eUbS398oniTa +name: Intimidate type: skill -img: systems/CoC7/assets/icons/skills/survival_any.svg +img: systems/CoC7/assets/icons/skills/intimidate.svg system: description: value:

See the Call of Cthulhu - 7th Ed Core Rulebook

- base: 10 + base: 15 properties: - special: true - requiresname: true push: true flags: cocidFlag: - id: i.skill.survival-any + id: i.skill.intimidate + lang: en + priority: 0 +--- +_id: c5utlFbDM7J8TA8b +name: Jump +type: skill +img: systems/CoC7/assets/icons/skills/jump.svg +system: + description: + value:

See the Call of Cthulhu - 7th Ed Core Rulebook

+ base: 20 + properties: + push: true +flags: + cocidFlag: + id: i.skill.jump lang: en eras: standard: true @@ -1123,56 +1108,61 @@ flags: downDarkerTrails: true downDarkerTrailsPulp: true gasLight: true + regency: true + regencyPulp: true priority: 0 --- -_id: Xmg7oAy70DKpv4kq -name: Medicine +_id: Yu3Xk8kZBlz0G82y +name: Language (Any) type: skill -img: systems/CoC7/assets/icons/skills/medicine.svg +img: systems/CoC7/assets/icons/skills/language.svg system: description: value:

See the Call of Cthulhu - 7th Ed Core Rulebook

base: 1 properties: + special: true + requiresname: true push: true flags: cocidFlag: - id: i.skill.medicine + id: i.skill.language-any lang: en priority: 0 --- -_id: Yu3Xk8kZBlz0G82y -name: Language (Any) +_id: rhJ1Q9OB3uTUZmjD +name: Language (Own) type: skill img: systems/CoC7/assets/icons/skills/language.svg system: description: value:

See the Call of Cthulhu - 7th Ed Core Rulebook

- base: 1 + base: '@EDU' properties: + push: true special: true requiresname: true - push: true + keepbasevalue: true + onlyone: true flags: cocidFlag: - id: i.skill.language-any + id: i.skill.language-own lang: en priority: 0 --- -_id: bJt90h73GqdP7ti6 -name: Demolitions +_id: 64hnBZNC8FM7oTkg +name: Law type: skill -img: systems/CoC7/assets/icons/skills/demolitions.svg +img: systems/CoC7/assets/icons/skills/law.svg system: description: value:

See the Call of Cthulhu - 7th Ed Core Rulebook

- base: 1 + base: 5 properties: - rarity: true push: true flags: cocidFlag: - id: i.skill.demolitions + id: i.skill.law lang: en eras: standard: true @@ -1181,12 +1171,15 @@ flags: pulp: true downDarkerTrails: true downDarkerTrailsPulp: true + gasLight: true + regency: true + regencyPulp: true priority: 0 --- -_id: c5utlFbDM7J8TA8b -name: Jump +_id: BcWHh8EhmyKj7bNk +name: Library Use type: skill -img: systems/CoC7/assets/icons/skills/jump.svg +img: systems/CoC7/assets/icons/skills/library_use.svg system: description: value:

See the Call of Cthulhu - 7th Ed Core Rulebook

@@ -1195,7 +1188,7 @@ system: push: true flags: cocidFlag: - id: i.skill.jump + id: i.skill.library-use lang: en eras: standard: true @@ -1205,21 +1198,23 @@ flags: downDarkerTrails: true downDarkerTrailsPulp: true gasLight: true + regency: true + regencyPulp: true priority: 0 --- -_id: cuExWy1130KUwuWz -name: Operate Heavy Machinery +_id: MoAB0NRNlpEc2qWr +name: Listen type: skill -img: systems/CoC7/assets/icons/skills/operate_heavy_machinery.svg +img: systems/CoC7/assets/icons/skills/listen.svg system: description: value:

See the Call of Cthulhu - 7th Ed Core Rulebook

- base: 1 + base: 20 properties: push: true flags: cocidFlag: - id: i.skill.operate-heavy-machinery + id: i.skill.listen lang: en eras: standard: true @@ -1229,66 +1224,71 @@ flags: downDarkerTrails: true downDarkerTrailsPulp: true gasLight: true + regency: true + regencyPulp: true priority: 0 --- -_id: dQ4zUjSteT3sgwKx -name: Animal Handling +_id: MRbFH52Zh9TzhLBh +name: Locksmith type: skill -img: systems/CoC7/assets/icons/skills/animal_handling.svg +img: systems/CoC7/assets/icons/skills/locksmith.svg system: description: value:

See the Call of Cthulhu - 7th Ed Core Rulebook

- base: 5 + base: 1 properties: push: true - rarity: true flags: cocidFlag: - id: i.skill.animal-handling + id: i.skill.locksmith lang: en eras: standard: true modern: true modernPulp: true pulp: true + downDarkerTrails: true + downDarkerTrailsPulp: true + gasLight: true + regency: true + regencyPulp: true priority: 0 --- -_id: gRUXG91zIJXOLye1 -name: Firearms (Submachine Gun) +_id: rCJKGay6D0ucqgeg +name: Lore (Any) type: skill -img: systems/CoC7/assets/icons/skills/firearms_submachine_gun.svg +img: systems/CoC7/assets/icons/skills/classical_knowledge.svg system: description: value:

See the Call of Cthulhu - 7th Ed Core Rulebook

- base: 15 + base: 1 properties: - firearm: true - combat: true special: true + requiresname: true + rarity: true + push: true flags: cocidFlag: - id: i.skill.firearms-submachine-gun + id: i.skill.lore-any lang: en eras: standard: true modern: true - modernPulp: true - pulp: true priority: 0 --- -_id: gzNPM9gbx0EZffBV -name: Disguise +_id: 0qCTuRFUCACSEsWj +name: Mechanical Repair type: skill -img: systems/CoC7/assets/icons/skills/disguise.svg +img: systems/CoC7/assets/icons/skills/mechanical_repair.svg system: description: value:

See the Call of Cthulhu - 7th Ed Core Rulebook

- base: 5 + base: 10 properties: push: true flags: cocidFlag: - id: i.skill.disguise + id: i.skill.mechanical-repair lang: en eras: standard: true @@ -1297,71 +1297,55 @@ flags: pulp: true downDarkerTrails: true downDarkerTrailsPulp: true - darkAges: true - darkAgesPulp: true gasLight: true + regency: true + regencyPulp: true priority: 0 --- -_id: hDr4eUbS398oniTa -name: Intimidate +_id: Xmg7oAy70DKpv4kq +name: Medicine type: skill -img: systems/CoC7/assets/icons/skills/intimidate.svg +img: systems/CoC7/assets/icons/skills/medicine.svg system: description: value:

See the Call of Cthulhu - 7th Ed Core Rulebook

- base: 15 + base: 1 properties: push: true flags: cocidFlag: - id: i.skill.intimidate - lang: en - priority: 0 ---- -_id: hRPbMl2N0t6aBlyc -name: Fighting (Sword) -type: skill -img: systems/CoC7/assets/icons/skills/fighting_sword.svg -system: - description: - value:

See the Call of Cthulhu - 7th Ed Core Rulebook

- base: 20 - properties: - fighting: true - combat: true - special: true -flags: - cocidFlag: - id: i.skill.fighting-sword + id: i.skill.medicine lang: en priority: 0 --- -_id: hhvqA2BOljk1FHVg -name: Science (Astronomy) +_id: jTcu6Ni2ek7Yz5q3 +name: Natural World type: skill -img: systems/CoC7/assets/icons/skills/science_astronomy.svg +img: systems/CoC7/assets/icons/skills/natural_world.svg system: description: value:

See the Call of Cthulhu - 7th Ed Core Rulebook

- base: 1 + base: 10 properties: push: true - special: true flags: cocidFlag: - id: i.skill.science-astronomy + id: i.skill.natural-world lang: en eras: standard: true modern: true modernPulp: true pulp: true + gasLight: true + regency: true + regencyPulp: true priority: 0 --- -_id: jTcu6Ni2ek7Yz5q3 -name: Natural World +_id: 1c3fdvpQtvZf5YXK +name: Navigate type: skill -img: systems/CoC7/assets/icons/skills/natural_world.svg +img: systems/CoC7/assets/icons/skills/navigate.svg system: description: value:

See the Call of Cthulhu - 7th Ed Core Rulebook

@@ -1370,20 +1354,14 @@ system: push: true flags: cocidFlag: - id: i.skill.natural-world + id: i.skill.navigate lang: en - eras: - standard: true - modern: true - modernPulp: true - pulp: true - gasLight: true priority: 0 --- -_id: ld78TITwKNFPpanQ -name: Fast Talk +_id: 6pSfZVS68jSHxa5T +name: Occult type: skill -img: systems/CoC7/assets/icons/skills/fast_talk.svg +img: systems/CoC7/assets/icons/skills/occult.svg system: description: value:

See the Call of Cthulhu - 7th Ed Core Rulebook

@@ -1392,25 +1370,23 @@ system: push: true flags: cocidFlag: - id: i.skill.fast-talk + id: i.skill.occult lang: en priority: 0 --- -_id: m2pYjKk4Gk3FcEBL -name: Firearms (Rifle/Shotgun) +_id: cuExWy1130KUwuWz +name: Operate Heavy Machinery type: skill -img: systems/CoC7/assets/icons/skills/firearms_rifle_shotgun.svg +img: systems/CoC7/assets/icons/skills/operate_heavy_machinery.svg system: description: value:

See the Call of Cthulhu - 7th Ed Core Rulebook

- base: 25 + base: 1 properties: - firearm: true - combat: true - special: true + push: true flags: cocidFlag: - id: i.skill.firearms-rifle-shotgun + id: i.skill.operate-heavy-machinery lang: en eras: standard: true @@ -1422,106 +1398,125 @@ flags: gasLight: true priority: 0 --- -_id: m6V53lyfz7zh95FE -name: Art/Craft (Acting) +_id: uMzSNURmZqjxr7mU +name: Persuade type: skill -img: systems/CoC7/assets/icons/skills/art_craft_acting.svg +img: systems/CoC7/assets/icons/skills/persuade.svg system: description: value:

See the Call of Cthulhu - 7th Ed Core Rulebook

- base: 5 + base: 10 properties: - special: true push: true flags: cocidFlag: - id: i.skill.art-craft-acting + id: i.skill.persuade lang: en eras: standard: true modern: true modernPulp: true pulp: true + downDarkerTrails: true + downDarkerTrailsPulp: true gasLight: true + regency: true + regencyPulp: true priority: 0 --- -_id: m8sBJxvuUdtQ2mDU -name: Art/Craft (Fine Art) +_id: uQsVn8K6XRXQmtaI +name: Pilot (Any) type: skill -img: systems/CoC7/assets/icons/skills/art_craft_fine_art.svg +img: systems/CoC7/assets/icons/skills/pilot_any.svg system: description: value:

See the Call of Cthulhu - 7th Ed Core Rulebook

- base: 5 + base: 1 properties: special: true + requiresname: true push: true flags: cocidFlag: - id: i.skill.art-craft-fine-art + id: i.skill.pilot-any lang: en eras: standard: true modern: true modernPulp: true pulp: true + downDarkerTrails: true + downDarkerTrailsPulp: true gasLight: true priority: 0 --- -_id: mEblnQjptKvKCeIg -name: Hypnosis +_id: rXBU2GofiO2qOsGv +name: Psychoanalysis type: skill -img: systems/CoC7/assets/icons/skills/hypnosis.svg +img: systems/CoC7/assets/icons/skills/psychoanalysis.svg system: description: value:

See the Call of Cthulhu - 7th Ed Core Rulebook

base: 1 properties: - rarity: true push: true flags: cocidFlag: - id: i.skill.hypnosis + id: i.skill.psychoanalysis lang: en eras: standard: true modern: true modernPulp: true pulp: true - downDarkerTrails: true - downDarkerTrailsPulp: true priority: 0 --- -_id: nHaWNwtW3Lg0sqYJ -name: Spot Hidden +_id: MFR4eR79niGaLfph +name: Psychology type: skill -img: systems/CoC7/assets/icons/skills/spot_hidden.svg +img: systems/CoC7/assets/icons/skills/psychology.svg system: description: value:

See the Call of Cthulhu - 7th Ed Core Rulebook

- base: 25 + base: 10 properties: push: true flags: cocidFlag: - id: i.skill.spot-hidden + id: i.skill.psychology lang: en + eras: + standard: true + modern: true + modernPulp: true + pulp: true + downDarkerTrails: true + downDarkerTrailsPulp: true + gasLight: true + regency: true + regencyPulp: true priority: 0 --- -_id: nZ8rdL4PLb7A7f5B -name: First Aid +_id: SL2OorS0Xx6ty02A +name: Read Lips type: skill -img: systems/CoC7/assets/icons/skills/first_aid.svg +img: systems/CoC7/assets/icons/skills/read_lips.svg system: description: value:

See the Call of Cthulhu - 7th Ed Core Rulebook

- base: 30 + base: 1 properties: + rarity: true push: true flags: cocidFlag: - id: i.skill.first-aid + id: i.skill.read-lips lang: en + eras: + standard: true + modern: true + modernPulp: true + pulp: true priority: 0 --- _id: o7TdzbuSP7ticONf @@ -1544,81 +1539,105 @@ flags: modernPulp: true pulp: true gasLight: true + regency: true + regencyPulp: true priority: 0 --- -_id: oEfvPMTx0cgyPlgV -name: Electronics +_id: EMA6uEtQBgJtBcPl +name: Rope Use type: skill -img: systems/CoC7/assets/icons/skills/electronics.svg +img: systems/CoC7/assets/icons/skills/lasso.svg +system: + description: + value:

See the Down Darker Trails Rulebook

+ base: 5 + properties: + push: true +flags: + cocidFlag: + id: i.skill.rope-use + lang: en + eras: + downDarkerTrails: true + downDarkerTrailsPulp: true + priority: 0 +--- +_id: KvZuYcg3AmVrwKi2 +name: Science (Any) +type: skill +img: systems/CoC7/assets/icons/skills/science_any.svg system: description: value:

See the Call of Cthulhu - 7th Ed Core Rulebook

base: 1 properties: + special: true + requiresname: true push: true flags: cocidFlag: - id: i.skill.electronics + id: i.skill.science-any lang: en - eras: - modern: true - modernPulp: true priority: 0 --- -_id: oh5eFj00Wohnx1My -name: Climb +_id: hhvqA2BOljk1FHVg +name: Science (Astronomy) type: skill -img: systems/CoC7/assets/icons/skills/climb.svg +img: systems/CoC7/assets/icons/skills/science_astronomy.svg system: description: value:

See the Call of Cthulhu - 7th Ed Core Rulebook

- base: 20 + base: 1 properties: push: true + special: true flags: cocidFlag: - id: i.skill.climb + id: i.skill.science-astronomy lang: en + eras: + standard: true + modern: true + modernPulp: true + pulp: true priority: 0 --- -_id: ovIp66Luwfwbq28F -name: Anthropology +_id: IBSDR6U4dE1uejVp +name: Science (Biology) type: skill -img: systems/CoC7/assets/icons/skills/anthropology.svg +img: systems/CoC7/assets/icons/skills/science_biology.svg system: description: value:

See the Call of Cthulhu - 7th Ed Core Rulebook

base: 1 properties: + special: true push: true flags: cocidFlag: - id: i.skill.anthropology + id: i.skill.science-biology lang: en eras: standard: true modern: true - downDarkerTrails: true - downDarkerTrailsPulp: true - gasLight: true + modernPulp: true + pulp: true priority: 0 --- -_id: qET2wCGGdy3z18Gc -name: Firearms (Artillery) +_id: ShPoibiLsd07AtZv +name: Science (Botany) type: skill -img: systems/CoC7/assets/icons/skills/firearms_artillery.svg +img: systems/CoC7/assets/icons/skills/science_botany.svg system: description: value:

See the Call of Cthulhu - 7th Ed Core Rulebook

base: 1 properties: - firearm: true - combat: true special: true - rarity: true + push: true flags: cocidFlag: - id: i.skill.firearms-artillery + id: i.skill.science-botany lang: en eras: standard: true @@ -1627,61 +1646,64 @@ flags: pulp: true priority: 0 --- -_id: rAK5soSX1n3jXj2A -name: Drive Horse / Oxen +_id: 8twBT7nbyh5dEp3J +name: Science (Chemistry) type: skill -img: systems/CoC7/assets/icons/skills/cartwheel.svg +img: systems/CoC7/assets/icons/skills/science_chemistry.svg system: description: - value:

See the Cthulhu Invictus

- base: 20 + value:

See the Call of Cthulhu - 7th Ed Core Rulebook

+ base: 1 properties: + special: true push: true flags: cocidFlag: - id: i.skill.drive-horse-oxen + id: i.skill.science-chemistry lang: en eras: - darkAges: true - darkAgesPulp: true - invictus: true + standard: true + modern: true + modernPulp: true + pulp: true priority: 0 --- -_id: rCJKGay6D0ucqgeg -name: Lore (Any) +_id: UASTWOvgCYi8G1QQ +name: Science (Cryptography) type: skill -img: systems/CoC7/assets/icons/skills/classical_knowledge.svg +img: systems/CoC7/assets/icons/skills/science_cryptography.svg system: description: value:

See the Call of Cthulhu - 7th Ed Core Rulebook

base: 1 properties: special: true - requiresname: true - rarity: true push: true flags: cocidFlag: - id: i.skill.lore-any + id: i.skill.science-cryptography lang: en eras: standard: true modern: true + modernPulp: true + pulp: true priority: 0 --- -_id: rXBU2GofiO2qOsGv -name: Psychoanalysis +_id: 9zy7PLmTLXknFce4 +name: Science (Engineering) type: skill -img: systems/CoC7/assets/icons/skills/psychoanalysis.svg +img: systems/CoC7/assets/icons/skills/spanner.svg system: description: value:

See the Call of Cthulhu - 7th Ed Core Rulebook

base: 1 properties: + special: true push: true flags: cocidFlag: - id: i.skill.psychoanalysis + id: i.skill.science-engineering lang: en eras: standard: true @@ -1690,171 +1712,173 @@ flags: pulp: true priority: 0 --- -_id: rhJ1Q9OB3uTUZmjD -name: Language (Own) +_id: Nw5tSvi2Knxlqmg1 +name: Science (Forensics) type: skill -img: systems/CoC7/assets/icons/skills/language.svg +img: systems/CoC7/assets/icons/skills/science_forensics.svg system: description: value:

See the Call of Cthulhu - 7th Ed Core Rulebook

- base: '@EDU' + base: 1 properties: - push: true special: true - requiresname: true - keepbasevalue: true - onlyone: true + push: true flags: cocidFlag: - id: i.skill.language-own + id: i.skill.science-forensics lang: en + eras: + standard: true + modern: true + modernPulp: true + pulp: true priority: 0 --- -_id: sWt5Q3ZXd6NlwhXU -name: Fighting (Throw) +_id: QwaL3UC3Gvjd3hmF +name: Science (Geology) type: skill -img: systems/CoC7/assets/icons/skills/fighting_throw.svg +img: systems/CoC7/assets/icons/skills/science_geology.svg system: description: value:

See the Call of Cthulhu - 7th Ed Core Rulebook

- base: 20 + base: 1 properties: - fighting: true - combat: true special: true + push: true flags: cocidFlag: - id: i.skill.fighting-throw + id: i.skill.science-geology lang: en eras: standard: true modern: true modernPulp: true pulp: true - downDarkerTrails: true - downDarkerTrailsPulp: true - gasLight: true priority: 0 --- -_id: sqenne0VZoF54W5k -name: Drive Wagon / Coach +_id: TwYYqLHe1PXnOCDF +name: Science (Mathematics) type: skill -img: systems/CoC7/assets/icons/skills/cartwheel.svg +img: systems/CoC7/assets/icons/skills/science_mathematics.svg system: description: - value:

See the Down Darker Trails Rulebook

- base: 20 + value:

See the Call of Cthulhu - 7th Ed Core Rulebook

+ base: 10 properties: + special: true push: true flags: cocidFlag: - id: i.skill.drive-wagon-coach + id: i.skill.science-mathematics lang: en eras: - downDarkerTrails: true - downDarkerTrailsPulp: true + standard: true + modern: true + modernPulp: true + pulp: true priority: 0 --- -_id: t7uiYybrk8dHFdjp -name: Empire +_id: w7hWVU14syjweIH2 +name: Science (Meteorology) type: skill -img: systems/CoC7/assets/icons/skills/laurel_crown.svg +img: systems/CoC7/assets/icons/skills/science_meteorology.svg system: description: - value:

See the Cthulhu Invictus

- base: 25 + value:

See the Call of Cthulhu - 7th Ed Core Rulebook

+ base: 1 properties: + special: true push: true flags: cocidFlag: - id: i.skill.empire + id: i.skill.science-meteorology lang: en eras: - invictus: true + standard: true + modern: true + modernPulp: true + pulp: true priority: 0 --- -_id: uMzSNURmZqjxr7mU -name: Persuade +_id: V9ulAwDyLVqqQ0su +name: Science (Pharmacy) type: skill -img: systems/CoC7/assets/icons/skills/persuade.svg +img: systems/CoC7/assets/icons/skills/science_pharmacy.svg system: description: value:

See the Call of Cthulhu - 7th Ed Core Rulebook

- base: 10 + base: 1 properties: + special: true push: true flags: cocidFlag: - id: i.skill.persuade + id: i.skill.science-pharmacy lang: en eras: standard: true modern: true modernPulp: true pulp: true - downDarkerTrails: true - downDarkerTrailsPulp: true - gasLight: true priority: 0 --- -_id: uQsVn8K6XRXQmtaI -name: Pilot (Any) +_id: Dh6sHWep0qKQmi3I +name: Science (Physics) type: skill -img: systems/CoC7/assets/icons/skills/pilot_any.svg +img: systems/CoC7/assets/icons/skills/science_physics.svg system: description: value:

See the Call of Cthulhu - 7th Ed Core Rulebook

base: 1 properties: special: true - requiresname: true push: true flags: cocidFlag: - id: i.skill.pilot-any + id: i.skill.science-physics lang: en eras: standard: true modern: true modernPulp: true pulp: true - downDarkerTrails: true - downDarkerTrailsPulp: true - gasLight: true priority: 0 --- -_id: vS8bsPWFlwgOecoB -name: Fighting (Brawl) +_id: 0rlp7EuZDzQGjIYf +name: Science (Zoology) type: skill -img: systems/CoC7/assets/icons/skills/fighting_brawl.svg +img: systems/CoC7/assets/icons/skills/science_zoology.svg system: description: value:

See the Call of Cthulhu - 7th Ed Core Rulebook

- base: 25 + base: 1 properties: - fighting: true - combat: true special: true + push: true flags: cocidFlag: - id: i.skill.fighting-brawl + id: i.skill.science-zoology lang: en + eras: + standard: true + modern: true + modernPulp: true + pulp: true priority: 0 --- -_id: vYrJ5h9cIQBzvw8E -name: Credit Rating +_id: KKFNX5M4LtEtiuxs +name: Sleight of Hand type: skill -img: systems/CoC7/assets/icons/skills/credit_rating.svg +img: systems/CoC7/assets/icons/skills/sleight_of_hand.svg system: description: value:

See the Call of Cthulhu - 7th Ed Core Rulebook

- base: 0 + base: 10 properties: - noxpgain: true push: true flags: cocidFlag: - id: i.skill.credit-rating + id: i.skill.sleight-of-hand lang: en eras: standard: true @@ -1864,115 +1888,140 @@ flags: downDarkerTrails: true downDarkerTrailsPulp: true gasLight: true + regency: true + regencyPulp: true priority: 0 --- -_id: w7hWVU14syjweIH2 -name: Science (Meteorology) +_id: nHaWNwtW3Lg0sqYJ +name: Spot Hidden type: skill -img: systems/CoC7/assets/icons/skills/science_meteorology.svg +img: systems/CoC7/assets/icons/skills/spot_hidden.svg system: description: value:

See the Call of Cthulhu - 7th Ed Core Rulebook

- base: 1 + base: 25 properties: - special: true push: true flags: cocidFlag: - id: i.skill.science-meteorology + id: i.skill.spot-hidden lang: en - eras: - standard: true - modern: true - modernPulp: true - pulp: true priority: 0 --- -_id: wK8XxNj9QwXlGFEb -name: Dodge +_id: DcV524K0jNfjDEZC +name: Stealth type: skill -img: systems/CoC7/assets/icons/skills/dodge.svg +img: systems/CoC7/assets/icons/skills/stealth.svg system: description: value:

See the Call of Cthulhu - 7th Ed Core Rulebook

- base: 1/2*@DEX + base: 20 + properties: + push: true flags: cocidFlag: - id: i.skill.dodge + id: i.skill.stealth lang: en + eras: + standard: true + modern: true + modernPulp: true + pulp: true + downDarkerTrails: true + downDarkerTrailsPulp: true + darkAges: true + darkAgesPulp: true + gasLight: true + regency: true + regencyPulp: true priority: 0 --- -_id: wOs3gryeGRPkGoWD -name: Appraise +_id: X99v5MtRlfTNjL3B +name: Survival (Any) type: skill -img: systems/CoC7/assets/icons/skills/appraise.svg +img: systems/CoC7/assets/icons/skills/survival_any.svg system: description: value:

See the Call of Cthulhu - 7th Ed Core Rulebook

- base: 5 + base: 10 properties: + special: true + requiresname: true push: true flags: cocidFlag: - id: i.skill.appraise + id: i.skill.survival-any lang: en + eras: + standard: true + modern: true + modernPulp: true + pulp: true + downDarkerTrails: true + downDarkerTrailsPulp: true + gasLight: true + regency: true + regencyPulp: true priority: 0 --- -_id: zcvnv8qY4GrVwwTL -name: Art/Craft (Forgery) +_id: 1zSIeY0eat2AxQok +name: Swim type: skill -img: systems/CoC7/assets/icons/skills/art_craft_forgery.svg +img: systems/CoC7/assets/icons/skills/swim.svg system: description: value:

See the Call of Cthulhu - 7th Ed Core Rulebook

- base: 5 + base: 20 properties: - special: true push: true flags: cocidFlag: - id: i.skill.art-craft-forgery + id: i.skill.swim lang: en eras: standard: true modern: true modernPulp: true pulp: true + downDarkerTrails: true + downDarkerTrailsPulp: true gasLight: true + regency: true + regencyPulp: true priority: 0 --- -name: Fighting (Any) +_id: AcUIbZFhfoXqQP2m +name: Track type: skill -img: systems/CoC7/assets/icons/skills/fighting_brawl.svg +img: systems/CoC7/assets/icons/skills/track.svg system: - base: 0 description: - value:

Use in occupations / archetypes to prompt to select one Fighting skill

+ value:

See the Call of Cthulhu - 7th Ed Core Rulebook

+ base: 10 properties: - fighting: true - combat: true - special: true - picknameonly: true + push: true flags: cocidFlag: - id: i.skill.fighting-any + id: i.skill.track lang: en priority: 0 --- -name: Firearms (Any) +_id: HzOGu2yLcL9obry3 +name: Trap type: skill -img: systems/CoC7/assets/icons/skills/firearms_handgun.svg +img: systems/CoC7/assets/icons/skills/wolf-trap.svg system: - base: 0 description: - value:

Use in occupations / archetypes to prompt to select one Firearms skill

+ value:

See the Down Darker Trails Rulebook

+ base: 10 properties: - firearm: true - combat: true - special: true - picknameonly: true + push: true flags: cocidFlag: - id: i.skill.firearms-any + id: i.skill.trap lang: en + eras: + downDarkerTrails: true + downDarkerTrailsPulp: true priority: 0 +--- diff --git a/lang/en.json b/lang/en.json index 7763fd0f..98d62c7e 100644 --- a/lang/en.json +++ b/lang/en.json @@ -373,6 +373,8 @@ "CoC7.EraPulp": "Pulp Cthulhu", "CoC7.EraModern": "Modern - Standard", "CoC7.EraModernPulp": "Modern - Pulp", + "CoC7.EraRegency": "Regency Cthulhu - Standard", + "CoC7.EraRegencyPulp": "Regency Cthulhu - Pulp", "CoC7.Eras": "Cthulhu Flavors", "CoC7.EraAvailability": "Availability", diff --git a/module/apps/coc-id-editor.js b/module/apps/coc-id-editor.js index f429f68e..055359d5 100644 --- a/module/apps/coc-id-editor.js +++ b/module/apps/coc-id-editor.js @@ -202,7 +202,7 @@ export class CoCIDEditor extends FormApplication { await document.update({ 'flags.CoC7.cocidFlag.eras': update }) - } else if (typeof document.flags?.CoC7?.cocidFlag?.eras[propertyId] === 'undefined') { + } else if (typeof document.flags?.CoC7?.cocidFlag?.eras?.[propertyId] === 'undefined') { if (typeof document.flags?.CoC7?.cocidFlag?.eras === 'undefined') { await document.update({ 'flags.CoC7.cocidFlag.eras': { diff --git a/module/config.js b/module/config.js index 09a28a21..eccc1259 100644 --- a/module/config.js +++ b/module/config.js @@ -17,8 +17,8 @@ COC7.eras = { downDarkerTrailsPulp: 'CoC7.EraDownDarkerTrailsPulp', darkAges: 'CoC7.EraDarkAges', darkAgesPulp: 'CoC7.EraDarkAgesPulp', - // Regency Cthulhu - // Regency Cthulhu Pulp + regency: 'CoC7.EraRegency', + regencyPulp: 'CoC7.EraRegencyPulp', // Reign of Terror gasLight: 'CoC7.EraGasLight', invictus: 'CoC7.EraInvictus' diff --git a/packs/skills.db b/packs/skills.db index 245e9a4a..d2d46c69 100644 --- a/packs/skills.db +++ b/packs/skills.db @@ -1,94 +1,94 @@ -{"_id":"0qCTuRFUCACSEsWj","name":"Mechanical Repair","type":"skill","img":"systems/CoC7/assets/icons/skills/mechanical_repair.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":10,"properties":{"push":true},"skillName":"Mechanical Repair","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.mechanical-repair","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true,"downDarkerTrails":true,"downDarkerTrailsPulp":true,"gasLight":true},"priority":0}}}} -{"_id":"0rlp7EuZDzQGjIYf","name":"Science (Zoology)","type":"skill","img":"systems/CoC7/assets/icons/skills/science_zoology.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":1,"properties":{"special":true,"push":true},"skillName":"Zoology","specialization":"Science"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.science-zoology","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true},"priority":0}}}} -{"_id":"1c3fdvpQtvZf5YXK","name":"Navigate","type":"skill","img":"systems/CoC7/assets/icons/skills/navigate.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":10,"properties":{"push":true},"skillName":"Navigate","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.navigate","lang":"en","priority":0}}}} -{"_id":"1zSIeY0eat2AxQok","name":"Swim","type":"skill","img":"systems/CoC7/assets/icons/skills/swim.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":20,"properties":{"push":true},"skillName":"Swim","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.swim","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true,"downDarkerTrails":true,"downDarkerTrailsPulp":true,"gasLight":true},"priority":0}}}} -{"_id":"23vdyJDDfjyneH3I","name":"Firearms (Heavy Weapons)","type":"skill","img":"systems/CoC7/assets/icons/skills/firearms_heavy_weapons.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":10,"properties":{"firearm":true,"combat":true,"special":true},"skillName":"Heavy Weapons","specialization":"Firearms"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.firearms-heavy-weapons","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true},"priority":0}}}} -{"_id":"35dvJDsrY8JipXRU","name":"Firearms (Flamethrower)","type":"skill","img":"systems/CoC7/assets/icons/skills/firearms_flamethrower.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":10,"properties":{"firearm":true,"combat":true,"special":true},"skillName":"Flamethrower","specialization":"Firearms"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.firearms-flamethrower","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true},"priority":0}}}} -{"_id":"4lN6yD6zwbjX6BFp","name":"Diving","type":"skill","img":"systems/CoC7/assets/icons/skills/diving_helmet.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":1,"properties":{"push":true,"rarity":true},"skillName":"Diving","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.diving","lang":"en","eras":{"standard":true,"modern":true,"downDarkerTrails":true,"downDarkerTrailsPulp":true},"priority":0}}}} -{"_id":"64hnBZNC8FM7oTkg","name":"Law","type":"skill","img":"systems/CoC7/assets/icons/skills/law.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":5,"properties":{"push":true},"skillName":"Law","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.law","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true,"downDarkerTrails":true,"downDarkerTrailsPulp":true,"gasLight":true},"priority":0}}}} -{"_id":"6pSfZVS68jSHxa5T","name":"Occult","type":"skill","img":"systems/CoC7/assets/icons/skills/occult.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":5,"properties":{"push":true},"skillName":"Occult","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.occult","lang":"en","priority":0}}}} -{"_id":"8twBT7nbyh5dEp3J","name":"Science (Chemistry)","type":"skill","img":"systems/CoC7/assets/icons/skills/science_chemistry.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":1,"properties":{"special":true,"push":true},"skillName":"Chemistry","specialization":"Science"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.science-chemistry","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true},"priority":0}}}} -{"_id":"9zy7PLmTLXknFce4","name":"Science (Engineering)","type":"skill","img":"systems/CoC7/assets/icons/skills/spanner.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":1,"properties":{"special":true,"push":true},"skillName":"Engineering","specialization":"Science"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.science-engineering","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true},"priority":0}}}} -{"_id":"AcUIbZFhfoXqQP2m","name":"Track","type":"skill","img":"systems/CoC7/assets/icons/skills/track.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":10,"properties":{"push":true},"skillName":"Track","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.track","lang":"en","priority":0}}}} -{"_id":"BcWHh8EhmyKj7bNk","name":"Library Use","type":"skill","img":"systems/CoC7/assets/icons/skills/library_use.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":20,"properties":{"push":true},"skillName":"Library Use","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.library-use","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true,"downDarkerTrails":true,"downDarkerTrailsPulp":true,"gasLight":true},"priority":0}}}} -{"_id":"DcV524K0jNfjDEZC","name":"Stealth","type":"skill","img":"systems/CoC7/assets/icons/skills/stealth.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":20,"properties":{"push":true},"skillName":"Stealth","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.stealth","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true,"downDarkerTrails":true,"downDarkerTrailsPulp":true,"darkAges":true,"darkAgesPulp":true,"gasLight":true},"priority":0}}}} -{"_id":"Dh6sHWep0qKQmi3I","name":"Science (Physics)","type":"skill","img":"systems/CoC7/assets/icons/skills/science_physics.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":1,"properties":{"special":true,"push":true},"skillName":"Physics","specialization":"Science"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.science-physics","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true},"priority":0}}}} -{"_id":"EMA6uEtQBgJtBcPl","name":"Rope Use","type":"skill","img":"systems/CoC7/assets/icons/skills/lasso.svg","system":{"description":{"value":"

See the Down Darker Trails Rulebook

"},"base":5,"properties":{"push":true},"skillName":"Rope Use","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.rope-use","lang":"en","eras":{"downDarkerTrails":true,"downDarkerTrailsPulp":true},"priority":0}}}} -{"_id":"Ed8OShyl7D834Ihk","name":"Fighting (Chainsaw)","type":"skill","img":"systems/CoC7/assets/icons/skills/fighting_chainsaw.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":10,"properties":{"fighting":true,"combat":true,"special":true},"skillName":"Chainsaw","specialization":"Fighting"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.fighting-chainsaw","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true},"priority":0}}}} +{"_id":"UOuN0gESXPp2HXwH","name":"Accounting","type":"skill","img":"systems/CoC7/assets/icons/skills/accounting.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":5,"properties":{"push":true},"skillName":"Accounting","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.accounting","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true,"downDarkerTrails":true,"downDarkerTrailsPulp":true,"gasLight":true,"regency":true,"regencyPulp":true},"priority":0}}}} +{"_id":"dQ4zUjSteT3sgwKx","name":"Animal Handling","type":"skill","img":"systems/CoC7/assets/icons/skills/animal_handling.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":5,"properties":{"push":true,"rarity":true},"skillName":"Animal Handling","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.animal-handling","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true},"priority":0}}}} +{"_id":"ovIp66Luwfwbq28F","name":"Anthropology","type":"skill","img":"systems/CoC7/assets/icons/skills/anthropology.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":1,"properties":{"push":true},"skillName":"Anthropology","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.anthropology","lang":"en","eras":{"standard":true,"modern":true,"downDarkerTrails":true,"downDarkerTrailsPulp":true,"gasLight":true,"regency":true,"regencyPulp":true},"priority":0}}}} +{"_id":"wOs3gryeGRPkGoWD","name":"Appraise","type":"skill","img":"systems/CoC7/assets/icons/skills/appraise.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":5,"properties":{"push":true},"skillName":"Appraise","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.appraise","lang":"en","priority":0}}}} {"_id":"GHhkcJUqjcP4lToY","name":"Archaeology","type":"skill","img":"systems/CoC7/assets/icons/skills/archaeology.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":1,"properties":{"push":true},"skillName":"Archaeology","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.archaeology","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true,"downDarkerTrails":true,"downDarkerTrailsPulp":true,"gasLight":true},"priority":0}}}} +{"_id":"m6V53lyfz7zh95FE","name":"Art/Craft (Acting)","type":"skill","img":"systems/CoC7/assets/icons/skills/art_craft_acting.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":5,"properties":{"special":true,"push":true},"skillName":"Acting","specialization":"Art/Craft"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.art-craft-acting","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true,"gasLight":true,"regencyPulp":true,"regency":true},"priority":0}}}} {"_id":"HAuFBG4ZT2yO9yn7","name":"Art/Craft (Any)","type":"skill","img":"systems/CoC7/assets/icons/skills/art_craft_any.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":5,"properties":{"special":true,"requiresname":true,"push":true},"skillName":"Any","specialization":"Art/Craft"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.art-craft-any","lang":"en","priority":0}}}} -{"_id":"HzOGu2yLcL9obry3","name":"Trap","type":"skill","img":"systems/CoC7/assets/icons/skills/wolf-trap.svg","system":{"description":{"value":"

See the Down Darker Trails Rulebook

"},"base":10,"properties":{"push":true},"skillName":"Trap","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.trap","lang":"en","eras":{"downDarkerTrails":true,"downDarkerTrailsPulp":true},"priority":0}}}} -{"_id":"I80gmmo830LuOBKl","name":"Civics","type":"skill","img":"systems/CoC7/assets/icons/skills/shaking-hands.svg","system":{"description":{"value":"

See the Cthulhu Invictus

"},"base":10,"properties":{"push":true},"skillName":"Civics","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.civics","lang":"en","eras":{"invictus":true},"priority":0}}}} -{"_id":"IBSDR6U4dE1uejVp","name":"Science (Biology)","type":"skill","img":"systems/CoC7/assets/icons/skills/science_biology.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":1,"properties":{"special":true,"push":true},"skillName":"Biology","specialization":"Science"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.science-biology","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true},"priority":0}}}} -{"_id":"IttOdCAGTeE6VU3F","name":"Fighting (Spear)","type":"skill","img":"systems/CoC7/assets/icons/skills/fighting_spear.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":20,"properties":{"fighting":true,"combat":true,"special":true},"skillName":"Spear","specialization":"Fighting"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.fighting-spear","lang":"en","priority":0}}}} +{"_id":"m8sBJxvuUdtQ2mDU","name":"Art/Craft (Fine Art)","type":"skill","img":"systems/CoC7/assets/icons/skills/art_craft_fine_art.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":5,"properties":{"special":true,"push":true},"skillName":"Fine Art","specialization":"Art/Craft"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.art-craft-fine-art","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true,"gasLight":true,"regency":true,"regencyPulp":true},"priority":0}}}} +{"_id":"zcvnv8qY4GrVwwTL","name":"Art/Craft (Forgery)","type":"skill","img":"systems/CoC7/assets/icons/skills/art_craft_forgery.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":5,"properties":{"special":true,"push":true},"skillName":"Forgery","specialization":"Art/Craft"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.art-craft-forgery","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true,"gasLight":true,"regency":true,"regencyPulp":true},"priority":0}}}} +{"_id":"WLYZNASZ2YP8zN3g","name":"Art/Craft (Photography)","type":"skill","img":"systems/CoC7/assets/icons/skills/art_craft_photography.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":5,"properties":{"special":true,"push":true},"skillName":"Photography","specialization":"Art/Craft"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.art-craft-photography","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true,"gasLight":true},"priority":0}}}} {"_id":"JgtxiN3KzooOWIQV","name":"Charm","type":"skill","img":"systems/CoC7/assets/icons/skills/charm.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":15,"properties":{"push":true},"skillName":"Charm","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.charm","lang":"en","priority":0}}}} -{"_id":"KKFNX5M4LtEtiuxs","name":"Sleight of Hand","type":"skill","img":"systems/CoC7/assets/icons/skills/sleight_of_hand.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":10,"properties":{"push":true},"skillName":"Sleight of Hand","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.sleight-of-hand","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true,"downDarkerTrails":true,"downDarkerTrailsPulp":true,"gasLight":true},"priority":0}}}} -{"_id":"KmDGtn7ukUFVb265","name":"Firearms (Handgun)","type":"skill","img":"systems/CoC7/assets/icons/skills/firearms_handgun.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":20,"properties":{"firearm":true,"combat":true,"special":true},"skillName":"Handgun","specialization":"Firearms"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.firearms-handgun","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true,"downDarkerTrails":true,"downDarkerTrailsPulp":true,"gasLight":true},"priority":0}}}} -{"_id":"KvZuYcg3AmVrwKi2","name":"Science (Any)","type":"skill","img":"systems/CoC7/assets/icons/skills/science_any.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":1,"properties":{"special":true,"requiresname":true,"push":true},"skillName":"Any","specialization":"Science"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.science-any","lang":"en","priority":0}}}} -{"_id":"MFR4eR79niGaLfph","name":"Psychology","type":"skill","img":"systems/CoC7/assets/icons/skills/psychology.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":10,"properties":{"push":true},"skillName":"Psychology","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.psychology","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true,"downDarkerTrails":true,"downDarkerTrailsPulp":true,"gasLight":true},"priority":0}}}} -{"_id":"MRbFH52Zh9TzhLBh","name":"Locksmith","type":"skill","img":"systems/CoC7/assets/icons/skills/locksmith.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":1,"properties":{"push":true},"skillName":"Locksmith","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.locksmith","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true,"downDarkerTrails":true,"downDarkerTrailsPulp":true,"gasLight":true},"priority":0}}}} -{"_id":"MoAB0NRNlpEc2qWr","name":"Listen","type":"skill","img":"systems/CoC7/assets/icons/skills/listen.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":20,"properties":{"push":true},"skillName":"Listen","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.listen","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true,"downDarkerTrails":true,"downDarkerTrailsPulp":true,"gasLight":true},"priority":0}}}} -{"_id":"NBkq8oCGM1FjmsyF","name":"Electrical Repair","type":"skill","img":"systems/CoC7/assets/icons/skills/electrical_repair.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":10,"properties":{"push":true},"skillName":"Electrical Repair","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.electrical-repair","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true},"priority":0}}}} -{"_id":"Nw5tSvi2Knxlqmg1","name":"Science (Forensics)","type":"skill","img":"systems/CoC7/assets/icons/skills/science_forensics.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":1,"properties":{"special":true,"push":true},"skillName":"Forensics","specialization":"Science"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.science-forensics","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true},"priority":0}}}} -{"_id":"OcnZzOYWaP4VsjXS","name":"Fighting (Flail)","type":"skill","img":"systems/CoC7/assets/icons/skills/fighting_flail.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":10,"properties":{"fighting":true,"combat":true,"special":true},"skillName":"Flail","specialization":"Fighting"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.fighting-flail","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true},"priority":0}}}} -{"_id":"Og2OWQH93aSDWAMZ","name":"Drive Auto","type":"skill","img":"systems/CoC7/assets/icons/skills/drive_auto.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":20,"properties":{"push":true},"skillName":"Drive Auto","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.drive-auto","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true},"priority":0}}}} -{"_id":"Pb3QI7x9xJVeXi8a","name":"Fighting (Whip)","type":"skill","img":"systems/CoC7/assets/icons/skills/fighting_whip.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":5,"properties":{"fighting":true,"combat":true,"special":true},"skillName":"Whip","specialization":"Fighting"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.fighting-whip","lang":"en","priority":0}}}} -{"_id":"QcomAOgmOS5g3dsh","name":"Firearms (Machine Gun)","type":"skill","img":"systems/CoC7/assets/icons/skills/firearms_machine_gun.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":10,"properties":{"firearm":true,"combat":true,"special":true},"skillName":"Machine Gun","specialization":"Firearms"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.firearms-machine-gun","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true},"priority":0}}}} -{"_id":"QwaL3UC3Gvjd3hmF","name":"Science (Geology)","type":"skill","img":"systems/CoC7/assets/icons/skills/science_geology.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":1,"properties":{"special":true,"push":true},"skillName":"Geology","specialization":"Science"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.science-geology","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true},"priority":0}}}} -{"_id":"SL2OorS0Xx6ty02A","name":"Read Lips","type":"skill","img":"systems/CoC7/assets/icons/skills/read_lips.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":1,"properties":{"rarity":true,"push":true},"skillName":"Read Lips","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.read-lips","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true},"priority":0}}}} -{"_id":"SflwB1bbjaQebiPQ","name":"Gambling","type":"skill","img":"systems/CoC7/assets/icons/skills/poker-hand.svg","system":{"description":{"value":"

See the Down Darker Trails Rulebook

"},"base":10,"properties":{"push":true},"skillName":"Gambling","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.gambling","lang":"en","eras":{"downDarkerTrails":true,"downDarkerTrailsPulp":true},"priority":0}}}} -{"_id":"ShPoibiLsd07AtZv","name":"Science (Botany)","type":"skill","img":"systems/CoC7/assets/icons/skills/science_botany.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":1,"properties":{"special":true,"push":true},"skillName":"Botany","specialization":"Science"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.science-botany","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true},"priority":0}}}} -{"_id":"Sxviv60td6kbS4kp","name":"Drive Carriage","type":"skill","img":"systems/CoC7/assets/icons/skills/cartwheel.svg","system":{"description":{"value":"

See the Cthulhu by Gaslight

"},"base":20,"properties":{"push":true},"skillName":"Drive Carriage","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.drive-carriage","lang":"en","eras":{"gasLight":true},"priority":0}}}} -{"_id":"T8fSLCwSD8C0iK8t","name":"Fighting (Axe)","type":"skill","img":"systems/CoC7/assets/icons/skills/fighting_axe.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":15,"properties":{"fighting":true,"combat":true,"special":true},"skillName":"Axe","specialization":"Fighting"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.fighting-axe","lang":"en","priority":0}}}} -{"_id":"TPOu48DT4QIrqE68","name":"Fighting (Garrote)","type":"skill","img":"systems/CoC7/assets/icons/skills/fighting_garrote.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":15,"properties":{"fighting":true,"combat":true,"special":true},"skillName":"Garrote","specialization":"Fighting"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.fighting-garrote","lang":"en","priority":0}}}} -{"_id":"TwYYqLHe1PXnOCDF","name":"Science (Mathematics)","type":"skill","img":"systems/CoC7/assets/icons/skills/science_mathematics.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":10,"properties":{"special":true,"push":true},"skillName":"Mathematics","specialization":"Science"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.science-mathematics","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true},"priority":0}}}} -{"_id":"UASTWOvgCYi8G1QQ","name":"Science (Cryptography)","type":"skill","img":"systems/CoC7/assets/icons/skills/science_cryptography.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":1,"properties":{"special":true,"push":true},"skillName":"Cryptography","specialization":"Science"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.science-cryptography","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true},"priority":0}}}} -{"_id":"UOuN0gESXPp2HXwH","name":"Accounting","type":"skill","img":"systems/CoC7/assets/icons/skills/accounting.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":5,"properties":{"push":true},"skillName":"Accounting","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.accounting","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true,"downDarkerTrails":true,"downDarkerTrailsPulp":true,"gasLight":true},"priority":0}}}} -{"_id":"URo2NSSJSNdvOqXU","name":"History","type":"skill","img":"systems/CoC7/assets/icons/skills/history.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":5,"properties":{"push":true},"skillName":"History","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.history","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true,"downDarkerTrails":true,"downDarkerTrailsPulp":true,"gasLight":true},"priority":0}}}} -{"_id":"V9ulAwDyLVqqQ0su","name":"Science (Pharmacy)","type":"skill","img":"systems/CoC7/assets/icons/skills/science_pharmacy.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":1,"properties":{"special":true,"push":true},"skillName":"Pharmacy","specialization":"Science"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.science-pharmacy","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true},"priority":0}}}} +{"_id":"I80gmmo830LuOBKl","name":"Civics","type":"skill","img":"systems/CoC7/assets/icons/skills/shaking-hands.svg","system":{"description":{"value":"

See the Cthulhu Invictus

"},"base":10,"properties":{"push":true},"skillName":"Civics","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.civics","lang":"en","eras":{"invictus":true},"priority":0}}}} +{"_id":"oh5eFj00Wohnx1My","name":"Climb","type":"skill","img":"systems/CoC7/assets/icons/skills/climb.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":20,"properties":{"push":true},"skillName":"Climb","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.climb","lang":"en","priority":0}}}} {"_id":"VZSv9eodMQ4ZPcrO","name":"Computer Use","type":"skill","img":"systems/CoC7/assets/icons/skills/computer_use.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":5,"properties":{"push":true},"skillName":"Computer Use","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.computer-use","lang":"en","eras":{"modern":true,"modernPulp":true},"priority":0}}}} -{"_id":"VwGWZ2LBOwtMaw08","name":"Firearms (Bow)","type":"skill","img":"systems/CoC7/assets/icons/skills/firearms_bow.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":15,"properties":{"firearm":true,"combat":true,"special":true},"skillName":"Bow","specialization":"Firearms"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.firearms-bow","lang":"en","priority":0}}}} +{"_id":"vYrJ5h9cIQBzvw8E","name":"Credit Rating","type":"skill","img":"systems/CoC7/assets/icons/skills/credit_rating.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":0,"properties":{"noxpgain":true,"push":true},"skillName":"Credit Rating","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.credit-rating","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true,"downDarkerTrails":true,"downDarkerTrailsPulp":true,"gasLight":true},"priority":0}}}} {"_id":"WJky66ezt2ef5ksH","name":"Cthulhu Mythos","type":"skill","img":"systems/CoC7/assets/icons/skills/cthulhu_mythos.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":0,"properties":{"noadjustments":true,"noxpgain":true},"skillName":"Cthulhu Mythos","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.cthulhu-mythos","lang":"en","priority":0}}}} -{"_id":"WLYZNASZ2YP8zN3g","name":"Art/Craft (Photography)","type":"skill","img":"systems/CoC7/assets/icons/skills/art_craft_photography.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":5,"properties":{"special":true,"push":true},"skillName":"Photography","specialization":"Art/Craft"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.art-craft-photography","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true,"gasLight":true},"priority":0}}}} -{"_id":"X99v5MtRlfTNjL3B","name":"Survival (Any)","type":"skill","img":"systems/CoC7/assets/icons/skills/survival_any.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":10,"properties":{"special":true,"requiresname":true,"push":true},"skillName":"Any","specialization":"Survival"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.survival-any","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true,"downDarkerTrails":true,"downDarkerTrailsPulp":true,"gasLight":true},"priority":0}}}} -{"_id":"Xmg7oAy70DKpv4kq","name":"Medicine","type":"skill","img":"systems/CoC7/assets/icons/skills/medicine.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":1,"properties":{"push":true},"skillName":"Medicine","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.medicine","lang":"en","priority":0}}}} -{"_id":"Yu3Xk8kZBlz0G82y","name":"Language (Any)","type":"skill","img":"systems/CoC7/assets/icons/skills/language.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":1,"properties":{"special":true,"requiresname":true,"push":true},"skillName":"Any","specialization":"Language"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.language-any","lang":"en","priority":0}}}} {"_id":"bJt90h73GqdP7ti6","name":"Demolitions","type":"skill","img":"systems/CoC7/assets/icons/skills/demolitions.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":1,"properties":{"rarity":true,"push":true},"skillName":"Demolitions","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.demolitions","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true,"downDarkerTrails":true,"downDarkerTrailsPulp":true},"priority":0}}}} -{"_id":"c5utlFbDM7J8TA8b","name":"Jump","type":"skill","img":"systems/CoC7/assets/icons/skills/jump.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":20,"properties":{"push":true},"skillName":"Jump","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.jump","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true,"downDarkerTrails":true,"downDarkerTrailsPulp":true,"gasLight":true},"priority":0}}}} -{"_id":"cuExWy1130KUwuWz","name":"Operate Heavy Machinery","type":"skill","img":"systems/CoC7/assets/icons/skills/operate_heavy_machinery.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":1,"properties":{"push":true},"skillName":"Operate Heavy Machinery","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.operate-heavy-machinery","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true,"downDarkerTrails":true,"downDarkerTrailsPulp":true,"gasLight":true},"priority":0}}}} -{"_id":"dQ4zUjSteT3sgwKx","name":"Animal Handling","type":"skill","img":"systems/CoC7/assets/icons/skills/animal_handling.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":5,"properties":{"push":true,"rarity":true},"skillName":"Animal Handling","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.animal-handling","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true},"priority":0}}}} -{"_id":"gRUXG91zIJXOLye1","name":"Firearms (Submachine Gun)","type":"skill","img":"systems/CoC7/assets/icons/skills/firearms_submachine_gun.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":15,"properties":{"firearm":true,"combat":true,"special":true},"skillName":"Submachine Gun","specialization":"Firearms"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.firearms-submachine-gun","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true},"priority":0}}}} -{"_id":"gzNPM9gbx0EZffBV","name":"Disguise","type":"skill","img":"systems/CoC7/assets/icons/skills/disguise.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":5,"properties":{"push":true},"skillName":"Disguise","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.disguise","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true,"downDarkerTrails":true,"downDarkerTrailsPulp":true,"darkAges":true,"darkAgesPulp":true,"gasLight":true},"priority":0}}}} -{"_id":"hDr4eUbS398oniTa","name":"Intimidate","type":"skill","img":"systems/CoC7/assets/icons/skills/intimidate.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":15,"properties":{"push":true},"skillName":"Intimidate","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.intimidate","lang":"en","priority":0}}}} -{"_id":"hRPbMl2N0t6aBlyc","name":"Fighting (Sword)","type":"skill","img":"systems/CoC7/assets/icons/skills/fighting_sword.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":20,"properties":{"fighting":true,"combat":true,"special":true},"skillName":"Sword","specialization":"Fighting"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.fighting-sword","lang":"en","priority":0}}}} -{"_id":"hhvqA2BOljk1FHVg","name":"Science (Astronomy)","type":"skill","img":"systems/CoC7/assets/icons/skills/science_astronomy.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":1,"properties":{"push":true,"special":true},"skillName":"Astronomy","specialization":"Science"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.science-astronomy","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true},"priority":0}}}} -{"_id":"jTcu6Ni2ek7Yz5q3","name":"Natural World","type":"skill","img":"systems/CoC7/assets/icons/skills/natural_world.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":10,"properties":{"push":true},"skillName":"Natural World","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.natural-world","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true,"gasLight":true},"priority":0}}}} +{"_id":"gzNPM9gbx0EZffBV","name":"Disguise","type":"skill","img":"systems/CoC7/assets/icons/skills/disguise.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":5,"properties":{"push":true},"skillName":"Disguise","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.disguise","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true,"downDarkerTrails":true,"downDarkerTrailsPulp":true,"darkAges":true,"darkAgesPulp":true,"gasLight":true,"regency":true,"regencyPulp":true},"priority":0}}}} +{"_id":"4lN6yD6zwbjX6BFp","name":"Diving","type":"skill","img":"systems/CoC7/assets/icons/skills/diving_helmet.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":1,"properties":{"push":true,"rarity":true},"skillName":"Diving","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.diving","lang":"en","eras":{"standard":true,"modern":true,"downDarkerTrails":true,"downDarkerTrailsPulp":true},"priority":0}}}} +{"_id":"wK8XxNj9QwXlGFEb","name":"Dodge","type":"skill","img":"systems/CoC7/assets/icons/skills/dodge.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":"1/2*@DEX","skillName":"Dodge","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.dodge","lang":"en","priority":0}}}} +{"_id":"Og2OWQH93aSDWAMZ","name":"Drive Auto","type":"skill","img":"systems/CoC7/assets/icons/skills/drive_auto.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":20,"properties":{"push":true},"skillName":"Drive Auto","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.drive-auto","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true},"priority":0}}}} +{"_id":"Sxviv60td6kbS4kp","name":"Drive Carriage","type":"skill","img":"systems/CoC7/assets/icons/skills/cartwheel.svg","system":{"description":{"value":"

See the Cthulhu by Gaslight

"},"base":20,"properties":{"push":true},"skillName":"Drive Carriage","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.drive-carriage","lang":"en","eras":{"gasLight":true,"regency":true,"regencyPulp":true},"priority":0}}}} +{"_id":"rAK5soSX1n3jXj2A","name":"Drive Horse / Oxen","type":"skill","img":"systems/CoC7/assets/icons/skills/cartwheel.svg","system":{"description":{"value":"

See the Cthulhu Invictus

"},"base":20,"properties":{"push":true},"skillName":"Drive Horse / Oxen","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.drive-horse-oxen","lang":"en","eras":{"darkAges":true,"darkAgesPulp":true,"invictus":true},"priority":0}}}} +{"_id":"sqenne0VZoF54W5k","name":"Drive Wagon / Coach","type":"skill","img":"systems/CoC7/assets/icons/skills/cartwheel.svg","system":{"description":{"value":"

See the Down Darker Trails Rulebook

"},"base":20,"properties":{"push":true},"skillName":"Drive Wagon / Coach","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.drive-wagon-coach","lang":"en","eras":{"downDarkerTrails":true,"downDarkerTrailsPulp":true},"priority":0}}}} +{"_id":"NBkq8oCGM1FjmsyF","name":"Electrical Repair","type":"skill","img":"systems/CoC7/assets/icons/skills/electrical_repair.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":10,"properties":{"push":true},"skillName":"Electrical Repair","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.electrical-repair","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true},"priority":0}}}} +{"_id":"oEfvPMTx0cgyPlgV","name":"Electronics","type":"skill","img":"systems/CoC7/assets/icons/skills/electronics.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":1,"properties":{"push":true},"skillName":"Electronics","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.electronics","lang":"en","eras":{"modern":true,"modernPulp":true},"priority":0}}}} +{"_id":"t7uiYybrk8dHFdjp","name":"Empire","type":"skill","img":"systems/CoC7/assets/icons/skills/laurel_crown.svg","system":{"description":{"value":"

See the Cthulhu Invictus

"},"base":25,"properties":{"push":true},"skillName":"Empire","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.empire","lang":"en","eras":{"invictus":true},"priority":0}}}} {"_id":"ld78TITwKNFPpanQ","name":"Fast Talk","type":"skill","img":"systems/CoC7/assets/icons/skills/fast_talk.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":5,"properties":{"push":true},"skillName":"Fast Talk","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.fast-talk","lang":"en","priority":0}}}} +{"_id":"4y7D44TpkHVKxA7s","name":"Fighting (Any)","type":"skill","img":"systems/CoC7/assets/icons/skills/fighting_brawl.svg","system":{"description":{"value":"

Use in occupations / archetypes to prompt to select one Fighting skill

"},"base":0,"properties":{"fighting":true,"combat":true,"special":true,"picknameonly":true},"skillName":"Any","specialization":"Fighting"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.fighting-any","lang":"en","priority":0}}}} +{"_id":"T8fSLCwSD8C0iK8t","name":"Fighting (Axe)","type":"skill","img":"systems/CoC7/assets/icons/skills/fighting_axe.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":15,"properties":{"fighting":true,"combat":true,"special":true},"skillName":"Axe","specialization":"Fighting"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.fighting-axe","lang":"en","priority":0}}}} +{"_id":"vS8bsPWFlwgOecoB","name":"Fighting (Brawl)","type":"skill","img":"systems/CoC7/assets/icons/skills/fighting_brawl.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":25,"properties":{"fighting":true,"combat":true,"special":true},"skillName":"Brawl","specialization":"Fighting"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.fighting-brawl","lang":"en","priority":0}}}} +{"_id":"Ed8OShyl7D834Ihk","name":"Fighting (Chainsaw)","type":"skill","img":"systems/CoC7/assets/icons/skills/fighting_chainsaw.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":10,"properties":{"fighting":true,"combat":true,"special":true},"skillName":"Chainsaw","specialization":"Fighting"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.fighting-chainsaw","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true},"priority":0}}}} +{"_id":"OcnZzOYWaP4VsjXS","name":"Fighting (Flail)","type":"skill","img":"systems/CoC7/assets/icons/skills/fighting_flail.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":10,"properties":{"fighting":true,"combat":true,"special":true},"skillName":"Flail","specialization":"Fighting"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.fighting-flail","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true},"priority":0}}}} +{"_id":"TPOu48DT4QIrqE68","name":"Fighting (Garrote)","type":"skill","img":"systems/CoC7/assets/icons/skills/fighting_garrote.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":15,"properties":{"fighting":true,"combat":true,"special":true},"skillName":"Garrote","specialization":"Fighting"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.fighting-garrote","lang":"en","priority":0}}}} +{"_id":"IttOdCAGTeE6VU3F","name":"Fighting (Spear)","type":"skill","img":"systems/CoC7/assets/icons/skills/fighting_spear.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":20,"properties":{"fighting":true,"combat":true,"special":true},"skillName":"Spear","specialization":"Fighting"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.fighting-spear","lang":"en","priority":0}}}} +{"_id":"hRPbMl2N0t6aBlyc","name":"Fighting (Sword)","type":"skill","img":"systems/CoC7/assets/icons/skills/fighting_sword.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":20,"properties":{"fighting":true,"combat":true,"special":true},"skillName":"Sword","specialization":"Fighting"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.fighting-sword","lang":"en","priority":0}}}} +{"_id":"sWt5Q3ZXd6NlwhXU","name":"Fighting (Throw)","type":"skill","img":"systems/CoC7/assets/icons/skills/fighting_throw.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":20,"properties":{"fighting":true,"combat":true,"special":true},"skillName":"Throw","specialization":"Fighting"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.fighting-throw","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true,"downDarkerTrails":true,"downDarkerTrailsPulp":true,"gasLight":true,"regency":true,"regencyPulp":true},"priority":0}}}} +{"_id":"Pb3QI7x9xJVeXi8a","name":"Fighting (Whip)","type":"skill","img":"systems/CoC7/assets/icons/skills/fighting_whip.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":5,"properties":{"fighting":true,"combat":true,"special":true},"skillName":"Whip","specialization":"Fighting"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.fighting-whip","lang":"en","priority":0}}}} +{"_id":"YPiD2ubZensxjKGU","name":"Firearms (Any)","type":"skill","img":"systems/CoC7/assets/icons/skills/firearms_handgun.svg","system":{"description":{"value":"

Use in occupations / archetypes to prompt to select one Firearms skill

"},"base":0,"properties":{"firearm":true,"combat":true,"special":true,"picknameonly":true},"skillName":"Any","specialization":"Firearms"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.firearms-any","lang":"en","priority":0}}}} +{"_id":"qET2wCGGdy3z18Gc","name":"Firearms (Artillery)","type":"skill","img":"systems/CoC7/assets/icons/skills/firearms_artillery.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":1,"properties":{"firearm":true,"combat":true,"special":true,"rarity":true},"skillName":"Artillery","specialization":"Firearms"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.firearms-artillery","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true},"priority":0}}}} +{"_id":"VwGWZ2LBOwtMaw08","name":"Firearms (Bow)","type":"skill","img":"systems/CoC7/assets/icons/skills/firearms_bow.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":15,"properties":{"firearm":true,"combat":true,"special":true},"skillName":"Bow","specialization":"Firearms"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.firearms-bow","lang":"en","priority":0}}}} +{"_id":"35dvJDsrY8JipXRU","name":"Firearms (Flamethrower)","type":"skill","img":"systems/CoC7/assets/icons/skills/firearms_flamethrower.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":10,"properties":{"firearm":true,"combat":true,"special":true},"skillName":"Flamethrower","specialization":"Firearms"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.firearms-flamethrower","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true},"priority":0}}}} +{"_id":"KmDGtn7ukUFVb265","name":"Firearms (Handgun)","type":"skill","img":"systems/CoC7/assets/icons/skills/firearms_handgun.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":20,"properties":{"firearm":true,"combat":true,"special":true},"skillName":"Handgun","specialization":"Firearms"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.firearms-handgun","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true,"downDarkerTrails":true,"downDarkerTrailsPulp":true,"gasLight":true},"priority":0}}}} +{"_id":"23vdyJDDfjyneH3I","name":"Firearms (Heavy Weapons)","type":"skill","img":"systems/CoC7/assets/icons/skills/firearms_heavy_weapons.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":10,"properties":{"firearm":true,"combat":true,"special":true},"skillName":"Heavy Weapons","specialization":"Firearms"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.firearms-heavy-weapons","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true},"priority":0}}}} +{"_id":"QcomAOgmOS5g3dsh","name":"Firearms (Machine Gun)","type":"skill","img":"systems/CoC7/assets/icons/skills/firearms_machine_gun.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":10,"properties":{"firearm":true,"combat":true,"special":true},"skillName":"Machine Gun","specialization":"Firearms"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.firearms-machine-gun","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true},"priority":0}}}} {"_id":"m2pYjKk4Gk3FcEBL","name":"Firearms (Rifle/Shotgun)","type":"skill","img":"systems/CoC7/assets/icons/skills/firearms_rifle_shotgun.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":25,"properties":{"firearm":true,"combat":true,"special":true},"skillName":"Rifle/Shotgun","specialization":"Firearms"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.firearms-rifle-shotgun","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true,"downDarkerTrails":true,"downDarkerTrailsPulp":true,"gasLight":true},"priority":0}}}} -{"_id":"m6V53lyfz7zh95FE","name":"Art/Craft (Acting)","type":"skill","img":"systems/CoC7/assets/icons/skills/art_craft_acting.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":5,"properties":{"special":true,"push":true},"skillName":"Acting","specialization":"Art/Craft"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.art-craft-acting","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true,"gasLight":true},"priority":0}}}} -{"_id":"m8sBJxvuUdtQ2mDU","name":"Art/Craft (Fine Art)","type":"skill","img":"systems/CoC7/assets/icons/skills/art_craft_fine_art.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":5,"properties":{"special":true,"push":true},"skillName":"Fine Art","specialization":"Art/Craft"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.art-craft-fine-art","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true,"gasLight":true},"priority":0}}}} -{"_id":"mEblnQjptKvKCeIg","name":"Hypnosis","type":"skill","img":"systems/CoC7/assets/icons/skills/hypnosis.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":1,"properties":{"rarity":true,"push":true},"skillName":"Hypnosis","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.hypnosis","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true,"downDarkerTrails":true,"downDarkerTrailsPulp":true},"priority":0}}}} -{"_id":"nHaWNwtW3Lg0sqYJ","name":"Spot Hidden","type":"skill","img":"systems/CoC7/assets/icons/skills/spot_hidden.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":25,"properties":{"push":true},"skillName":"Spot Hidden","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.spot-hidden","lang":"en","priority":0}}}} +{"_id":"gRUXG91zIJXOLye1","name":"Firearms (Submachine Gun)","type":"skill","img":"systems/CoC7/assets/icons/skills/firearms_submachine_gun.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":15,"properties":{"firearm":true,"combat":true,"special":true},"skillName":"Submachine Gun","specialization":"Firearms"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.firearms-submachine-gun","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true},"priority":0}}}} {"_id":"nZ8rdL4PLb7A7f5B","name":"First Aid","type":"skill","img":"systems/CoC7/assets/icons/skills/first_aid.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":30,"properties":{"push":true},"skillName":"First Aid","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.first-aid","lang":"en","priority":0}}}} -{"_id":"o7TdzbuSP7ticONf","name":"Ride","type":"skill","img":"systems/CoC7/assets/icons/skills/ride.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":5,"properties":{"push":true},"skillName":"Ride","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.ride","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true,"gasLight":true},"priority":0}}}} -{"_id":"oEfvPMTx0cgyPlgV","name":"Electronics","type":"skill","img":"systems/CoC7/assets/icons/skills/electronics.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":1,"properties":{"push":true},"skillName":"Electronics","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.electronics","lang":"en","eras":{"modern":true,"modernPulp":true},"priority":0}}}} -{"_id":"oh5eFj00Wohnx1My","name":"Climb","type":"skill","img":"systems/CoC7/assets/icons/skills/climb.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":20,"properties":{"push":true},"skillName":"Climb","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.climb","lang":"en","priority":0}}}} -{"_id":"ovIp66Luwfwbq28F","name":"Anthropology","type":"skill","img":"systems/CoC7/assets/icons/skills/anthropology.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":1,"properties":{"push":true},"skillName":"Anthropology","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.anthropology","lang":"en","eras":{"standard":true,"modern":true,"downDarkerTrails":true,"downDarkerTrailsPulp":true,"gasLight":true},"priority":0}}}} -{"_id":"qET2wCGGdy3z18Gc","name":"Firearms (Artillery)","type":"skill","img":"systems/CoC7/assets/icons/skills/firearms_artillery.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":1,"properties":{"firearm":true,"combat":true,"special":true,"rarity":true},"skillName":"Artillery","specialization":"Firearms"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.firearms-artillery","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true},"priority":0}}}} -{"_id":"rAK5soSX1n3jXj2A","name":"Drive Horse / Oxen","type":"skill","img":"systems/CoC7/assets/icons/skills/cartwheel.svg","system":{"description":{"value":"

See the Cthulhu Invictus

"},"base":20,"properties":{"push":true},"skillName":"Drive Horse / Oxen","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.drive-horse-oxen","lang":"en","eras":{"darkAges":true,"darkAgesPulp":true,"invictus":true},"priority":0}}}} -{"_id":"rCJKGay6D0ucqgeg","name":"Lore (Any)","type":"skill","img":"systems/CoC7/assets/icons/skills/classical_knowledge.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":1,"properties":{"special":true,"requiresname":true,"rarity":true,"push":true},"skillName":"Any","specialization":"Lore"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.lore-any","lang":"en","eras":{"standard":true,"modern":true},"priority":0}}}} -{"_id":"rXBU2GofiO2qOsGv","name":"Psychoanalysis","type":"skill","img":"systems/CoC7/assets/icons/skills/psychoanalysis.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":1,"properties":{"push":true},"skillName":"Psychoanalysis","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.psychoanalysis","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true},"priority":0}}}} +{"_id":"SflwB1bbjaQebiPQ","name":"Gambling","type":"skill","img":"systems/CoC7/assets/icons/skills/poker-hand.svg","system":{"description":{"value":"

See the Down Darker Trails Rulebook

"},"base":10,"properties":{"push":true},"skillName":"Gambling","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.gambling","lang":"en","eras":{"downDarkerTrails":true,"downDarkerTrailsPulp":true},"priority":0}}}} +{"_id":"URo2NSSJSNdvOqXU","name":"History","type":"skill","img":"systems/CoC7/assets/icons/skills/history.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":5,"properties":{"push":true},"skillName":"History","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.history","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true,"downDarkerTrails":true,"downDarkerTrailsPulp":true,"gasLight":true,"regency":true,"regencyPulp":true},"priority":0}}}} +{"_id":"mEblnQjptKvKCeIg","name":"Hypnosis","type":"skill","img":"systems/CoC7/assets/icons/skills/hypnosis.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":1,"properties":{"rarity":true,"push":true},"skillName":"Hypnosis","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.hypnosis","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true,"downDarkerTrails":true,"downDarkerTrailsPulp":true},"priority":0}}}} +{"_id":"hDr4eUbS398oniTa","name":"Intimidate","type":"skill","img":"systems/CoC7/assets/icons/skills/intimidate.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":15,"properties":{"push":true},"skillName":"Intimidate","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.intimidate","lang":"en","priority":0}}}} +{"_id":"c5utlFbDM7J8TA8b","name":"Jump","type":"skill","img":"systems/CoC7/assets/icons/skills/jump.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":20,"properties":{"push":true},"skillName":"Jump","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.jump","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true,"downDarkerTrails":true,"downDarkerTrailsPulp":true,"gasLight":true,"regency":true,"regencyPulp":true},"priority":0}}}} +{"_id":"Yu3Xk8kZBlz0G82y","name":"Language (Any)","type":"skill","img":"systems/CoC7/assets/icons/skills/language.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":1,"properties":{"special":true,"requiresname":true,"push":true},"skillName":"Any","specialization":"Language"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.language-any","lang":"en","priority":0}}}} {"_id":"rhJ1Q9OB3uTUZmjD","name":"Language (Own)","type":"skill","img":"systems/CoC7/assets/icons/skills/language.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":"@EDU","properties":{"push":true,"special":true,"requiresname":true,"keepbasevalue":true,"onlyone":true},"skillName":"Own","specialization":"Language"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.language-own","lang":"en","priority":0}}}} -{"_id":"sWt5Q3ZXd6NlwhXU","name":"Fighting (Throw)","type":"skill","img":"systems/CoC7/assets/icons/skills/fighting_throw.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":20,"properties":{"fighting":true,"combat":true,"special":true},"skillName":"Throw","specialization":"Fighting"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.fighting-throw","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true,"downDarkerTrails":true,"downDarkerTrailsPulp":true,"gasLight":true},"priority":0}}}} -{"_id":"sqenne0VZoF54W5k","name":"Drive Wagon / Coach","type":"skill","img":"systems/CoC7/assets/icons/skills/cartwheel.svg","system":{"description":{"value":"

See the Down Darker Trails Rulebook

"},"base":20,"properties":{"push":true},"skillName":"Drive Wagon / Coach","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.drive-wagon-coach","lang":"en","eras":{"downDarkerTrails":true,"downDarkerTrailsPulp":true},"priority":0}}}} -{"_id":"t7uiYybrk8dHFdjp","name":"Empire","type":"skill","img":"systems/CoC7/assets/icons/skills/laurel_crown.svg","system":{"description":{"value":"

See the Cthulhu Invictus

"},"base":25,"properties":{"push":true},"skillName":"Empire","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.empire","lang":"en","eras":{"invictus":true},"priority":0}}}} -{"_id":"uMzSNURmZqjxr7mU","name":"Persuade","type":"skill","img":"systems/CoC7/assets/icons/skills/persuade.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":10,"properties":{"push":true},"skillName":"Persuade","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.persuade","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true,"downDarkerTrails":true,"downDarkerTrailsPulp":true,"gasLight":true},"priority":0}}}} +{"_id":"64hnBZNC8FM7oTkg","name":"Law","type":"skill","img":"systems/CoC7/assets/icons/skills/law.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":5,"properties":{"push":true},"skillName":"Law","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.law","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true,"downDarkerTrails":true,"downDarkerTrailsPulp":true,"gasLight":true,"regency":true,"regencyPulp":true},"priority":0}}}} +{"_id":"BcWHh8EhmyKj7bNk","name":"Library Use","type":"skill","img":"systems/CoC7/assets/icons/skills/library_use.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":20,"properties":{"push":true},"skillName":"Library Use","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.library-use","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true,"downDarkerTrails":true,"downDarkerTrailsPulp":true,"gasLight":true,"regency":true,"regencyPulp":true},"priority":0}}}} +{"_id":"MoAB0NRNlpEc2qWr","name":"Listen","type":"skill","img":"systems/CoC7/assets/icons/skills/listen.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":20,"properties":{"push":true},"skillName":"Listen","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.listen","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true,"downDarkerTrails":true,"downDarkerTrailsPulp":true,"gasLight":true,"regency":true,"regencyPulp":true},"priority":0}}}} +{"_id":"MRbFH52Zh9TzhLBh","name":"Locksmith","type":"skill","img":"systems/CoC7/assets/icons/skills/locksmith.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":1,"properties":{"push":true},"skillName":"Locksmith","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.locksmith","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true,"downDarkerTrails":true,"downDarkerTrailsPulp":true,"gasLight":true,"regency":true,"regencyPulp":true},"priority":0}}}} +{"_id":"rCJKGay6D0ucqgeg","name":"Lore (Any)","type":"skill","img":"systems/CoC7/assets/icons/skills/classical_knowledge.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":1,"properties":{"special":true,"requiresname":true,"rarity":true,"push":true},"skillName":"Any","specialization":"Lore"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.lore-any","lang":"en","eras":{"standard":true,"modern":true},"priority":0}}}} +{"_id":"0qCTuRFUCACSEsWj","name":"Mechanical Repair","type":"skill","img":"systems/CoC7/assets/icons/skills/mechanical_repair.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":10,"properties":{"push":true},"skillName":"Mechanical Repair","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.mechanical-repair","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true,"downDarkerTrails":true,"downDarkerTrailsPulp":true,"gasLight":true,"regency":true,"regencyPulp":true},"priority":0}}}} +{"_id":"Xmg7oAy70DKpv4kq","name":"Medicine","type":"skill","img":"systems/CoC7/assets/icons/skills/medicine.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":1,"properties":{"push":true},"skillName":"Medicine","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.medicine","lang":"en","priority":0}}}} +{"_id":"jTcu6Ni2ek7Yz5q3","name":"Natural World","type":"skill","img":"systems/CoC7/assets/icons/skills/natural_world.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":10,"properties":{"push":true},"skillName":"Natural World","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.natural-world","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true,"gasLight":true,"regency":true,"regencyPulp":true},"priority":0}}}} +{"_id":"1c3fdvpQtvZf5YXK","name":"Navigate","type":"skill","img":"systems/CoC7/assets/icons/skills/navigate.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":10,"properties":{"push":true},"skillName":"Navigate","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.navigate","lang":"en","priority":0}}}} +{"_id":"6pSfZVS68jSHxa5T","name":"Occult","type":"skill","img":"systems/CoC7/assets/icons/skills/occult.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":5,"properties":{"push":true},"skillName":"Occult","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.occult","lang":"en","priority":0}}}} +{"_id":"cuExWy1130KUwuWz","name":"Operate Heavy Machinery","type":"skill","img":"systems/CoC7/assets/icons/skills/operate_heavy_machinery.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":1,"properties":{"push":true},"skillName":"Operate Heavy Machinery","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.operate-heavy-machinery","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true,"downDarkerTrails":true,"downDarkerTrailsPulp":true,"gasLight":true},"priority":0}}}} +{"_id":"uMzSNURmZqjxr7mU","name":"Persuade","type":"skill","img":"systems/CoC7/assets/icons/skills/persuade.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":10,"properties":{"push":true},"skillName":"Persuade","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.persuade","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true,"downDarkerTrails":true,"downDarkerTrailsPulp":true,"gasLight":true,"regency":true,"regencyPulp":true},"priority":0}}}} {"_id":"uQsVn8K6XRXQmtaI","name":"Pilot (Any)","type":"skill","img":"systems/CoC7/assets/icons/skills/pilot_any.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":1,"properties":{"special":true,"requiresname":true,"push":true},"skillName":"Any","specialization":"Pilot"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.pilot-any","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true,"downDarkerTrails":true,"downDarkerTrailsPulp":true,"gasLight":true},"priority":0}}}} -{"_id":"vS8bsPWFlwgOecoB","name":"Fighting (Brawl)","type":"skill","img":"systems/CoC7/assets/icons/skills/fighting_brawl.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":25,"properties":{"fighting":true,"combat":true,"special":true},"skillName":"Brawl","specialization":"Fighting"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.fighting-brawl","lang":"en","priority":0}}}} -{"_id":"vYrJ5h9cIQBzvw8E","name":"Credit Rating","type":"skill","img":"systems/CoC7/assets/icons/skills/credit_rating.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":0,"properties":{"noxpgain":true,"push":true},"skillName":"Credit Rating","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.credit-rating","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true,"downDarkerTrails":true,"downDarkerTrailsPulp":true,"gasLight":true},"priority":0}}}} +{"_id":"rXBU2GofiO2qOsGv","name":"Psychoanalysis","type":"skill","img":"systems/CoC7/assets/icons/skills/psychoanalysis.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":1,"properties":{"push":true},"skillName":"Psychoanalysis","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.psychoanalysis","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true},"priority":0}}}} +{"_id":"MFR4eR79niGaLfph","name":"Psychology","type":"skill","img":"systems/CoC7/assets/icons/skills/psychology.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":10,"properties":{"push":true},"skillName":"Psychology","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.psychology","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true,"downDarkerTrails":true,"downDarkerTrailsPulp":true,"gasLight":true,"regency":true,"regencyPulp":true},"priority":0}}}} +{"_id":"SL2OorS0Xx6ty02A","name":"Read Lips","type":"skill","img":"systems/CoC7/assets/icons/skills/read_lips.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":1,"properties":{"rarity":true,"push":true},"skillName":"Read Lips","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.read-lips","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true},"priority":0}}}} +{"_id":"o7TdzbuSP7ticONf","name":"Ride","type":"skill","img":"systems/CoC7/assets/icons/skills/ride.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":5,"properties":{"push":true},"skillName":"Ride","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.ride","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true,"gasLight":true,"regency":true,"regencyPulp":true},"priority":0}}}} +{"_id":"EMA6uEtQBgJtBcPl","name":"Rope Use","type":"skill","img":"systems/CoC7/assets/icons/skills/lasso.svg","system":{"description":{"value":"

See the Down Darker Trails Rulebook

"},"base":5,"properties":{"push":true},"skillName":"Rope Use","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.rope-use","lang":"en","eras":{"downDarkerTrails":true,"downDarkerTrailsPulp":true},"priority":0}}}} +{"_id":"KvZuYcg3AmVrwKi2","name":"Science (Any)","type":"skill","img":"systems/CoC7/assets/icons/skills/science_any.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":1,"properties":{"special":true,"requiresname":true,"push":true},"skillName":"Any","specialization":"Science"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.science-any","lang":"en","priority":0}}}} +{"_id":"hhvqA2BOljk1FHVg","name":"Science (Astronomy)","type":"skill","img":"systems/CoC7/assets/icons/skills/science_astronomy.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":1,"properties":{"push":true,"special":true},"skillName":"Astronomy","specialization":"Science"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.science-astronomy","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true},"priority":0}}}} +{"_id":"IBSDR6U4dE1uejVp","name":"Science (Biology)","type":"skill","img":"systems/CoC7/assets/icons/skills/science_biology.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":1,"properties":{"special":true,"push":true},"skillName":"Biology","specialization":"Science"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.science-biology","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true},"priority":0}}}} +{"_id":"ShPoibiLsd07AtZv","name":"Science (Botany)","type":"skill","img":"systems/CoC7/assets/icons/skills/science_botany.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":1,"properties":{"special":true,"push":true},"skillName":"Botany","specialization":"Science"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.science-botany","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true},"priority":0}}}} +{"_id":"8twBT7nbyh5dEp3J","name":"Science (Chemistry)","type":"skill","img":"systems/CoC7/assets/icons/skills/science_chemistry.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":1,"properties":{"special":true,"push":true},"skillName":"Chemistry","specialization":"Science"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.science-chemistry","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true},"priority":0}}}} +{"_id":"UASTWOvgCYi8G1QQ","name":"Science (Cryptography)","type":"skill","img":"systems/CoC7/assets/icons/skills/science_cryptography.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":1,"properties":{"special":true,"push":true},"skillName":"Cryptography","specialization":"Science"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.science-cryptography","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true},"priority":0}}}} +{"_id":"9zy7PLmTLXknFce4","name":"Science (Engineering)","type":"skill","img":"systems/CoC7/assets/icons/skills/spanner.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":1,"properties":{"special":true,"push":true},"skillName":"Engineering","specialization":"Science"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.science-engineering","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true},"priority":0}}}} +{"_id":"Nw5tSvi2Knxlqmg1","name":"Science (Forensics)","type":"skill","img":"systems/CoC7/assets/icons/skills/science_forensics.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":1,"properties":{"special":true,"push":true},"skillName":"Forensics","specialization":"Science"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.science-forensics","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true},"priority":0}}}} +{"_id":"QwaL3UC3Gvjd3hmF","name":"Science (Geology)","type":"skill","img":"systems/CoC7/assets/icons/skills/science_geology.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":1,"properties":{"special":true,"push":true},"skillName":"Geology","specialization":"Science"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.science-geology","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true},"priority":0}}}} +{"_id":"TwYYqLHe1PXnOCDF","name":"Science (Mathematics)","type":"skill","img":"systems/CoC7/assets/icons/skills/science_mathematics.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":10,"properties":{"special":true,"push":true},"skillName":"Mathematics","specialization":"Science"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.science-mathematics","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true},"priority":0}}}} {"_id":"w7hWVU14syjweIH2","name":"Science (Meteorology)","type":"skill","img":"systems/CoC7/assets/icons/skills/science_meteorology.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":1,"properties":{"special":true,"push":true},"skillName":"Meteorology","specialization":"Science"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.science-meteorology","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true},"priority":0}}}} -{"_id":"wK8XxNj9QwXlGFEb","name":"Dodge","type":"skill","img":"systems/CoC7/assets/icons/skills/dodge.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":"1/2*@DEX","skillName":"Dodge","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.dodge","lang":"en","priority":0}}}} -{"_id":"wOs3gryeGRPkGoWD","name":"Appraise","type":"skill","img":"systems/CoC7/assets/icons/skills/appraise.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":5,"properties":{"push":true},"skillName":"Appraise","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.appraise","lang":"en","priority":0}}}} -{"_id":"zcvnv8qY4GrVwwTL","name":"Art/Craft (Forgery)","type":"skill","img":"systems/CoC7/assets/icons/skills/art_craft_forgery.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":5,"properties":{"special":true,"push":true},"skillName":"Forgery","specialization":"Art/Craft"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.art-craft-forgery","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true,"gasLight":true},"priority":0}}}} -{"name":"Fighting (Any)","type":"skill","img":"systems/CoC7/assets/icons/skills/fighting_brawl.svg","system":{"base":0,"description":{"value":"

Use in occupations / archetypes to prompt to select one Fighting skill

"},"properties":{"fighting":true,"combat":true,"special":true,"picknameonly":true},"skillName":"Any","specialization":"Fighting"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.fighting-any","lang":"en","priority":0}}},"_id":"4y7D44TpkHVKxA7s"} -{"name":"Firearms (Any)","type":"skill","img":"systems/CoC7/assets/icons/skills/firearms_handgun.svg","system":{"base":0,"description":{"value":"

Use in occupations / archetypes to prompt to select one Firearms skill

"},"properties":{"firearm":true,"combat":true,"special":true,"picknameonly":true},"skillName":"Any","specialization":"Firearms"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.firearms-any","lang":"en","priority":0}}},"_id":"YPiD2ubZensxjKGU"} \ No newline at end of file +{"_id":"V9ulAwDyLVqqQ0su","name":"Science (Pharmacy)","type":"skill","img":"systems/CoC7/assets/icons/skills/science_pharmacy.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":1,"properties":{"special":true,"push":true},"skillName":"Pharmacy","specialization":"Science"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.science-pharmacy","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true},"priority":0}}}} +{"_id":"Dh6sHWep0qKQmi3I","name":"Science (Physics)","type":"skill","img":"systems/CoC7/assets/icons/skills/science_physics.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":1,"properties":{"special":true,"push":true},"skillName":"Physics","specialization":"Science"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.science-physics","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true},"priority":0}}}} +{"_id":"0rlp7EuZDzQGjIYf","name":"Science (Zoology)","type":"skill","img":"systems/CoC7/assets/icons/skills/science_zoology.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":1,"properties":{"special":true,"push":true},"skillName":"Zoology","specialization":"Science"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.science-zoology","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true},"priority":0}}}} +{"_id":"KKFNX5M4LtEtiuxs","name":"Sleight of Hand","type":"skill","img":"systems/CoC7/assets/icons/skills/sleight_of_hand.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":10,"properties":{"push":true},"skillName":"Sleight of Hand","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.sleight-of-hand","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true,"downDarkerTrails":true,"downDarkerTrailsPulp":true,"gasLight":true,"regency":true,"regencyPulp":true},"priority":0}}}} +{"_id":"nHaWNwtW3Lg0sqYJ","name":"Spot Hidden","type":"skill","img":"systems/CoC7/assets/icons/skills/spot_hidden.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":25,"properties":{"push":true},"skillName":"Spot Hidden","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.spot-hidden","lang":"en","priority":0}}}} +{"_id":"DcV524K0jNfjDEZC","name":"Stealth","type":"skill","img":"systems/CoC7/assets/icons/skills/stealth.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":20,"properties":{"push":true},"skillName":"Stealth","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.stealth","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true,"downDarkerTrails":true,"downDarkerTrailsPulp":true,"darkAges":true,"darkAgesPulp":true,"gasLight":true,"regency":true,"regencyPulp":true},"priority":0}}}} +{"_id":"X99v5MtRlfTNjL3B","name":"Survival (Any)","type":"skill","img":"systems/CoC7/assets/icons/skills/survival_any.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":10,"properties":{"special":true,"requiresname":true,"push":true},"skillName":"Any","specialization":"Survival"},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.survival-any","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true,"downDarkerTrails":true,"downDarkerTrailsPulp":true,"gasLight":true,"regency":true,"regencyPulp":true},"priority":0}}}} +{"_id":"1zSIeY0eat2AxQok","name":"Swim","type":"skill","img":"systems/CoC7/assets/icons/skills/swim.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":20,"properties":{"push":true},"skillName":"Swim","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.swim","lang":"en","eras":{"standard":true,"modern":true,"modernPulp":true,"pulp":true,"downDarkerTrails":true,"downDarkerTrailsPulp":true,"gasLight":true,"regency":true,"regencyPulp":true},"priority":0}}}} +{"_id":"AcUIbZFhfoXqQP2m","name":"Track","type":"skill","img":"systems/CoC7/assets/icons/skills/track.svg","system":{"description":{"value":"

See the Call of Cthulhu - 7th Ed Core Rulebook

"},"base":10,"properties":{"push":true},"skillName":"Track","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.track","lang":"en","priority":0}}}} +{"_id":"HzOGu2yLcL9obry3","name":"Trap","type":"skill","img":"systems/CoC7/assets/icons/skills/wolf-trap.svg","system":{"description":{"value":"

See the Down Darker Trails Rulebook

"},"base":10,"properties":{"push":true},"skillName":"Trap","specialization":""},"flags":{"CoC7":{"cocidFlag":{"id":"i.skill.trap","lang":"en","eras":{"downDarkerTrails":true,"downDarkerTrailsPulp":true},"priority":0}}}} \ No newline at end of file From 07952821695e6f6ac8507247f1298d6f4efb8aa5 Mon Sep 17 00:00:00 2001 From: snap01 <43982555+snap01@users.noreply.github.com> Date: Sun, 23 Jul 2023 08:40:02 +0000 Subject: [PATCH 6/8] Updated translations list --- .github/TRANSLATIONS.md | 336 ++++++++++++++++++---------------------- 1 file changed, 149 insertions(+), 187 deletions(-) diff --git a/.github/TRANSLATIONS.md b/.github/TRANSLATIONS.md index ea9a6bcb..d570a7d3 100644 --- a/.github/TRANSLATIONS.md +++ b/.github/TRANSLATIONS.md @@ -2,168 +2,152 @@ Thank you for being interested in making Call of Cthulhu 7th Edition for Foundry VTT better! Below is a list of translations keys on existing files that still need translated, based on `en.json`. Feel free to create a new `*.json` file for a language that is not shown here! -The following translations are currently up to date **fr**, **it**, **pl**, **zh-TW** +The following translations have more than 153 untranslated strings **cn**, **cs**, **es**, **ja**, **ko**, **ru**, **sv**, [are you able to help?](./ABANDONED.md) -The following translations have more than 153 untranslated strings **cn**, **cs**, **es**, **ja**, **ru**, **sv**, [are you able to help?](./ABANDONED.md) - -|Key|de|ko|pt-BR| -|:---|:---:|:---:|:---:| -|**Remaining**:|**139**|**153**|**101**| -|[CoC7.ActorImporterUploadError](#coc7actorimporteruploaderror)|✅|❌|✅| -|[CoC7.CoCIDBatch.summary](#coc7cocidbatchsummary)|❌|❌|❌| -|[CoC7.CoCIDBatch.title](#coc7cocidbatchtitle)|❌|❌|❌| -|[CoC7.CoCIDFlag.documents-in-compendiums](#coc7cocidflagdocumentsincompendiums)|❌|❌|✅| -|[CoC7.CoCIDFlag.documents-in-world](#coc7cocidflagdocumentsinworld)|❌|❌|✅| -|[CoC7.CoCIDFlag.error.document-not-found](#coc7cocidflagerrordocumentnotfound)|❌|❌|✅| -|[CoC7.CoCIDFlag.error.documents-not-found](#coc7cocidflagerrordocumentsnotfound)|❌|❌|✅| -|[CoC7.CoCIDFlag.error.duplicate](#coc7cocidflagerrorduplicate)|❌|❌|✅| -|[CoC7.CoCIDFlag.error.incorrect.type](#coc7cocidflagerrorincorrecttype)|❌|❌|✅| -|[CoC7.CoCIDFlag.error.unknown-era](#coc7cocidflagerrorunknownera)|❌|❌|✅| -|[CoC7.CoCIDFlag.foundry-id](#coc7cocidflagfoundryid)|❌|❌|✅| -|[CoC7.CoCIDFlag.foundry-uuid](#coc7cocidflagfoundryuuid)|❌|❌|✅| -|[CoC7.CoCIDFlag.get-document-like-this](#coc7cocidflaggetdocumentlikethis)|❌|❌|✅| -|[CoC7.CoCIDFlag.get-this-document](#coc7cocidflaggetthisdocument)|❌|❌|✅| -|[CoC7.CoCIDFlag.guess](#coc7cocidflagguess)|❌|❌|✅| -|[CoC7.CoCIDFlag.id](#coc7cocidflagid)|❌|❌|✅| -|[CoC7.CoCIDFlag.key](#coc7cocidflagkey)|❌|❌|✅| -|[CoC7.CoCIDFlag.new](#coc7cocidflagnew)|❌|❌|✅| -|[CoC7.CoCIDFlag.others](#coc7cocidflagothers)|❌|❌|✅| -|[CoC7.CoCIDFlag.priority](#coc7cocidflagpriority)|❌|❌|✅| -|[CoC7.CoCIDFlag.summary](#coc7cocidflagsummary)|❌|❌|✅| -|[CoC7.CoCIDFlag.title](#coc7cocidflagtitle)|❌|❌|✅| -|[CoC7.CustomSpecialisationLabel](#coc7customspecialisationlabel)|❌|❌|✅| -|[CoC7.Damage](#coc7damage)|✅|❌|✅| -|[CoC7.EraDarkAgesPulp](#coc7eradarkagespulp)|❌|❌|✅| -|[CoC7.EraDownDarkerTrailsPulp](#coc7eradowndarkertrailspulp)|❌|❌|✅| -|[CoC7.EraModernPulp](#coc7eramodernpulp)|❌|❌|✅| -|[CoC7.FileUploadError](#coc7fileuploaderror)|✅|❌|✅| -|[CoC7.InvestigatorWizard.AddBonusPointsToSkills](#coc7investigatorwizardaddbonuspointstoskills)|❌|❌|❌| -|[CoC7.InvestigatorWizard.AgeRange](#coc7investigatorwizardagerange)|❌|❌|❌| -|[CoC7.InvestigatorWizard.AllowRerolls](#coc7investigatorwizardallowrerolls)|❌|❌|❌| -|[CoC7.InvestigatorWizard.ArchetypeCounts](#coc7investigatorwizardarchetypecounts)|❌|❌|❌| -|[CoC7.InvestigatorWizard.ArchetypeDefaultSkills](#coc7investigatorwizardarchetypedefaultskills)|❌|❌|❌| -|[CoC7.InvestigatorWizard.ArchetypeOptionalSkills](#coc7investigatorwizardarchetypeoptionalskills)|❌|❌|❌| -|[CoC7.InvestigatorWizard.ArchetypePage](#coc7investigatorwizardarchetypepage)|❌|❌|❌| -|[CoC7.InvestigatorWizard.ArchetypeSelect](#coc7investigatorwizardarchetypeselect)|❌|❌|❌| -|[CoC7.InvestigatorWizard.Archetypes](#coc7investigatorwizardarchetypes)|❌|❌|❌| -|[CoC7.InvestigatorWizard.BackStep](#coc7investigatorwizardbackstep)|❌|❌|❌| -|[CoC7.InvestigatorWizard.ChangingEraDelay](#coc7investigatorwizardchangingeradelay)|❌|❌|❌| -|[CoC7.InvestigatorWizard.CharacterAvatarImage](#coc7investigatorwizardcharacteravatarimage)|❌|❌|❌| -|[CoC7.InvestigatorWizard.CharacterTokenImage](#coc7investigatorwizardcharactertokenimage)|❌|❌|❌| -|[CoC7.InvestigatorWizard.CharacteristicDragInformation](#coc7investigatorwizardcharacteristicdraginformation)|❌|❌|❌| -|[CoC7.InvestigatorWizard.Characteristics](#coc7investigatorwizardcharacteristics)|❌|❌|❌| -|[CoC7.InvestigatorWizard.CoreCharacteristicName](#coc7investigatorwizardcorecharacteristicname)|❌|❌|❌| -|[CoC7.InvestigatorWizard.CoreCharacteristicSelect](#coc7investigatorwizardcorecharacteristicselect)|❌|❌|❌| -|[CoC7.InvestigatorWizard.CreateInstructions](#coc7investigatorwizardcreateinstructions)|❌|❌|❌| -|[CoC7.InvestigatorWizard.CreateStep](#coc7investigatorwizardcreatestep)|❌|❌|❌| -|[CoC7.InvestigatorWizard.CreatingInvestigator](#coc7investigatorwizardcreatinginvestigator)|❌|❌|❌| -|[CoC7.InvestigatorWizard.DeductPointsFromCharacteristics](#coc7investigatorwizarddeductpointsfromcharacteristics)|❌|❌|❌| -|[CoC7.InvestigatorWizard.EnforcePointBuy](#coc7investigatorwizardenforcepointbuy)|❌|❌|❌| -|[CoC7.InvestigatorWizard.Introduction](#coc7investigatorwizardintroduction)|❌|❌|❌| -|[CoC7.InvestigatorWizard.IntroductionKeeper](#coc7investigatorwizardintroductionkeeper)|❌|❌|❌| -|[CoC7.InvestigatorWizard.MakeEDUImprovementCheck](#coc7investigatorwizardmakeeduimprovementcheck)|❌|❌|❌| -|[CoC7.InvestigatorWizard.MakeEDUImprovementChecks](#coc7investigatorwizardmakeeduimprovementchecks)|❌|❌|❌| -|[CoC7.InvestigatorWizard.NextStep](#coc7investigatorwizardnextstep)|❌|❌|❌| -|[CoC7.InvestigatorWizard.OccupationCounts](#coc7investigatorwizardoccupationcounts)|❌|❌|❌| -|[CoC7.InvestigatorWizard.OccupationCreditRating](#coc7investigatorwizardoccupationcreditrating)|❌|❌|❌| -|[CoC7.InvestigatorWizard.OccupationDefaultSkills](#coc7investigatorwizardoccupationdefaultskills)|❌|❌|❌| -|[CoC7.InvestigatorWizard.OccupationPage](#coc7investigatorwizardoccupationpage)|❌|❌|❌| -|[CoC7.InvestigatorWizard.OccupationPersonalThisMany](#coc7investigatorwizardoccupationpersonalthismany)|❌|❌|❌| -|[CoC7.InvestigatorWizard.OccupationPickThisMany](#coc7investigatorwizardoccupationpickthismany)|❌|❌|❌| -|[CoC7.InvestigatorWizard.OccupationSelect](#coc7investigatorwizardoccupationselect)|❌|❌|❌| -|[CoC7.InvestigatorWizard.OccupationSkillPoints](#coc7investigatorwizardoccupationskillpoints)|❌|❌|❌| -|[CoC7.InvestigatorWizard.OccupationSkills](#coc7investigatorwizardoccupationskills)|❌|❌|❌| -|[CoC7.InvestigatorWizard.Occupations](#coc7investigatorwizardoccupations)|❌|❌|❌| -|[CoC7.InvestigatorWizard.OtherPlayerOwnership](#coc7investigatorwizardotherplayerownership)|❌|❌|❌| -|[CoC7.InvestigatorWizard.PlayerEnabled](#coc7investigatorwizardplayerenabled)|❌|❌|❌| -|[CoC7.InvestigatorWizard.PlayerQuantity](#coc7investigatorwizardplayerquantity)|❌|❌|❌| -|[CoC7.InvestigatorWizard.QuickFireValues](#coc7investigatorwizardquickfirevalues)|❌|❌|❌| -|[CoC7.InvestigatorWizard.ReducePointsFromCharacteristic](#coc7investigatorwizardreducepointsfromcharacteristic)|❌|❌|❌| -|[CoC7.InvestigatorWizard.RollTwiceForLuck](#coc7investigatorwizardrolltwiceforluck)|❌|❌|❌| -|[CoC7.InvestigatorWizard.SetupAny](#coc7investigatorwizardsetupany)|❌|❌|❌| -|[CoC7.InvestigatorWizard.SetupCounts](#coc7investigatorwizardsetupcounts)|❌|❌|❌| -|[CoC7.InvestigatorWizard.SetupPage](#coc7investigatorwizardsetuppage)|❌|❌|❌| -|[CoC7.InvestigatorWizard.SetupSelect](#coc7investigatorwizardsetupselect)|❌|❌|❌| -|[CoC7.InvestigatorWizard.Setups](#coc7investigatorwizardsetups)|❌|❌|❌| -|[CoC7.InvestigatorWizard.SkillSpendArchetypeCountIncorrect](#coc7investigatorwizardskillspendarchetypecountincorrect)|❌|❌|❌| -|[CoC7.InvestigatorWizard.SkillSpendArchetypePoints](#coc7investigatorwizardskillspendarchetypepoints)|❌|❌|❌| -|[CoC7.InvestigatorWizard.SkillSpendInterestPoints](#coc7investigatorwizardskillspendinterestpoints)|❌|❌|❌| -|[CoC7.InvestigatorWizard.SkillSpendOccupationCountIncorrect](#coc7investigatorwizardskillspendoccupationcountincorrect)|❌|❌|❌| -|[CoC7.InvestigatorWizard.SkillSpendOccupationPoints](#coc7investigatorwizardskillspendoccupationpoints)|❌|❌|❌| -|[CoC7.InvestigatorWizard.SuggestedOccupations](#coc7investigatorwizardsuggestedoccupations)|❌|❌|❌| -|[CoC7.InvestigatorWizard.SuggestedTraits](#coc7investigatorwizardsuggestedtraits)|❌|❌|❌| -|[CoC7.InvestigatorWizard.Title](#coc7investigatorwizardtitle)|❌|❌|❌| -|[CoC7.InvestigatorWizard.TitleAdjustCharacteristics](#coc7investigatorwizardtitleadjustcharacteristics)|❌|❌|❌| -|[CoC7.InvestigatorWizard.TitleArchetypeSkills](#coc7investigatorwizardtitlearchetypeskills)|❌|❌|❌| -|[CoC7.InvestigatorWizard.TitleAttributes](#coc7investigatorwizardtitleattributes)|❌|❌|❌| -|[CoC7.InvestigatorWizard.TitleBackstory](#coc7investigatorwizardtitlebackstory)|❌|❌|❌| -|[CoC7.InvestigatorWizard.TitleCharacteristics](#coc7investigatorwizardtitlecharacteristics)|❌|❌|❌| -|[CoC7.InvestigatorWizard.TitleCreate](#coc7investigatorwizardtitlecreate)|❌|❌|❌| -|[CoC7.InvestigatorWizard.TitleDetails](#coc7investigatorwizardtitledetails)|❌|❌|❌| -|[CoC7.InvestigatorWizard.TitleKeeperConfiguration](#coc7investigatorwizardtitlekeeperconfiguration)|❌|❌|❌| -|[CoC7.InvestigatorWizard.TitleOccupationSkills](#coc7investigatorwizardtitleoccupationskills)|❌|❌|❌| -|[CoC7.InvestigatorWizard.TitlePointsSkills](#coc7investigatorwizardtitlepointsskills)|❌|❌|❌| -|[CoC7.InvestigatorWizard.TitleSelectArchetype](#coc7investigatorwizardtitleselectarchetype)|❌|❌|❌| -|[CoC7.InvestigatorWizard.TitleSelectOccupation](#coc7investigatorwizardtitleselectoccupation)|❌|❌|❌| -|[CoC7.InvestigatorWizard.TitleSelectSetup](#coc7investigatorwizardtitleselectsetup)|❌|❌|❌| -|[CoC7.InvestigatorWizard.UseSetupMethod](#coc7investigatorwizardusesetupmethod)|❌|❌|❌| -|[CoC7.MonetaryCreditRatingMax](#coc7monetarycreditratingmax)|❌|❌|❌| -|[CoC7.MonetaryCreditRatingMin](#coc7monetarycreditratingmin)|❌|❌|❌| -|[CoC7.MonetaryDefaultAverage](#coc7monetarydefaultaverage)|❌|❌|❌| -|[CoC7.MonetaryDefaultPenniless](#coc7monetarydefaultpenniless)|❌|❌|❌| -|[CoC7.MonetaryDefaultPoor](#coc7monetarydefaultpoor)|❌|❌|❌| -|[CoC7.MonetaryDefaultRich](#coc7monetarydefaultrich)|❌|❌|❌| -|[CoC7.MonetaryDefaultSuperRich](#coc7monetarydefaultsuperrich)|❌|❌|❌| -|[CoC7.MonetaryDefaultWealthy](#coc7monetarydefaultwealthy)|❌|❌|❌| -|[CoC7.MonetaryFormatDecimalLeft](#coc7monetaryformatdecimalleft)|❌|❌|❌| -|[CoC7.MonetaryFormatDecimalRight](#coc7monetaryformatdecimalright)|❌|❌|❌| -|[CoC7.MonetaryFormatIntegerLeft](#coc7monetaryformatintegerleft)|❌|❌|❌| -|[CoC7.MonetaryFormatIntegerRight](#coc7monetaryformatintegerright)|❌|❌|❌| -|[CoC7.MonetaryFormatLsd](#coc7monetaryformatlsd)|❌|❌|❌| -|[CoC7.MonetaryFormatRoman](#coc7monetaryformatroman)|❌|❌|❌| -|[CoC7.MonetaryFormatTitle](#coc7monetaryformattitle)|❌|❌|❌| -|[CoC7.MonetaryTitle](#coc7monetarytitle)|❌|❌|❌| -|[CoC7.MonetaryTypeAsses](#coc7monetarytypeasses)|❌|❌|❌| -|[CoC7.MonetaryTypeCreditRating](#coc7monetarytypecreditrating)|❌|❌|❌| -|[CoC7.MonetaryTypeDenarii](#coc7monetarytypedenarii)|❌|❌|❌| -|[CoC7.MonetaryTypeDeniers](#coc7monetarytypedeniers)|❌|❌|❌| -|[CoC7.MonetaryTypeNone](#coc7monetarytypenone)|❌|❌|❌| -|[CoC7.MonetaryTypeOne](#coc7monetarytypeone)|❌|❌|❌| -|[CoC7.MonetaryTypeQuinarii](#coc7monetarytypequinarii)|❌|❌|❌| -|[CoC7.MonetaryTypeSestertii](#coc7monetarytypesestertii)|❌|❌|❌| -|[CoC7.MonetaryTypeSous](#coc7monetarytypesous)|❌|❌|❌| -|[CoC7.MonetaryValueAssets](#coc7monetaryvalueassets)|❌|❌|❌| -|[CoC7.MonetaryValueCash](#coc7monetaryvaluecash)|❌|❌|❌| -|[CoC7.MonetaryValueSpendingLevel](#coc7monetaryvaluespendinglevel)|❌|❌|❌| -|[CoC7.RemoveParticipant](#coc7removeparticipant)|✅|❌|✅| -|[CoC7.RemoveParticipantHint](#coc7removeparticipanthint)|✅|❌|✅| -|[CoC7.RollDifficultyCriticalTitle](#coc7rolldifficultycriticaltitle)|✅|❌|✅| -|[CoC7.RollDifficultyExtremeTitle](#coc7rolldifficultyextremetitle)|✅|❌|✅| -|[CoC7.RollDifficultyHardTitle](#coc7rolldifficultyhardtitle)|✅|❌|✅| -|[CoC7.RollDifficultyRegularTitle](#coc7rolldifficultyregulartitle)|✅|❌|✅| -|[CoC7.Settings.DropCoCID.Dialog](#coc7settingsdropcociddialog)|❌|❌|✅| -|[CoC7.Settings.DropCoCID.Hint](#coc7settingsdropcocidhint)|❌|❌|✅| -|[CoC7.Settings.DropCoCID.IgnoreCoCID](#coc7settingsdropcocidignorecocid)|❌|❌|✅| -|[CoC7.Settings.DropCoCID.Name](#coc7settingsdropcocidname)|❌|❌|✅| -|[CoC7.Settings.DropCoCID.Prompt](#coc7settingsdropcocidprompt)|❌|❌|✅| -|[CoC7.Settings.DropCoCID.Remember](#coc7settingsdropcocidremember)|❌|❌|✅| -|[CoC7.Settings.DropCoCID.UseCoCID](#coc7settingsdropcocidusecocid)|❌|❌|✅| -|[CoC7.Settings.PulpRules.IgnoreAgePenalties.Hint](#coc7settingspulprulesignoreagepenaltieshint)|❌|❌|✅| -|[CoC7.Settings.PulpRules.IgnoreAgePenalties.Name](#coc7settingspulprulesignoreagepenaltiesname)|❌|❌|✅| -|[CoC7.Settings.WorldEra.Hint](#coc7settingsworlderahint)|❌|❌|✅| -|[CoC7.Settings.WorldEra.Name](#coc7settingsworlderaname)|❌|❌|✅| -|[CoC7.SkillKeepBaseValue](#coc7skillkeepbasevalue)|❌|❌|✅| -|[CoC7.SkillPickNameOnly](#coc7skillpicknameonly)|❌|❌|✅| -|[CoC7.SkillRarityShort](#coc7skillrarityshort)|❌|❌|✅| -|[CoC7.SkillRequiresName](#coc7skillrequiresname)|❌|❌|✅| -|[CoC7.SkillSpecializationIsUnique](#coc7skillspecializationisunique)|❌|❌|❌| -|[CoC7.TextFieldInvalidJSON](#coc7textfieldinvalidjson)|✅|❌|✅| -|[CoC7.UnarmedWeaponName](#coc7unarmedweaponname)|✅|❌|✅| -|[CoC7.combatCard.automaticSuccess](#coc7combatcardautomaticsuccess)|✅|❌|✅| -|[CoC7.rangeCombatCard.SurprisedTargetTitle](#coc7rangecombatcardsurprisedtargettitle)|✅|❌|✅| -|[SETTINGS.DefaultDifficulty](#settingsdefaultdifficulty)|✅|❌|✅| -##### CoC7.ActorImporterUploadError -``` "CoC7.ActorImporterUploadError": "Import stopped, unable to write image",``` +|Key|de|fr|it|pl|pt-BR|zh-TW| +|:---|:---:|:---:|:---:|:---:|:---:|:---:| +|**Remaining**:|**141**|**2**|**2**|**2**|**103**|**2**| +|[CoC7.CoCIDBatch.summary](#coc7cocidbatchsummary)|❌|✅|✅|✅|❌|✅| +|[CoC7.CoCIDBatch.title](#coc7cocidbatchtitle)|❌|✅|✅|✅|❌|✅| +|[CoC7.CoCIDFlag.documents-in-compendiums](#coc7cocidflagdocumentsincompendiums)|❌|✅|✅|✅|✅|✅| +|[CoC7.CoCIDFlag.documents-in-world](#coc7cocidflagdocumentsinworld)|❌|✅|✅|✅|✅|✅| +|[CoC7.CoCIDFlag.error.document-not-found](#coc7cocidflagerrordocumentnotfound)|❌|✅|✅|✅|✅|✅| +|[CoC7.CoCIDFlag.error.documents-not-found](#coc7cocidflagerrordocumentsnotfound)|❌|✅|✅|✅|✅|✅| +|[CoC7.CoCIDFlag.error.duplicate](#coc7cocidflagerrorduplicate)|❌|✅|✅|✅|✅|✅| +|[CoC7.CoCIDFlag.error.incorrect.type](#coc7cocidflagerrorincorrecttype)|❌|✅|✅|✅|✅|✅| +|[CoC7.CoCIDFlag.error.unknown-era](#coc7cocidflagerrorunknownera)|❌|✅|✅|✅|✅|✅| +|[CoC7.CoCIDFlag.foundry-id](#coc7cocidflagfoundryid)|❌|✅|✅|✅|✅|✅| +|[CoC7.CoCIDFlag.foundry-uuid](#coc7cocidflagfoundryuuid)|❌|✅|✅|✅|✅|✅| +|[CoC7.CoCIDFlag.get-document-like-this](#coc7cocidflaggetdocumentlikethis)|❌|✅|✅|✅|✅|✅| +|[CoC7.CoCIDFlag.get-this-document](#coc7cocidflaggetthisdocument)|❌|✅|✅|✅|✅|✅| +|[CoC7.CoCIDFlag.guess](#coc7cocidflagguess)|❌|✅|✅|✅|✅|✅| +|[CoC7.CoCIDFlag.id](#coc7cocidflagid)|❌|✅|✅|✅|✅|✅| +|[CoC7.CoCIDFlag.key](#coc7cocidflagkey)|❌|✅|✅|✅|✅|✅| +|[CoC7.CoCIDFlag.new](#coc7cocidflagnew)|❌|✅|✅|✅|✅|✅| +|[CoC7.CoCIDFlag.others](#coc7cocidflagothers)|❌|✅|✅|✅|✅|✅| +|[CoC7.CoCIDFlag.priority](#coc7cocidflagpriority)|❌|✅|✅|✅|✅|✅| +|[CoC7.CoCIDFlag.summary](#coc7cocidflagsummary)|❌|✅|✅|✅|✅|✅| +|[CoC7.CoCIDFlag.title](#coc7cocidflagtitle)|❌|✅|✅|✅|✅|✅| +|[CoC7.CustomSpecialisationLabel](#coc7customspecialisationlabel)|❌|✅|✅|✅|✅|✅| +|[CoC7.EraDarkAgesPulp](#coc7eradarkagespulp)|❌|✅|✅|✅|✅|✅| +|[CoC7.EraDownDarkerTrailsPulp](#coc7eradowndarkertrailspulp)|❌|✅|✅|✅|✅|✅| +|[CoC7.EraModernPulp](#coc7eramodernpulp)|❌|✅|✅|✅|✅|✅| +|[CoC7.EraRegency](#coc7eraregency)|❌|❌|❌|❌|❌|❌| +|[CoC7.EraRegencyPulp](#coc7eraregencypulp)|❌|❌|❌|❌|❌|❌| +|[CoC7.InvestigatorWizard.AddBonusPointsToSkills](#coc7investigatorwizardaddbonuspointstoskills)|❌|✅|✅|✅|❌|✅| +|[CoC7.InvestigatorWizard.AgeRange](#coc7investigatorwizardagerange)|❌|✅|✅|✅|❌|✅| +|[CoC7.InvestigatorWizard.AllowRerolls](#coc7investigatorwizardallowrerolls)|❌|✅|✅|✅|❌|✅| +|[CoC7.InvestigatorWizard.ArchetypeCounts](#coc7investigatorwizardarchetypecounts)|❌|✅|✅|✅|❌|✅| +|[CoC7.InvestigatorWizard.ArchetypeDefaultSkills](#coc7investigatorwizardarchetypedefaultskills)|❌|✅|✅|✅|❌|✅| +|[CoC7.InvestigatorWizard.ArchetypeOptionalSkills](#coc7investigatorwizardarchetypeoptionalskills)|❌|✅|✅|✅|❌|✅| +|[CoC7.InvestigatorWizard.ArchetypePage](#coc7investigatorwizardarchetypepage)|❌|✅|✅|✅|❌|✅| +|[CoC7.InvestigatorWizard.ArchetypeSelect](#coc7investigatorwizardarchetypeselect)|❌|✅|✅|✅|❌|✅| +|[CoC7.InvestigatorWizard.Archetypes](#coc7investigatorwizardarchetypes)|❌|✅|✅|✅|❌|✅| +|[CoC7.InvestigatorWizard.BackStep](#coc7investigatorwizardbackstep)|❌|✅|✅|✅|❌|✅| +|[CoC7.InvestigatorWizard.ChangingEraDelay](#coc7investigatorwizardchangingeradelay)|❌|✅|✅|✅|❌|✅| +|[CoC7.InvestigatorWizard.CharacterAvatarImage](#coc7investigatorwizardcharacteravatarimage)|❌|✅|✅|✅|❌|✅| +|[CoC7.InvestigatorWizard.CharacterTokenImage](#coc7investigatorwizardcharactertokenimage)|❌|✅|✅|✅|❌|✅| +|[CoC7.InvestigatorWizard.CharacteristicDragInformation](#coc7investigatorwizardcharacteristicdraginformation)|❌|✅|✅|✅|❌|✅| +|[CoC7.InvestigatorWizard.Characteristics](#coc7investigatorwizardcharacteristics)|❌|✅|✅|✅|❌|✅| +|[CoC7.InvestigatorWizard.CoreCharacteristicName](#coc7investigatorwizardcorecharacteristicname)|❌|✅|✅|✅|❌|✅| +|[CoC7.InvestigatorWizard.CoreCharacteristicSelect](#coc7investigatorwizardcorecharacteristicselect)|❌|✅|✅|✅|❌|✅| +|[CoC7.InvestigatorWizard.CreateInstructions](#coc7investigatorwizardcreateinstructions)|❌|✅|✅|✅|❌|✅| +|[CoC7.InvestigatorWizard.CreateStep](#coc7investigatorwizardcreatestep)|❌|✅|✅|✅|❌|✅| +|[CoC7.InvestigatorWizard.CreatingInvestigator](#coc7investigatorwizardcreatinginvestigator)|❌|✅|✅|✅|❌|✅| +|[CoC7.InvestigatorWizard.DeductPointsFromCharacteristics](#coc7investigatorwizarddeductpointsfromcharacteristics)|❌|✅|✅|✅|❌|✅| +|[CoC7.InvestigatorWizard.EnforcePointBuy](#coc7investigatorwizardenforcepointbuy)|❌|✅|✅|✅|❌|✅| +|[CoC7.InvestigatorWizard.Introduction](#coc7investigatorwizardintroduction)|❌|✅|✅|✅|❌|✅| +|[CoC7.InvestigatorWizard.IntroductionKeeper](#coc7investigatorwizardintroductionkeeper)|❌|✅|✅|✅|❌|✅| +|[CoC7.InvestigatorWizard.MakeEDUImprovementCheck](#coc7investigatorwizardmakeeduimprovementcheck)|❌|✅|✅|✅|❌|✅| +|[CoC7.InvestigatorWizard.MakeEDUImprovementChecks](#coc7investigatorwizardmakeeduimprovementchecks)|❌|✅|✅|✅|❌|✅| +|[CoC7.InvestigatorWizard.NextStep](#coc7investigatorwizardnextstep)|❌|✅|✅|✅|❌|✅| +|[CoC7.InvestigatorWizard.OccupationCounts](#coc7investigatorwizardoccupationcounts)|❌|✅|✅|✅|❌|✅| +|[CoC7.InvestigatorWizard.OccupationCreditRating](#coc7investigatorwizardoccupationcreditrating)|❌|✅|✅|✅|❌|✅| +|[CoC7.InvestigatorWizard.OccupationDefaultSkills](#coc7investigatorwizardoccupationdefaultskills)|❌|✅|✅|✅|❌|✅| +|[CoC7.InvestigatorWizard.OccupationPage](#coc7investigatorwizardoccupationpage)|❌|✅|✅|✅|❌|✅| +|[CoC7.InvestigatorWizard.OccupationPersonalThisMany](#coc7investigatorwizardoccupationpersonalthismany)|❌|✅|✅|✅|❌|✅| +|[CoC7.InvestigatorWizard.OccupationPickThisMany](#coc7investigatorwizardoccupationpickthismany)|❌|✅|✅|✅|❌|✅| +|[CoC7.InvestigatorWizard.OccupationSelect](#coc7investigatorwizardoccupationselect)|❌|✅|✅|✅|❌|✅| +|[CoC7.InvestigatorWizard.OccupationSkillPoints](#coc7investigatorwizardoccupationskillpoints)|❌|✅|✅|✅|❌|✅| +|[CoC7.InvestigatorWizard.OccupationSkills](#coc7investigatorwizardoccupationskills)|❌|✅|✅|✅|❌|✅| +|[CoC7.InvestigatorWizard.Occupations](#coc7investigatorwizardoccupations)|❌|✅|✅|✅|❌|✅| +|[CoC7.InvestigatorWizard.OtherPlayerOwnership](#coc7investigatorwizardotherplayerownership)|❌|✅|✅|✅|❌|✅| +|[CoC7.InvestigatorWizard.PlayerEnabled](#coc7investigatorwizardplayerenabled)|❌|✅|✅|✅|❌|✅| +|[CoC7.InvestigatorWizard.PlayerQuantity](#coc7investigatorwizardplayerquantity)|❌|✅|✅|✅|❌|✅| +|[CoC7.InvestigatorWizard.QuickFireValues](#coc7investigatorwizardquickfirevalues)|❌|✅|✅|✅|❌|✅| +|[CoC7.InvestigatorWizard.ReducePointsFromCharacteristic](#coc7investigatorwizardreducepointsfromcharacteristic)|❌|✅|✅|✅|❌|✅| +|[CoC7.InvestigatorWizard.RollTwiceForLuck](#coc7investigatorwizardrolltwiceforluck)|❌|✅|✅|✅|❌|✅| +|[CoC7.InvestigatorWizard.SetupAny](#coc7investigatorwizardsetupany)|❌|✅|✅|✅|❌|✅| +|[CoC7.InvestigatorWizard.SetupCounts](#coc7investigatorwizardsetupcounts)|❌|✅|✅|✅|❌|✅| +|[CoC7.InvestigatorWizard.SetupPage](#coc7investigatorwizardsetuppage)|❌|✅|✅|✅|❌|✅| +|[CoC7.InvestigatorWizard.SetupSelect](#coc7investigatorwizardsetupselect)|❌|✅|✅|✅|❌|✅| +|[CoC7.InvestigatorWizard.Setups](#coc7investigatorwizardsetups)|❌|✅|✅|✅|❌|✅| +|[CoC7.InvestigatorWizard.SkillSpendArchetypeCountIncorrect](#coc7investigatorwizardskillspendarchetypecountincorrect)|❌|✅|✅|✅|❌|✅| +|[CoC7.InvestigatorWizard.SkillSpendArchetypePoints](#coc7investigatorwizardskillspendarchetypepoints)|❌|✅|✅|✅|❌|✅| +|[CoC7.InvestigatorWizard.SkillSpendInterestPoints](#coc7investigatorwizardskillspendinterestpoints)|❌|✅|✅|✅|❌|✅| +|[CoC7.InvestigatorWizard.SkillSpendOccupationCountIncorrect](#coc7investigatorwizardskillspendoccupationcountincorrect)|❌|✅|✅|✅|❌|✅| +|[CoC7.InvestigatorWizard.SkillSpendOccupationPoints](#coc7investigatorwizardskillspendoccupationpoints)|❌|✅|✅|✅|❌|✅| +|[CoC7.InvestigatorWizard.SuggestedOccupations](#coc7investigatorwizardsuggestedoccupations)|❌|✅|✅|✅|❌|✅| +|[CoC7.InvestigatorWizard.SuggestedTraits](#coc7investigatorwizardsuggestedtraits)|❌|✅|✅|✅|❌|✅| +|[CoC7.InvestigatorWizard.Title](#coc7investigatorwizardtitle)|❌|✅|✅|✅|❌|✅| +|[CoC7.InvestigatorWizard.TitleAdjustCharacteristics](#coc7investigatorwizardtitleadjustcharacteristics)|❌|✅|✅|✅|❌|✅| +|[CoC7.InvestigatorWizard.TitleArchetypeSkills](#coc7investigatorwizardtitlearchetypeskills)|❌|✅|✅|✅|❌|✅| +|[CoC7.InvestigatorWizard.TitleAttributes](#coc7investigatorwizardtitleattributes)|❌|✅|✅|✅|❌|✅| +|[CoC7.InvestigatorWizard.TitleBackstory](#coc7investigatorwizardtitlebackstory)|❌|✅|✅|✅|❌|✅| +|[CoC7.InvestigatorWizard.TitleCharacteristics](#coc7investigatorwizardtitlecharacteristics)|❌|✅|✅|✅|❌|✅| +|[CoC7.InvestigatorWizard.TitleCreate](#coc7investigatorwizardtitlecreate)|❌|✅|✅|✅|❌|✅| +|[CoC7.InvestigatorWizard.TitleDetails](#coc7investigatorwizardtitledetails)|❌|✅|✅|✅|❌|✅| +|[CoC7.InvestigatorWizard.TitleKeeperConfiguration](#coc7investigatorwizardtitlekeeperconfiguration)|❌|✅|✅|✅|❌|✅| +|[CoC7.InvestigatorWizard.TitleOccupationSkills](#coc7investigatorwizardtitleoccupationskills)|❌|✅|✅|✅|❌|✅| +|[CoC7.InvestigatorWizard.TitlePointsSkills](#coc7investigatorwizardtitlepointsskills)|❌|✅|✅|✅|❌|✅| +|[CoC7.InvestigatorWizard.TitleSelectArchetype](#coc7investigatorwizardtitleselectarchetype)|❌|✅|✅|✅|❌|✅| +|[CoC7.InvestigatorWizard.TitleSelectOccupation](#coc7investigatorwizardtitleselectoccupation)|❌|✅|✅|✅|❌|✅| +|[CoC7.InvestigatorWizard.TitleSelectSetup](#coc7investigatorwizardtitleselectsetup)|❌|✅|✅|✅|❌|✅| +|[CoC7.InvestigatorWizard.UseSetupMethod](#coc7investigatorwizardusesetupmethod)|❌|✅|✅|✅|❌|✅| +|[CoC7.MonetaryCreditRatingMax](#coc7monetarycreditratingmax)|❌|✅|✅|✅|❌|✅| +|[CoC7.MonetaryCreditRatingMin](#coc7monetarycreditratingmin)|❌|✅|✅|✅|❌|✅| +|[CoC7.MonetaryDefaultAverage](#coc7monetarydefaultaverage)|❌|✅|✅|✅|❌|✅| +|[CoC7.MonetaryDefaultPenniless](#coc7monetarydefaultpenniless)|❌|✅|✅|✅|❌|✅| +|[CoC7.MonetaryDefaultPoor](#coc7monetarydefaultpoor)|❌|✅|✅|✅|❌|✅| +|[CoC7.MonetaryDefaultRich](#coc7monetarydefaultrich)|❌|✅|✅|✅|❌|✅| +|[CoC7.MonetaryDefaultSuperRich](#coc7monetarydefaultsuperrich)|❌|✅|✅|✅|❌|✅| +|[CoC7.MonetaryDefaultWealthy](#coc7monetarydefaultwealthy)|❌|✅|✅|✅|❌|✅| +|[CoC7.MonetaryFormatDecimalLeft](#coc7monetaryformatdecimalleft)|❌|✅|✅|✅|❌|✅| +|[CoC7.MonetaryFormatDecimalRight](#coc7monetaryformatdecimalright)|❌|✅|✅|✅|❌|✅| +|[CoC7.MonetaryFormatIntegerLeft](#coc7monetaryformatintegerleft)|❌|✅|✅|✅|❌|✅| +|[CoC7.MonetaryFormatIntegerRight](#coc7monetaryformatintegerright)|❌|✅|✅|✅|❌|✅| +|[CoC7.MonetaryFormatLsd](#coc7monetaryformatlsd)|❌|✅|✅|✅|❌|✅| +|[CoC7.MonetaryFormatRoman](#coc7monetaryformatroman)|❌|✅|✅|✅|❌|✅| +|[CoC7.MonetaryFormatTitle](#coc7monetaryformattitle)|❌|✅|✅|✅|❌|✅| +|[CoC7.MonetaryTitle](#coc7monetarytitle)|❌|✅|✅|✅|❌|✅| +|[CoC7.MonetaryTypeAsses](#coc7monetarytypeasses)|❌|✅|✅|✅|❌|✅| +|[CoC7.MonetaryTypeCreditRating](#coc7monetarytypecreditrating)|❌|✅|✅|✅|❌|✅| +|[CoC7.MonetaryTypeDenarii](#coc7monetarytypedenarii)|❌|✅|✅|✅|❌|✅| +|[CoC7.MonetaryTypeDeniers](#coc7monetarytypedeniers)|❌|✅|✅|✅|❌|✅| +|[CoC7.MonetaryTypeNone](#coc7monetarytypenone)|❌|✅|✅|✅|❌|✅| +|[CoC7.MonetaryTypeOne](#coc7monetarytypeone)|❌|✅|✅|✅|❌|✅| +|[CoC7.MonetaryTypeQuinarii](#coc7monetarytypequinarii)|❌|✅|✅|✅|❌|✅| +|[CoC7.MonetaryTypeSestertii](#coc7monetarytypesestertii)|❌|✅|✅|✅|❌|✅| +|[CoC7.MonetaryTypeSous](#coc7monetarytypesous)|❌|✅|✅|✅|❌|✅| +|[CoC7.MonetaryValueAssets](#coc7monetaryvalueassets)|❌|✅|✅|✅|❌|✅| +|[CoC7.MonetaryValueCash](#coc7monetaryvaluecash)|❌|✅|✅|✅|❌|✅| +|[CoC7.MonetaryValueSpendingLevel](#coc7monetaryvaluespendinglevel)|❌|✅|✅|✅|❌|✅| +|[CoC7.Settings.DropCoCID.Dialog](#coc7settingsdropcociddialog)|❌|✅|✅|✅|✅|✅| +|[CoC7.Settings.DropCoCID.Hint](#coc7settingsdropcocidhint)|❌|✅|✅|✅|✅|✅| +|[CoC7.Settings.DropCoCID.IgnoreCoCID](#coc7settingsdropcocidignorecocid)|❌|✅|✅|✅|✅|✅| +|[CoC7.Settings.DropCoCID.Name](#coc7settingsdropcocidname)|❌|✅|✅|✅|✅|✅| +|[CoC7.Settings.DropCoCID.Prompt](#coc7settingsdropcocidprompt)|❌|✅|✅|✅|✅|✅| +|[CoC7.Settings.DropCoCID.Remember](#coc7settingsdropcocidremember)|❌|✅|✅|✅|✅|✅| +|[CoC7.Settings.DropCoCID.UseCoCID](#coc7settingsdropcocidusecocid)|❌|✅|✅|✅|✅|✅| +|[CoC7.Settings.PulpRules.IgnoreAgePenalties.Hint](#coc7settingspulprulesignoreagepenaltieshint)|❌|✅|✅|✅|✅|✅| +|[CoC7.Settings.PulpRules.IgnoreAgePenalties.Name](#coc7settingspulprulesignoreagepenaltiesname)|❌|✅|✅|✅|✅|✅| +|[CoC7.Settings.WorldEra.Hint](#coc7settingsworlderahint)|❌|✅|✅|✅|✅|✅| +|[CoC7.Settings.WorldEra.Name](#coc7settingsworlderaname)|❌|✅|✅|✅|✅|✅| +|[CoC7.SkillKeepBaseValue](#coc7skillkeepbasevalue)|❌|✅|✅|✅|✅|✅| +|[CoC7.SkillPickNameOnly](#coc7skillpicknameonly)|❌|✅|✅|✅|✅|✅| +|[CoC7.SkillRarityShort](#coc7skillrarityshort)|❌|✅|✅|✅|✅|✅| +|[CoC7.SkillRequiresName](#coc7skillrequiresname)|❌|✅|✅|✅|✅|✅| +|[CoC7.SkillSpecializationIsUnique](#coc7skillspecializationisunique)|❌|✅|✅|✅|❌|✅| ##### CoC7.CoCIDBatch.summary ``` "CoC7.CoCIDBatch.summary": "The CoC7 System has introduced a System ID (CoC ID). This allows the system to identify FoundryVTT documents for example skills. This page will allow you to set the id for existing {type} documents. The System ID should use the English translation of the name to support localization across all languages.",``` ##### CoC7.CoCIDBatch.title @@ -208,16 +192,16 @@ The following translations have more than 153 untranslated strings **cn**, **cs* ``` "CoC7.CoCIDFlag.title": "Edit System ID (CoC ID)",``` ##### CoC7.CustomSpecialisationLabel ``` "CoC7.CustomSpecialisationLabel": "Custom label - {specialisation}",``` -##### CoC7.Damage -``` "CoC7.Damage": "Damage",``` ##### CoC7.EraDarkAgesPulp ``` "CoC7.EraDarkAgesPulp": "Dark Ages - Pulp",``` ##### CoC7.EraDownDarkerTrailsPulp ``` "CoC7.EraDownDarkerTrailsPulp": "Down Darker Trails - Pulp",``` ##### CoC7.EraModernPulp ``` "CoC7.EraModernPulp": "Modern - Pulp",``` -##### CoC7.FileUploadError -``` "CoC7.FileUploadError": "Unable to write image, file upload error",``` +##### CoC7.EraRegency +``` "CoC7.EraRegency": "Regency Cthulhu - Standard",``` +##### CoC7.EraRegencyPulp +``` "CoC7.EraRegencyPulp": "Regency Cthulhu - Pulp",``` ##### CoC7.InvestigatorWizard.AddBonusPointsToSkills ``` "CoC7.InvestigatorWizard.AddBonusPointsToSkills": "Add {bonusPoints} bonus skill points divided among any of the following skills: {skills}",``` ##### CoC7.InvestigatorWizard.AgeRange @@ -414,18 +398,6 @@ The following translations have more than 153 untranslated strings **cn**, **cs* ``` "CoC7.MonetaryValueCash": "Cash",``` ##### CoC7.MonetaryValueSpendingLevel ``` "CoC7.MonetaryValueSpendingLevel": "Spending",``` -##### CoC7.RemoveParticipant -``` "CoC7.RemoveParticipant": "Remove participant",``` -##### CoC7.RemoveParticipantHint -``` "CoC7.RemoveParticipantHint": "Participant will be completely removed from the chase",``` -##### CoC7.RollDifficultyCriticalTitle -``` "CoC7.RollDifficultyCriticalTitle": "Critical difficulty",``` -##### CoC7.RollDifficultyExtremeTitle -``` "CoC7.RollDifficultyExtremeTitle": "Extreme difficulty",``` -##### CoC7.RollDifficultyHardTitle -``` "CoC7.RollDifficultyHardTitle": "Hard difficulty",``` -##### CoC7.RollDifficultyRegularTitle -``` "CoC7.RollDifficultyRegularTitle": "Regular difficulty",``` ##### CoC7.Settings.DropCoCID.Dialog ``` "CoC7.Settings.DropCoCID.Dialog": "Use the CoC ID for dropped items where possible? This allows the system to select the correct item for your world era.",``` ##### CoC7.Settings.DropCoCID.Hint @@ -458,13 +430,3 @@ The following translations have more than 153 untranslated strings **cn**, **cs* ``` "CoC7.SkillRequiresName": "Requires Name",``` ##### CoC7.SkillSpecializationIsUnique ``` "CoC7.SkillSpecializationIsUnique": "Unique Specialization",``` -##### CoC7.TextFieldInvalidJSON -``` "CoC7.TextFieldInvalidJSON": "Unable to parse the JSON, please try again",``` -##### CoC7.UnarmedWeaponName -``` "CoC7.UnarmedWeaponName": "Unarmed",``` -##### CoC7.combatCard.automaticSuccess -``` "CoC7.combatCard.automaticSuccess": "Automatic Success",``` -##### CoC7.rangeCombatCard.SurprisedTargetTitle -``` "CoC7.rangeCombatCard.SurprisedTargetTitle": "1 bonus die for surprised target",``` -##### SETTINGS.DefaultDifficulty -``` "SETTINGS.DefaultDifficulty": "Default check difficulty",``` From a73707d92884c86a616994038c34bc6c0c67ec15 Mon Sep 17 00:00:00 2001 From: snap01 Date: Sun, 23 Jul 2023 08:40:02 +0000 Subject: [PATCH 7/8] [create-pull-request] automated change --- .github/ABANDONED.md | 197 ++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 185 insertions(+), 12 deletions(-) diff --git a/.github/ABANDONED.md b/.github/ABANDONED.md index b0b4d3ef..8f077346 100644 --- a/.github/ABANDONED.md +++ b/.github/ABANDONED.md @@ -2,21 +2,23 @@ Thank you for being interested in making Call of Cthulhu 7th Edition for Foundry VTT better! Below is a list of translations keys on existing files that still need translated, based on `en.json`. -[cn.json (371 untranslated strings)](#cnjson) +[cn.json (373 untranslated strings)](#cnjson) -[cs.json (556 untranslated strings)](#csjson) +[cs.json (558 untranslated strings)](#csjson) -[es.json (353 untranslated strings)](#esjson) +[es.json (355 untranslated strings)](#esjson) -[ja.json (192 untranslated strings)](#jajson) +[ja.json (194 untranslated strings)](#jajson) -[ru.json (1218 untranslated strings)](#rujson) +[ko.json (155 untranslated strings)](#kojson) -[sv.json (339 untranslated strings)](#svjson) +[ru.json (1220 untranslated strings)](#rujson) + +[sv.json (341 untranslated strings)](#svjson) ## cn.json -371 untranslated strings +373 untranslated strings ``` "CoC7.ActorIsTokenHint": "Actor is a token", "CoC7.ActorDataLinked": "Actor data are linked", @@ -56,6 +58,8 @@ Thank you for being interested in making Call of Cthulhu 7th Edition for Foundry "CoC7.EraDarkAgesPulp": "Dark Ages - Pulp", "CoC7.EraDownDarkerTrailsPulp": "Down Darker Trails - Pulp", "CoC7.EraModernPulp": "Modern - Pulp", +"CoC7.EraRegency": "Regency Cthulhu - Standard", +"CoC7.EraRegencyPulp": "Regency Cthulhu - Pulp", "CoC7.SkillXpGainDisabled": "XP Gain disabled.", "CoC7.SkillRarityShort": "[UC]", "CoC7.SkillRequiresName": "Requires Name", @@ -391,7 +395,7 @@ Thank you for being interested in making Call of Cthulhu 7th Edition for Foundry "CoC7.CoCIDBatch.summary": "The CoC7 System has introduced a System ID (CoC ID). This allows the system to identify FoundryVTT documents for example skills. This page will allow you to set the id for existing {type} documents. The System ID should use the English translation of the name to support localization across all languages." ``` ## cs.json -556 untranslated strings +558 untranslated strings ``` "CoC7.Entities.Character": "Character", "CoC7.Entities.Container": "Container", @@ -468,6 +472,8 @@ Thank you for being interested in making Call of Cthulhu 7th Edition for Foundry "CoC7.EraDarkAgesPulp": "Dark Ages - Pulp", "CoC7.EraDownDarkerTrailsPulp": "Down Darker Trails - Pulp", "CoC7.EraModernPulp": "Modern - Pulp", +"CoC7.EraRegency": "Regency Cthulhu - Standard", +"CoC7.EraRegencyPulp": "Regency Cthulhu - Pulp", "CoC7.EraAvailability": "Availability", "CoC7.SkillXpGainDisabled": "XP Gain disabled.", "CoC7.SkillRarityShort": "[UC]", @@ -951,7 +957,7 @@ Thank you for being interested in making Call of Cthulhu 7th Edition for Foundry "CoC7.CoCIDBatch.summary": "The CoC7 System has introduced a System ID (CoC ID). This allows the system to identify FoundryVTT documents for example skills. This page will allow you to set the id for existing {type} documents. The System ID should use the English translation of the name to support localization across all languages." ``` ## es.json -353 untranslated strings +355 untranslated strings ``` "CoC7.ActorIsTokenHint": "Actor is a token", "CoC7.ActorDataLinked": "Actor data are linked", @@ -991,6 +997,8 @@ Thank you for being interested in making Call of Cthulhu 7th Edition for Foundry "CoC7.EraDarkAgesPulp": "Dark Ages - Pulp", "CoC7.EraDownDarkerTrailsPulp": "Down Darker Trails - Pulp", "CoC7.EraModernPulp": "Modern - Pulp", +"CoC7.EraRegency": "Regency Cthulhu - Standard", +"CoC7.EraRegencyPulp": "Regency Cthulhu - Pulp", "CoC7.SkillXpGainDisabled": "XP Gain disabled.", "CoC7.SkillRarityShort": "[UC]", "CoC7.SkillRequiresName": "Requires Name", @@ -1308,7 +1316,7 @@ Thank you for being interested in making Call of Cthulhu 7th Edition for Foundry "CoC7.CoCIDBatch.summary": "The CoC7 System has introduced a System ID (CoC ID). This allows the system to identify FoundryVTT documents for example skills. This page will allow you to set the id for existing {type} documents. The System ID should use the English translation of the name to support localization across all languages." ``` ## ja.json -192 untranslated strings +194 untranslated strings ``` "CoC7.CustomSpecialisationLabel": "Custom label - {specialisation}", "CoC7.RollDifficultyRegularTitle": "Regular difficulty", @@ -1318,6 +1326,8 @@ Thank you for being interested in making Call of Cthulhu 7th Edition for Foundry "CoC7.EraDarkAgesPulp": "Dark Ages - Pulp", "CoC7.EraDownDarkerTrailsPulp": "Down Darker Trails - Pulp", "CoC7.EraModernPulp": "Modern - Pulp", +"CoC7.EraRegency": "Regency Cthulhu - Standard", +"CoC7.EraRegencyPulp": "Regency Cthulhu - Pulp", "CoC7.SkillRarityShort": "[UC]", "CoC7.SkillRequiresName": "Requires Name", "CoC7.SkillKeepBaseValue": "Keep Base Value", @@ -1503,8 +1513,167 @@ Thank you for being interested in making Call of Cthulhu 7th Edition for Foundry "CoC7.CoCIDBatch.title": "Batch set System ID (CoC ID)", "CoC7.CoCIDBatch.summary": "The CoC7 System has introduced a System ID (CoC ID). This allows the system to identify FoundryVTT documents for example skills. This page will allow you to set the id for existing {type} documents. The System ID should use the English translation of the name to support localization across all languages." ``` +## ko.json +155 untranslated strings +``` +"CoC7.CustomSpecialisationLabel": "Custom label - {specialisation}", +"CoC7.RollDifficultyRegularTitle": "Regular difficulty", +"CoC7.RollDifficultyHardTitle": "Hard difficulty", +"CoC7.RollDifficultyExtremeTitle": "Extreme difficulty", +"CoC7.RollDifficultyCriticalTitle": "Critical difficulty", +"CoC7.combatCard.automaticSuccess": "Automatic Success", +"CoC7.Damage": "Damage", +"CoC7.rangeCombatCard.SurprisedTargetTitle": "1 bonus die for surprised target", +"CoC7.EraDarkAgesPulp": "Dark Ages - Pulp", +"CoC7.EraDownDarkerTrailsPulp": "Down Darker Trails - Pulp", +"CoC7.EraModernPulp": "Modern - Pulp", +"CoC7.EraRegency": "Regency Cthulhu - Standard", +"CoC7.EraRegencyPulp": "Regency Cthulhu - Pulp", +"CoC7.SkillRarityShort": "[UC]", +"CoC7.SkillRequiresName": "Requires Name", +"CoC7.SkillKeepBaseValue": "Keep Base Value", +"CoC7.SkillPickNameOnly": "Select Specialization", +"CoC7.SkillSpecializationIsUnique": "Unique Specialization", +"CoC7.UnarmedWeaponName": "Unarmed", +"CoC7.MonetaryTitle": "Cash and Assets", +"CoC7.MonetaryTypeNone": "None", +"CoC7.MonetaryTypeDeniers": "Deniers / Pennies", +"CoC7.MonetaryTypeSous": "Sous / Shillings", +"CoC7.MonetaryTypeOne": "1 x", +"CoC7.MonetaryTypeCreditRating": "CR x", +"CoC7.MonetaryTypeAsses": "Asses", +"CoC7.MonetaryTypeSestertii": "Sestertii", +"CoC7.MonetaryTypeQuinarii": "Quinarii", +"CoC7.MonetaryTypeDenarii": "Denarii", +"CoC7.MonetaryCreditRatingMin": "Min", +"CoC7.MonetaryCreditRatingMax": "Max", +"CoC7.MonetaryValueCash": "Cash", +"CoC7.MonetaryValueAssets": "Assets", +"CoC7.MonetaryValueSpendingLevel": "Spending", +"CoC7.MonetaryFormatTitle": "Money Format :", +"CoC7.MonetaryFormatDecimalLeft": "Decimal (?0.00)", +"CoC7.MonetaryFormatDecimalRight": "Decimal (0.00 ?)", +"CoC7.MonetaryFormatIntegerLeft": "Integer (?0)", +"CoC7.MonetaryFormatIntegerRight": "Integer (0 ?)", +"CoC7.MonetaryFormatLsd": "£sd", +"CoC7.MonetaryFormatRoman": "Roman", +"CoC7.MonetaryDefaultPenniless": "Penniless", +"CoC7.MonetaryDefaultPoor": "Poor", +"CoC7.MonetaryDefaultAverage": "Average", +"CoC7.MonetaryDefaultWealthy": "Wealthy", +"CoC7.MonetaryDefaultRich": "Rich", +"CoC7.MonetaryDefaultSuperRich": "Super Rich", +"CoC7.RemoveParticipant": "Remove participant", +"CoC7.RemoveParticipantHint": "Participant will be completely removed from the chase", +"CoC7.TextFieldInvalidJSON": "Unable to parse the JSON, please try again", +"CoC7.ActorImporterUploadError": "Import stopped, unable to write image", +"CoC7.FileUploadError": "Unable to write image, file upload error", +"CoC7.Settings.PulpRules.IgnoreAgePenalties.Name": "Ignore Age Penalties", +"CoC7.Settings.PulpRules.IgnoreAgePenalties.Hint": "Do not alter movement rate based on age. When using the investigator wizard improvements and characteristic adjustments are not made", +"CoC7.Settings.WorldEra.Name": "Era for the world", +"CoC7.Settings.WorldEra.Hint": "Skills can vary slightly between eras, please select the era for this world so system searches for skills find the correct ones.", +"CoC7.Settings.DropCoCID.Name": "Use CoC ID on item drops", +"CoC7.Settings.DropCoCID.Hint": "When dropping items with a CoC ID prompt to store the CoC ID instead of the item", +"CoC7.Settings.DropCoCID.Dialog": "Use the CoC ID for dropped items where possible? This allows the system to select the correct item for your world era.", +"CoC7.Settings.DropCoCID.Remember": "Remember this selection, you can change this under settings", +"CoC7.Settings.DropCoCID.Prompt": "Prompt each time", +"CoC7.Settings.DropCoCID.UseCoCID": "Use CoC ID Where Possible", +"CoC7.Settings.DropCoCID.IgnoreCoCID": "Do Not Use CoC ID", +"SETTINGS.DefaultDifficulty": "Default check difficulty", +"CoC7.InvestigatorWizard.Title": "Investigator Creation Wizard", +"CoC7.InvestigatorWizard.TitleKeeperConfiguration": "Keeper Configuration", +"CoC7.InvestigatorWizard.TitleSelectSetup": "Investigator Setup", +"CoC7.InvestigatorWizard.TitleSelectArchetype": "Archetype Selection", +"CoC7.InvestigatorWizard.TitleSelectOccupation": "Occupation Selection", +"CoC7.InvestigatorWizard.TitleCharacteristics": "Characteristics", +"CoC7.InvestigatorWizard.TitleAdjustCharacteristics": "Adjust Characteristics", +"CoC7.InvestigatorWizard.TitleAttributes": "Attributes", +"CoC7.InvestigatorWizard.TitleDetails": "Investigator Details", +"CoC7.InvestigatorWizard.TitleOccupationSkills": "Occupation Skills", +"CoC7.InvestigatorWizard.TitleArchetypeSkills": "Archetype Skills", +"CoC7.InvestigatorWizard.TitlePointsSkills": "Spend Skill Points", +"CoC7.InvestigatorWizard.TitleBackstory": "Investigator Backstory", +"CoC7.InvestigatorWizard.TitleCreate": "Create Investigator", +"CoC7.InvestigatorWizard.BackStep": "Back", +"CoC7.InvestigatorWizard.NextStep": "Next", +"CoC7.InvestigatorWizard.CreateStep": "Create", +"CoC7.InvestigatorWizard.Introduction": "The Investigator Creation Wizard is a step-by-step process for creating a brand-new investigator.", +"CoC7.InvestigatorWizard.IntroductionKeeper": "Your world is set to the "{era}" era this can be changed under settings or on the next page.", +"CoC7.InvestigatorWizard.ChangingEraDelay": "Changing era please wait", +"CoC7.InvestigatorWizard.PlayerEnabled": "Allow players without actor creation permission to create investigators", +"CoC7.InvestigatorWizard.PlayerQuantity": "How many investigators can one player have ownership of?", +"CoC7.InvestigatorWizard.OtherPlayerOwnership": "Default permission level for players that did not create this investigator", +"CoC7.InvestigatorWizard.AllowRerolls": "Allow characteristics to be rerolled", +"CoC7.InvestigatorWizard.UseSetupMethod": "Use method from setup item", +"CoC7.InvestigatorWizard.EnforcePointBuy": "Enforce point buy", +"CoC7.InvestigatorWizard.QuickFireValues": "Quick fire characteristics values", +"CoC7.InvestigatorWizard.Setups": "Character sheets", +"CoC7.InvestigatorWizard.Characteristics": "Characteristic values", +"CoC7.InvestigatorWizard.SetupCounts": "You currently have {count} setup options. It is recommended you set a single setup for all your players to set the default skills on your character sheet. The system comes with a default setup with a CoC ID set. You can add more setups with valid CoC ID values using the header on then setup item sheet. Compendiums with these values set will automatically be added to the available list.", +"CoC7.InvestigatorWizard.SetupSelect": "Select your investigator setup", +"CoC7.InvestigatorWizard.SetupAny": "No default", +"CoC7.InvestigatorWizard.Occupations": "Occupations", +"CoC7.InvestigatorWizard.OccupationCounts": "You currently have {count} occupations. The system comes with a default occupation with a CoC ID set. You can add more occupations with valid CoC ID values using the header on then occupation item sheet. Compendiums with these values set will automatically be added to the available list.", +"CoC7.InvestigatorWizard.Archetypes": "Pulp Archetypes", +"CoC7.InvestigatorWizard.ArchetypeCounts": "You currently have {count} archetypes. The system comes with a default archetypes with a CoC ID set. You can add more archetypes with valid CoC ID values using the header on then archetypes item sheet. Compendiums with these values set will automatically be added to the available list.", +"CoC7.InvestigatorWizard.SetupPage": "Selecting your era will set the default skills on your character sheet.", +"CoC7.InvestigatorWizard.ArchetypePage": "Selecting your character archetype will set additional default skills on your character sheet.", +"CoC7.InvestigatorWizard.ArchetypeSelect": "Select your archetype", +"CoC7.InvestigatorWizard.CoreCharacteristicName": "Core characteristic: {coreCharacteristic}.", +"CoC7.InvestigatorWizard.AddBonusPointsToSkills": "Add {bonusPoints} bonus skill points divided among any of the following skills: {skills}", +"CoC7.InvestigatorWizard.SuggestedOccupations": "Suggested Occupations: {suggested}", +"CoC7.InvestigatorWizard.SuggestedTraits": "Suggested Traits: {suggested}", +"CoC7.InvestigatorWizard.CoreCharacteristicSelect": "Archetype core characteristic", +"CoC7.InvestigatorWizard.CharacteristicDragInformation": "Drag your characteristics", +"CoC7.InvestigatorWizard.AgeRange": "Age (15-89):", +"CoC7.InvestigatorWizard.MakeEDUImprovementCheck": "Make an improvement check for EDU", +"CoC7.InvestigatorWizard.MakeEDUImprovementChecks": "Make {total} improvement checks for EDU", +"CoC7.InvestigatorWizard.DeductPointsFromCharacteristics": "Deduct {total} points among {from}", +"CoC7.InvestigatorWizard.ReducePointsFromCharacteristic": "Reduce {from} by {total}", +"CoC7.InvestigatorWizard.RollTwiceForLuck": "Roll a second time for luck", +"CoC7.InvestigatorWizard.OccupationPage": "Occupations give you a set of bonus points to split between eight skills and credit rating", +"CoC7.InvestigatorWizard.OccupationSelect": "Select your occupation", +"CoC7.InvestigatorWizard.OccupationCreditRating": "Credit Rating", +"CoC7.InvestigatorWizard.OccupationSkillPoints": "Occupation Skill Points", +"CoC7.InvestigatorWizard.OccupationSkills": "Occupation Skills", +"CoC7.InvestigatorWizard.OccupationPickThisMany": "{count} of the following skill(s)", +"CoC7.InvestigatorWizard.OccupationPersonalThisMany": "{count} personal skill(s)", +"CoC7.InvestigatorWizard.CharacterAvatarImage": "Avatar Image", +"CoC7.InvestigatorWizard.CharacterTokenImage": "Token Image", +"CoC7.InvestigatorWizard.OccupationDefaultSkills": "All {count} of the following skill(s)", +"CoC7.InvestigatorWizard.SkillSpendOccupationCountIncorrect": "You have selected {count} of {max} occupation skills, check with your Keeper before removing standard occupation skills.", +"CoC7.InvestigatorWizard.ArchetypeDefaultSkills": "All {count} of the following skill(s)", +"CoC7.InvestigatorWizard.ArchetypeOptionalSkills": "Check with your keeper before selecting the following skills", +"CoC7.InvestigatorWizard.SkillSpendArchetypeCountIncorrect": "You have selected {count} of {max} archetype skills, check with your Keeper before removing standard archetype skills.", +"CoC7.InvestigatorWizard.SkillSpendOccupationPoints": "Occupation skill points {count} of {total} remaining {remaining}", +"CoC7.InvestigatorWizard.SkillSpendInterestPoints": "Personal interest points {count} of {total} remaining {remaining}", +"CoC7.InvestigatorWizard.SkillSpendArchetypePoints": "Archetype points {count} of {total} remaining {remaining}", +"CoC7.InvestigatorWizard.CreateInstructions": "Click create to create your character. You Keeper needs to be online for the character to be created.", +"CoC7.InvestigatorWizard.CreatingInvestigator": "Please wait while the keeper creates your investigator.", +"CoC7.CoCIDFlag.id": "ID", +"CoC7.CoCIDFlag.title": "Edit System ID (CoC ID)", +"CoC7.CoCIDFlag.summary": "Set a group identifier that can be used to find the the most up to date version of this {type}. The System ID should use the English translation of the {type} to support localization across all languages.", +"CoC7.CoCIDFlag.key": "System ID (CoC ID)", +"CoC7.CoCIDFlag.new": "- Custom System ID -", +"CoC7.CoCIDFlag.guess": "Create System ID (CoC ID) based on current document.", +"CoC7.CoCIDFlag.priority": "System ID Priority", +"CoC7.CoCIDFlag.others": "Other documents with this CoC ID and language (excluding documents in other actors and items)", +"CoC7.CoCIDFlag.documents-in-world": "{count} documents in the world", +"CoC7.CoCIDFlag.documents-in-compendiums": "{count} documents in compendiums", +"CoC7.CoCIDFlag.foundry-id": "Foundry ID", +"CoC7.CoCIDFlag.foundry-uuid": "Foundry UUID", +"CoC7.CoCIDFlag.get-this-document": "Get this document", +"CoC7.CoCIDFlag.get-document-like-this": "Get document like this", +"CoC7.CoCIDFlag.error.duplicate": "Warning: Multiple System IDs with same priority!", +"CoC7.CoCIDFlag.error.unknown-era": "Unknown Era "{era}"", +"CoC7.CoCIDFlag.error.incorrect.type": "Tried to convert CoC ID with non existing document type. See console log.", +"CoC7.CoCIDFlag.error.document-not-found": "Document not found in world or Compendia matching the CoC ID "{cocid}", language "{lang}", and era "{era}". Please check your Era for the world setting.", +"CoC7.CoCIDFlag.error.documents-not-found": "Documents were not found in world or Compendia matching the CoC IDs ({cocids}), language "{lang}", and era "{era}". Please check your Era for the world setting.", +"CoC7.CoCIDBatch.title": "Batch set System ID (CoC ID)", +"CoC7.CoCIDBatch.summary": "The CoC7 System has introduced a System ID (CoC ID). This allows the system to identify FoundryVTT documents for example skills. This page will allow you to set the id for existing {type} documents. The System ID should use the English translation of the name to support localization across all languages." +``` ## ru.json -1218 untranslated strings +1220 untranslated strings ``` "CoC7.title": "Call of Cthulhu 7h Edition", "CoC7.Entities.Character": "Character", @@ -1860,6 +2029,8 @@ Thank you for being interested in making Call of Cthulhu 7th Edition for Foundry "CoC7.EraPulp": "Pulp Cthulhu", "CoC7.EraModern": "Modern - Standard", "CoC7.EraModernPulp": "Modern - Pulp", +"CoC7.EraRegency": "Regency Cthulhu - Standard", +"CoC7.EraRegencyPulp": "Regency Cthulhu - Pulp", "CoC7.Eras": "Cthulhu Flavors", "CoC7.EraAvailability": "Availability", "CoC7.SkillNoAdjustments": "No adjustment", @@ -2726,7 +2897,7 @@ Thank you for being interested in making Call of Cthulhu 7th Edition for Foundry "CoC7.CoCIDBatch.summary": "The CoC7 System has introduced a System ID (CoC ID). This allows the system to identify FoundryVTT documents for example skills. This page will allow you to set the id for existing {type} documents. The System ID should use the English translation of the name to support localization across all languages." ``` ## sv.json -339 untranslated strings +341 untranslated strings ``` "CoC7.ActorIsTokenHint": "Actor is a token", "CoC7.ActorDataLinked": "Actor data are linked", @@ -2759,6 +2930,8 @@ Thank you for being interested in making Call of Cthulhu 7th Edition for Foundry "CoC7.EraDarkAgesPulp": "Dark Ages - Pulp", "CoC7.EraDownDarkerTrailsPulp": "Down Darker Trails - Pulp", "CoC7.EraModernPulp": "Modern - Pulp", +"CoC7.EraRegency": "Regency Cthulhu - Standard", +"CoC7.EraRegencyPulp": "Regency Cthulhu - Pulp", "CoC7.SkillXpGainDisabled": "XP Gain disabled.", "CoC7.SkillRarityShort": "[UC]", "CoC7.SkillRequiresName": "Requires Name", From 1498f79b35ec53e4e02d3be851d399ab93180c56 Mon Sep 17 00:00:00 2001 From: snap01 <43982555+snap01@users.noreply.github.com> Date: Sun, 23 Jul 2023 09:43:31 +0100 Subject: [PATCH 8/8] Prepare for 0.10.5 --- .github/CHANGELOG.md | 5 +++++ system.json | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/CHANGELOG.md b/.github/CHANGELOG.md index 1fa68935..5b1091c9 100644 --- a/.github/CHANGELOG.md +++ b/.github/CHANGELOG.md @@ -9,6 +9,11 @@ Happy gaming ! When not specified, all changes were made by @castanhocorreia, @HavlockV, and @snap01. +## Version 0.10.5 + +When not specified, all changes were made by @castanhocorreia, @HavlockV, and @snap01. + +- Add Regency Cthulhu era flags - Fix indefinite insanity marker not clearing properly if set automatically #1375 - When editing npc/creature skills edit the %value directly - Update to French localization, thanks to @vonv #1373 diff --git a/system.json b/system.json index 42a83828..ab69995c 100644 --- a/system.json +++ b/system.json @@ -2,7 +2,7 @@ "id": "CoC7", "title": "Call of Cthulhu 7th Edition", "description": "An implementation of the Call of Cthulhu 7th Edition game system for Foundry Virtual Tabletop.", - "version": "0.10.4", + "version": "0.10.5", "authors": [ { "name": "Miskatonic Investigative Society"