diff --git a/system/lang/en-en.json b/system/lang/en-en.json index 97951f8..c6b7c57 100644 --- a/system/lang/en-en.json +++ b/system/lang/en-en.json @@ -376,6 +376,7 @@ "d10r1_choice": "1st D10 Effect", "d10r2": "D10 Result (2/2)", "d10r2_choice": "2nd D10 Effect", + "d10r2_drop_items": "Or a technique, a advantage, a object...", "q19": "19. What is your character’s personal name ? (p. 95)" }, "part7": { diff --git a/system/lang/es-es.json b/system/lang/es-es.json index 98272ae..785dd3a 100644 --- a/system/lang/es-es.json +++ b/system/lang/es-es.json @@ -376,6 +376,7 @@ "d10r1_choice": "1st D10 Effect", "d10r2": "D10 Result (2/2)", "d10r2_choice": "2nd D10 Effect", + "d10r2_drop_items": "Or a technique, a advantage, a object...", "q19": "19. What is your character’s personal name ? (p. 95)" }, "part7": { diff --git a/system/lang/fr-fr.json b/system/lang/fr-fr.json index c84e5a0..79f3590 100644 --- a/system/lang/fr-fr.json +++ b/system/lang/fr-fr.json @@ -376,6 +376,7 @@ "d10r1_choice": "Effet du 1er D10", "d10r2": "Résultat du 2eme D10", "d10r2_choice": "Effet du 2ème D10", + "d10r2_drop_items": "Ou une technique, un avantage, un objet...", "q19": "19. Quel est le prénom de votre personnage ? (p. 95)" }, "part7": { diff --git a/system/scripts/actors/twenty-questions-dialog.js b/system/scripts/actors/twenty-questions-dialog.js index 46b2e7c..3e943b4 100644 --- a/system/scripts/actors/twenty-questions-dialog.js +++ b/system/scripts/actors/twenty-questions-dialog.js @@ -239,14 +239,6 @@ export class TwentyQuestionsDialog extends FormApplication { // School Ability if (stepKey === "step3.school_ability") { if (item.data.data.technique_type !== "school_ability") { - console.warn("This technique is not a school ability"); - return; - } - if ( - Array.from(this.actor.items).some( - (e) => e.type === "technique" && e.data.data.technique_type === "school_ability" - ) - ) { console.warn("This technique is not a school ability", item.data.data.technique_type); return; } diff --git a/system/templates/actors/character/narrative.html b/system/templates/actors/character/narrative.html index f8b7a88..5b9e31b 100644 --- a/system/templates/actors/character/narrative.html +++ b/system/templates/actors/character/narrative.html @@ -2,13 +2,13 @@