foundryvtt-wh4-lang-fr-fr/scripts/IzoOmDywGLqLNljN.js

19 lines
648 B
JavaScript
Raw Permalink Normal View History

2024-10-08 20:52:09 +02:00
let skill = `Language (Magick)`
2024-06-06 21:09:27 +02:00
let currentCareer = this.actor.system.currentCareer;
let existingSkill = this.actor.itemTypes.skill.find(i => i.name == skill);
if (!currentCareer) return
2024-10-08 20:52:09 +02:00
let inCurrentCareer = currentCareer.system.skills.concat(currentCareer.system.addedSkills).includes(skill);
2024-06-06 21:09:27 +02:00
let witchAdded = actor.getFlag("wfrp4e", "witchAdded") || {};
if (existingSkill && inCurrentCareer && !witchAdded[existingSkill.name])
{
existingSkill.system.advances.costModifier = -5;
}
else
{
witchAdded[skill] = true;
2024-10-08 20:52:09 +02:00
currentCareer.system.addedSkills.push(skill);
foundry.utils.setProperty(this.actor, "flags.wfrp4e.witchAdded", witchAdded)
2024-06-06 21:09:27 +02:00
}