7 lines
234 B
JavaScript
7 lines
234 B
JavaScript
let value = await ValueDialog.create({
|
|
title : this.script.label,
|
|
text: "Notes de Victoire pour le Journal d'Expérience"
|
|
});
|
|
value
|
|
? this.actor.system.awardExp(50, value)
|
|
: this.actor.system.awardExp(50, this.script.label) |