#4 : Gestion humanoide

This commit is contained in:
2020-11-04 16:29:10 +01:00
parent 34156295ea
commit ed16553ace
12 changed files with 423 additions and 10 deletions

View File

@ -36,7 +36,7 @@ export class RdDActor extends Actor {
}
if (data.type == "humanoide")
{
compendiumName = "foundryvtt-reve-de-dragon.competences-humanoide";
compendiumName = "foundryvtt-reve-de-dragon.competences-humanoides";
}
if (data.type == "creature")
{
@ -70,6 +70,7 @@ export class RdDActor extends Actor {
// things organized.
if (actorData.type === 'personnage') this._prepareCharacterData(actorData);
if (actorData.type === 'creature') this.computeEtatGeneral(actorData);
if (actorData.type === 'humanoide') this.computeEtatGeneral(actorData);
}
/* -------------------------------------------- */