RC-73 | Rank | Display & Input

This commit is contained in:
Oliver-Akins 2024-12-30 22:52:24 -07:00
parent 6b88714bfc
commit 7256e9f53b
4 changed files with 40 additions and 1 deletions

View file

@ -67,10 +67,15 @@ export class HeroSummaryCardV1 extends GenericSheetMixin(HandlebarsApplicationMi
ctx.level = {
glory: ctx.actor.system.level.glory,
step: ctx.actor.system.level.step,
rank: {
selected: ctx.actor.system.level.rank,
options: Object.values(gameTerms.Rank),
},
};
if (ctx.meta.limited) {
ctx.level.glory = `?`;
ctx.level.step = `?`;
ctx.level.rank.selected = `?`;
};
return ctx;
};