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
+2 -2
View File
@@ -1,6 +1,6 @@
if (args.test.result.castOutcome == "failure")
{
ValueDialog.create({text : "Enter Wounds Lost to gain SL", title : this.effect.name}, "0").then(async value => {
ValueDialog.create("Enter Wounds Lost to gain SL", this.effect.name, "0").then(async value => {
value = Math.clamped(value, 0, 3)
if (value == 0)
{
@@ -8,7 +8,7 @@ if (args.test.result.castOutcome == "failure")
}
else if (Number.isNumeric(value))
{
this.script.notification(`Lost ${value} Wounds`)
this.script.scriptNotification(`Lost ${value} Wounds`)
this.actor.modifyWounds(-1 * value)
await this.item.system.toggleEquip();
args.test.addSL(value);