6 lines
300 B
JavaScript
6 lines
300 B
JavaScript
const chanties = await warhammer.utility.findAllItems('wfrp4e-soc.chanty', "Loading Chanties", true);
|
|
let choice = await ItemDialog.create(chanties, 1, {text : "Choisissez un Chant", title : this.effect.name});
|
|
if (choice.length)
|
|
{
|
|
this.actor.addEffectItems(choice.map(i => i.uuid), this.effect)
|
|
} |