10 lines
325 B
JavaScript
10 lines
325 B
JavaScript
let test = await this.actor.setupCharacteristic("wp", {skipTargets: true, appendTitle : ` - ${this.effect.name}`})
|
|
await test.roll();
|
|
if (test.succeeded)
|
|
{
|
|
this.script.scriptMessage("Can perform an Action or Move (choose one)")
|
|
}
|
|
else
|
|
{
|
|
this.script.scriptMessage("Cannot perform an Action or Move this round")
|
|
} |