From 9b31f25640c8a1e2a5cd55b7235a14ea0244a480 Mon Sep 17 00:00:00 2001 From: Vincent Vandemeulebrouck Date: Mon, 25 Nov 2024 22:16:52 +0100 Subject: [PATCH] Fix doublon isActionPhysique --- module/grammar.js | 2 +- module/rdd-carac.js | 20 +++++++------------- 2 files changed, 8 insertions(+), 14 deletions(-) diff --git a/module/grammar.js b/module/grammar.js index 478bbae1..b80edf37 100644 --- a/module/grammar.js +++ b/module/grammar.js @@ -24,7 +24,7 @@ export class Grammar { } static includesLowerCaseNoAccent(value, content) { - return Grammar.toLowerCaseNoAccent(value).includes(Grammar.toLowerCaseNoAccent(content)); + return Grammar.toLowerCaseNoAccent(value)?.includes(Grammar.toLowerCaseNoAccent(content)); } /* -------------------------------------------- */ diff --git a/module/rdd-carac.js b/module/rdd-carac.js index 8668d9f0..a2f42ce6 100644 --- a/module/rdd-carac.js +++ b/module/rdd-carac.js @@ -53,9 +53,14 @@ export class RdDCarac { return selectedCarac?.label?.toLowerCase()?.match(/r(e|ê)ve(( |-)actuel)?/); } + /** + * L’appel à la chance n’est possible que pour recommencer les jets d’actions physiques : + * tous les jets de combat, de FORCE, d’AGILITÉ, de DEXTÉRITÉ, de Dérobée, d’APPARENCE, + * ainsi que de Perception active et volontaire. + */ static isActionPhysique(selectedCarac) { - return !selectedCarac || - selectedCarac?.label.match(/(Apparence|Force|Agilité|Dextérité|Vue|Ouïe|Odorat-Goût|Empathie|Dérobée|Mêlée|Tir|Lancer)/); + return Grammar.toLowerCaseNoAccent(selectedCarac?.label) + ?.match(/(apparence|force|agilite|dexterite|vue|ouie|gout|odorat|empathie|melee|tir|lancer|derobee)/) != null } static getCaracDerivee(value) { @@ -90,15 +95,4 @@ export class RdDCarac { static getCaracXp(targetValue) { return RdDCarac.getCaracDerivee(targetValue)?.xp ?? 200; } - - - /** - * L’appel à la chance n’est possible que pour recommencer les jets d’actions physiques : - * tous les jets de combat, de FORCE, d’AGILITÉ, de DEXTÉRITÉ, de Dérobée, d’APPARENCE, - * ainsi que de Perception active et volontaire. - */ - static isActionPhysique(selectedCarac) { - return Grammar.toLowerCaseNoAccent(selectedCarac?.label)?.match(/(apparence|force|agilite|dexterite|vue|ouie|odorat|empathie|melee|tir|lancer|derobee)/); - } - }