foundryvtt-wh4-lang-fr-fr/reference_scripts/2QB0LjueuJcIaHaC.js

8 lines
240 B
JavaScript

if (isNaN(parseInt(this.item.system.specification.value)))
{
let value = await ValueDialog.create("Enter Armour value", this.effect.name);
if (value)
{
this.item.updateSource({"system.specification.value" : value});
}
}