Sync to latest WFRP release

This commit is contained in:
2026-02-26 21:53:55 +01:00
parent e0383def30
commit 786afeab74
480 changed files with 4221 additions and 91 deletions

View File

@@ -0,0 +1,28 @@
if (this.item.name.includes("("))
{
return;
}
let index = game.packs
.filter(i => i.metadata.type == "Item")
.reduce((acc, pack) => acc.concat(pack.index.contents), [])
.filter(i => i.type == "skill" && i.name.includes(game.i18n.localize("NAME.Lore")))
.map(i => {
i.id = i._id
return i
})
let choice = await ItemDialog.create(index, 1, "Choose a Lore")
let text;
if (!choice[0])
{
let custom = await ValueDialog.create({text : "Enter Lore", title : this.effect.name});
text = custom || "";
}
else
{
text = game.wfrp4e.utility.extractParenthesesText(choice[0].name)
}
await this.item.updateSource({name : this.item.name + ` (${text})`, "system.tests.value" : this.item.system.tests.value.replace("chosen Lore", text)})
await this.effect.updateSource({name : this.effect.name + ` (${text})`})