Add all systems effects scripts + translations

This commit is contained in:
2024-05-17 01:07:37 +02:00
parent 0b286ac994
commit 7b97578bd7
191 changed files with 379 additions and 381 deletions

View File

@ -1,7 +1,7 @@
let choice1 = [
{
type : "skill",
name : "Ranged (Bow)",
name : "Projectiles (Arc)",
diff : {
system : {
advances : {
@ -12,11 +12,11 @@ let choice1 = [
},
{
type : "weapon",
name : "Bow",
name : "Arc",
},
{
type : "ammunition",
name : "Arrow",
name : "Flèche",
}
]
let choice2 = [
@ -26,21 +26,21 @@ let choice = await Dialog.wait({
title : "Option",
content :
`<p>
Add Option?
Ajouter une Option?
</p>
<ol>
<li>Ranged (Bow) +10 and a Bow with 12 Arrows</li>
<li>Projectiles (Arc) +10 et un arc avec 12 Flèches</li>
</ol>
`,
buttons : {
1 : {
label : "Yes",
label : "Oui",
callback : () => {
return choice1
}
},
2 : {
label : "No",
label : "Non",
callback : () => {
choice2
}
@ -72,7 +72,7 @@ for (let c of choice)
items.push(mergeObject(item, (c.diff || {})))
}
else
ui.notifications.warn(`Could not find ${talent}`, {permanent : true})
ui.notifications.warn(`Impossible de trouver ${talent}`, {permanent : true})
}
}