This commit is contained in:
2025-05-02 12:24:44 +02:00
commit 39e925cc1b
3238 changed files with 110472 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
let resistance
if (this.item.name.includes("("))
{
resistance = this.item.parenthesesText
}
else
{
resistance = await ValueDialog.create("Enter Resistance", "Resistance")
if (resistance)
{
this.item.updateSource({name : this.item.name + ` (${resistance})`})
this.effect.updateSource({name : this.effect.name + ` (${resistance})`})
}
}
this.item.updateSource({"system.tests.value" : this.item.system.tests.value.replace("the associated Threat", resistance)})
if (resistance && !this.effect.name.includes("("))
{
this.effect.updateSource({name : this.effect.name += ` (${resistance})`})
}