diff options
Diffstat (limited to 'rules.ts')
-rw-r--r-- | rules.ts | 9 |
1 files changed, 4 insertions, 5 deletions
@@ -105,7 +105,7 @@ const bonus_names: string[] = ['Morale Bonus', 'Teamwork Bonus']; const { cards, - medallions, + // medallions, // fronts, tracks, } = data; @@ -1399,10 +1399,10 @@ function setup_momentum() { } states.choose_medallion = { - inactive: 'earn a medallion', + inactive: 'claim a medallion', prompt() { gen_spend_hero_points(); - view.prompt = 'Earn a Medallion.'; + view.prompt = 'Claim a Medallion.'; for (let m of game.medallions[POOL_ID]) { if (m !== null) gen_action_medallion(m); @@ -1416,9 +1416,8 @@ states.choose_medallion = { }, medallion(m: number) { const faction = get_active_faction(); - const medallion = medallions[m]; - logp(`earned ${medallion.name}`); + logp("claimed M" + m) const index = game.medallions[POOL_ID].indexOf(m); |