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

17 lines
567 B
JavaScript
Raw Normal View History

2024-05-16 17:57:51 +02:00
let careers = await game.wfrp4e.utility.findAll("career", "", true);
careers.forEach(c => {
if (!c.id)
{
c.id = c._id;
}
});
let choice = await ItemDialog.create(careers, 1, "Choisissez la carrière de votre double identité");
2024-05-16 17:57:51 +02:00
if (choice[0])
{
let career = await fromUuid(choice[0].uuid);
let data = career.toObject();
setProperty(data, "flags.wfrp4e.doubleLife", true);
this.actor.createEmbeddedDocuments("Item", [data], {fromEffect: this.effect.id})
this.effect.updateSource({name : this.effect.name + ` (${data.name})`})
}