foundryvtt-wh4-lang-fr-fr/scripts/N8hA6ysHCTlLd8Kj.js

77 lines
2.1 KiB
JavaScript
Raw Normal View History

2024-05-16 17:57:51 +02:00
let characteristics = {
"ws" : 0,
"bs" : 0,
"s" : 0,
"t" : 5,
"i" : 15,
"ag" : 0,
"dex" : 10,
"int" : 15,
"wp" : 15,
"fel" : 0
}
2024-10-08 20:52:09 +02:00
let skills = ["Focalisation", "Calme", "Esquive", "Divertissement (Narration)", "Intuition", "Langue (Magick)", "Savoir (Magie)" , "Perception"]
2024-05-16 17:57:51 +02:00
let skillAdvancements = [5, 15, 10, 10, 15, 10, 10, 20]
let talents = ["Magie des Arcanes", "Magie Mineure", "Seconde Vue"]
2024-10-08 20:52:09 +02:00
let trappings = ["Arme simple", "(2M) Bâton de combat", "Ritual Dress incorporating many ingredients and fetishes"]
2024-05-16 17:57:51 +02:00
let items = [];
let updateObj = this.actor.toObject();
for (let ch in characteristics)
{
updateObj.system.characteristics[ch].modifier += characteristics[ch];
}
for (let index = 0; index < skills.length; index++)
{
let skill = skills[index]
let skillItem;
skillItem = updateObj.items.find(i => i.name == skill && i.type == "skill")
if (skillItem)
skillItem.system.advances.value += skillAdvancements[index]
else
{
skillItem = await game.wfrp4e.utility.findSkill(skill)
skillItem = skillItem.toObject();
skillItem.system.advances.value = skillAdvancements[index];
items.push(skillItem);
}
}
for (let talent of talents)
{
let talentItem = await game.wfrp4e.utility.findTalent(talent)
if (talentItem)
{
items.push(talentItem.toObject());
}
else
{
ui.notifications.warn(`Impossible de trouver ${talent}`, {permanent : true})
2024-05-16 17:57:51 +02:00
}
}
for (let trapping of trappings)
{
let trappingItem = await game.wfrp4e.utility.findItem(trapping)
if (trappingItem)
{
trappingItem = trappingItem.toObject()
2024-10-08 20:52:09 +02:00
trappingItem.system.equipped.value = true;
2024-05-16 17:57:51 +02:00
items.push(trappingItem);
}
else
{
items.push({name : trapping, type : "trapping", "system.trappingType.value" : "clothingAccessories"})
2024-10-08 20:52:09 +02:00
//ui.notifications.warn(`Impossible de trouver ${trapping}`, {permanent : true})
2024-05-16 17:57:51 +02:00
}
}
updateObj.name = updateObj.name += " " + this.effect.name
await this.actor.update(updateObj)
this.actor.createEmbeddedDocuments("Item", items);