Scripts englisch statt französisch

This commit is contained in:
alzer
2025-05-15 23:03:43 +02:00
parent 0bcbc29f0f
commit d80779f206
503 changed files with 10469 additions and 1616 deletions
+3 -3
View File
@@ -1,15 +1,15 @@
let resistance
if (this.item.name.includes("(") && !this.item.name.toLowerCase().includes("(any)"))
if (this.item.name.includes("("))
{
resistance = this.item.parenthesesText
}
else
{
resistance = await ValueDialog.create({text : "Resistenz eingeben", title : "Resistenz"})
resistance = await ValueDialog.create("Enter Resistance", "Resistance")
if (resistance)
{
this.item.updateSource({name : `${this.item.name.split("(")[0].trim()} (${resistance})`})
this.item.updateSource({name : this.item.name + ` (${resistance})`})
this.effect.updateSource({name : this.effect.name + ` (${resistance})`})
}
}