Ajout "kg" au poids

This commit is contained in:
Vincent Vandemeulebrouck 2024-12-06 22:58:37 +01:00
parent 5bf1ecaea3
commit d5686b81ed

View File

@ -322,7 +322,7 @@ export class RdDStatBlockParser {
actorData.taille = taille.value;
}
// Get weight
const poids = XRegExp.exec(statString, XRegExp("(?<value>\\d+) kg", 'giu'));
const poids = XRegExp.exec(statString, XRegExp("(?<value>\\d+ kg)", 'giu'));
if (poids?.value) {
actorData.poids = poids.value;
}
@ -387,7 +387,7 @@ export class RdDStatBlockParser {
case "personnage":
// Check if ',né le' is present
let namePersonnage = "Importé"
if ( statString.includes(", né") ) {
if (statString.includes(", né")) {
// Name is all string before first comma ','
namePersonnage = XRegExp.exec(statString, XRegExp("(?<value>[\\p{Letter}\\s\\d]+),", 'giu'));
} else {