Messages rêve de Dragon #363

Merged
vincent.vandeme merged 1 commits from messages-reve into v1.3 2021-02-07 09:03:31 +01:00
Showing only changes of commit 4d775c97f6 - Show all commits

View File

@ -1,3 +1,5 @@
import { Grammar } from "./grammar.js";
export class RdDCarac {
static isAgiliteOuDerivee(selectedCarac) {
@ -25,6 +27,6 @@ export class RdDCarac {
* ainsi que de Perception active et volontaire.
*/
static isActionPhysique(selectedCarac) {
return selectedCarac?.label.match(/(Apparence|Force|Agilité|Dextérité|Vue|Ouïe|Odorat-Goût|Empathie|Mêlée|Tir|Lancer|Dérobée)/);
return Grammar.toLowerCaseNoAccent(selectedCarac?.label).match(/(apparence|force|agilite|dexterite|vue|ouie|odorat|empathie|melee|tir|lancer|derobee)/);
}
}