Add Hero Level max

This commit is contained in:
2022-07-26 22:58:33 +02:00
parent 40a8406761
commit 0c86b7f694
3 changed files with 15 additions and 1 deletions

View File

@ -1381,6 +1381,15 @@ export class PegasusActor extends Actor {
return options.join("\n")
}
/* -------------------------------------------- */
getMaxLevelRemainingList() {
let options = []
for (let i = 0; i <= 12; i++) {
options.push(`<option value="${i}">${i}</option>`)
}
return options.join("\n")
}
/* -------------------------------------------- */
async startRoll(rollData) {
this.syncRoll(rollData);