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
+4 -4
View File
@@ -1,17 +1,17 @@
if ((args.opposedTest.attackerTest.item && args.opposedTest.attackerTest.item.isMelee) || (args.opposedTest.attackerTest.item && !args.opposedTest.attackerTest.item.name.includes("Projectiles")))
if ((args.opposedTest.attackerTest.item && args.opposedTest.attackerTest.item.isMelee) || (args.opposedTest.attackerTest.item && !args.opposedTest.attackerTest.item.name.includes("Ranged")))
{
let choice = await Dialog.wait({
title: this.effect.name,
content: `<p>Appliquer les dommages de <strong>${this.effect.name}</strong> à l'attquant?`,
content: `<p>Apply damage with <strong>${this.effect.name}</strong> to attacker?`,
buttons: {
yes: {
label: "Oui",
label: "Yes",
callback: () => {
return true;
}
},
no: {
label: "Non",
label: "No",
callback: () => {
return false;
}