Add all systems effects scripts + translations
This commit is contained in:
@ -1,17 +1,17 @@
|
||||
if ((args.opposedTest.attackerTest.item && args.opposedTest.attackerTest.item.isMelee) || (args.opposedTest.attackerTest.item && !args.opposedTest.attackerTest.item.name.includes("Ranged")))
|
||||
if ((args.opposedTest.attackerTest.item && args.opposedTest.attackerTest.item.isMelee) || (args.opposedTest.attackerTest.item && !args.opposedTest.attackerTest.item.name.includes("Projectiles")))
|
||||
{
|
||||
let choice = await Dialog.wait({
|
||||
title: this.effect.name,
|
||||
content: `<p>Apply damage with <strong>${this.effect.name}</strong> to attacker?`,
|
||||
content: `<p>Appliquer les dommages de <strong>${this.effect.name}</strong> à l'attquant?`,
|
||||
buttons: {
|
||||
yes: {
|
||||
label: "Yes",
|
||||
label: "Oui",
|
||||
callback: () => {
|
||||
return true;
|
||||
}
|
||||
},
|
||||
no: {
|
||||
label: "No",
|
||||
label: "Non",
|
||||
callback: () => {
|
||||
return false;
|
||||
}
|
||||
|
Reference in New Issue
Block a user