foundryvtt-wh4-lang-fr-fr/scripts/8GyJgdHVBaLrHCY8.js

21 lines
691 B
JavaScript
Raw Permalink Normal View History

2024-05-16 17:57:51 +02:00
let type = this.item.getFlag("wfrp4e", "breath")
let types = {
none : "Aucun",
cold : "Froid",
2024-05-16 17:57:51 +02:00
corrosion : "Corrosion",
fire : "Feu",
electricity : "Electricité",
2024-05-16 17:57:51 +02:00
poison : "Poison",
smoke : "Fumée",
various : "Divers"
2024-05-16 17:57:51 +02:00
}
if (!type)
{
type = (await ItemDialog.create(ItemDialog.objectToArray(types, this.item.img), 1, "Choisir le Souffle"))[0]?.id;
2024-05-16 17:57:51 +02:00
this.item.updateSource({"flags.wfrp4e.breath" : type})
}
if (!this.item.name.includes("(") && types[type] && type != "none")
{
this.item.updateSource({name : this.item.name += ` (${types[type]})`, "system.specification.value" : this.item.system.specification.value.replace("(Type)", "").trim()})
}