Add all systems effects scripts + translations
This commit is contained in:
21
reference_scripts/6kifXp2jXEaQVJsg.js
Normal file
21
reference_scripts/6kifXp2jXEaQVJsg.js
Normal file
@ -0,0 +1,21 @@
|
||||
let useWard = await Dialog.wait({
|
||||
title : this.effect.name,
|
||||
content : `<p>Use Ward provided by <strong>${this.effect.name}</strong>?`,
|
||||
buttons : {
|
||||
yes : {
|
||||
label : "Yes",
|
||||
callback: () => {
|
||||
return true;
|
||||
}
|
||||
},
|
||||
no : {
|
||||
label: "No",
|
||||
callback: () => {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
if (useWard)
|
||||
args.ward = 9;
|
Reference in New Issue
Block a user