Files
foundryvtt-wh4-lang-fr-fr/scripts/Z6jNlyZMECkW4Hon.js

13 lines
600 B
JavaScript

let spells = await warhammer.utility.findAllItems("spell", "Loading Spells", true);
let choice = await ItemDialog.create(spells, 1);
if (choice[0])
{
this.script.message(`Chose @UUID[${choice[0].uuid}]{${choice[0].name}}`)
let spell = (await fromUuid(choice[0].uuid)).toObject(); // Might be an index so retrieve item object for sure
foundry.utils.setProperty(spell, "flags.wfrp4e.boonOfTzeentch", true);
spell.system.wind.value = "Focalisation (Dhar)";
spell.system.memorized.value = true;
this.actor.createEmbeddedDocuments("Item", [spell], {fromEffect: this.effect.id})
}