From 5dc1ee327e16431b6700f3977469943f002a0c7c Mon Sep 17 00:00:00 2001 From: Frans Bongers Date: Tue, 24 Dec 2024 21:34:48 +0100 Subject: show initiative token --- play.js | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'play.js') diff --git a/play.js b/play.js index aeea368..356e5a0 100644 --- a/play.js +++ b/play.js @@ -67,6 +67,7 @@ const ui = { bonuses: [], tokens_on_front: {}, glory: [], + initiative_token: undefined, medallions: [], spaces: [], standees: [], @@ -239,6 +240,8 @@ function on_init() { e.setAttribute('data-card-id', '' + data.cards[c].id); register_action(e, 'card', c); } + let e = (ui.initiative_token = document.createElement('div')); + e.className = 'initiative_token'; data.fronts.forEach((front) => { ui.tokens_on_front[front.id] = {}; FACTIONS.forEach((faction_id) => { @@ -312,6 +315,8 @@ function on_update() { ui.roles[f].medallions.appendChild(ui.medallions[m]); } } + ui.roles[view.initiative].medallions.appendChild(ui.initiative_token); + ui.initiative_token.setAttribute('data-year', view.year); for (let faction_id of FACTIONS) { ui.tableaus[faction_id].replaceChildren(); for (let c of view.tableaus[faction_id]) { -- cgit v1.2.3