Add all systems effects scripts + translations

This commit is contained in:
2024-05-17 12:46:44 +02:00
parent 039df5c10a
commit a308181834
1421 changed files with 9940 additions and 547 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 : "Longbow",
name : "Arc long",
},
{
type : "ammunition",
name : "Arrow",
name : "Flèche",
}
]
let choice2 = [
@ -26,7 +26,7 @@ let choice = await Dialog.wait({
title : "Option",
content :
`<p>
Add Option?
Ajouter l'ption?
</p>
<ol>
<li>Ranged (Bow) +10 and a Longbow with 12 Arrows</li>
@ -34,13 +34,13 @@ let choice = await Dialog.wait({
`,
buttons : {
1 : {
label : "Yes",
label : "Oui",
callback : () => {
return choice1;
}
},
2 : {
label : "No",
label : "Non",
callback : () => {
return 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})
}
}