Add secondary stats + char rolls

This commit is contained in:
2024-12-18 18:45:47 +01:00
parent 4d3c15a2a8
commit 93901d5f1e
12 changed files with 150 additions and 34 deletions

View File

@ -34,7 +34,7 @@ export default class CthulhuEternalSkill extends foundry.abstract.TypeDataModel
return `${this.base} + ${ String(this.bonus)}`;
}
// Split the base value per stat : WIS,DEX,STR,INT,CHA (example)
// Split the base value per stat :
let base = this.base.toLowerCase();
let char = actor.system.characteristics[base];
if (!char) {