forked from public/foundryvtt-wh4-lang-fr-fr
Add all systems effects scripts + translations
This commit is contained in:
20
reference_scripts/cUnbADgOQ4fMKgrH.js
Normal file
20
reference_scripts/cUnbADgOQ4fMKgrH.js
Normal file
@ -0,0 +1,20 @@
|
||||
let group
|
||||
let item = await fromUuid("Compendium.wfrp4e-core.items.Item.5hH73j2NgPdsLCZN");
|
||||
let data = item.toObject();
|
||||
|
||||
if (this.item.name.includes("("))
|
||||
{
|
||||
group = this.item.parenthesesText
|
||||
}
|
||||
|
||||
else
|
||||
{
|
||||
group = await ValueDialog.create("Enter Hatred Group", "Hatred Group")
|
||||
|
||||
this.item.updateSource({name : this.item.name + ` (${group})`, "system.tests.value" : this.item.system.tests.value.replace("Group", group)})
|
||||
this.effect.updateSource({name : this.effect.name + ` (${group})`})
|
||||
}
|
||||
|
||||
|
||||
data.name = data.name.replace("Target", group);
|
||||
await this.actor.createEmbeddedDocuments("Item", [data], {fromEffect: this.effect.id});
|
Reference in New Issue
Block a user