diff --git a/module/apps/rdd-import-stats.js b/module/apps/rdd-import-stats.js index c501d06c..f97eee01 100644 --- a/module/apps/rdd-import-stats.js +++ b/module/apps/rdd-import-stats.js @@ -452,7 +452,7 @@ export class RdDStatBlockParser { } static parseCreature(statString, actorData) { - let protection = XRegExp.exec(statString, XRegExp("protection\\s+(?[\\-]?\\d+)", 'giu')); + let protection = XRegExp.exec(statString, XRegExp("protection(\\s+naturelle)?\\s+(?[\\-]?\\d+)", 'giu')); if (protection?.value) { actorData.attributs.protection.value = Number(protection.value); }