diff options
Diffstat (limited to 'rules.ts')
-rw-r--r-- | rules.ts | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -688,6 +688,7 @@ function draw_hand_cards(faction_id: FactionId, count: number, indent = true) { const deck = list_deck(faction_id); if (game.medallions[faction_id].includes(INTELLIGENCE_MEDALLION_ID)) { + log(">M" + INTELLIGENCE_MEDALLION_ID); count++; } let drawn_cards = 0; @@ -1262,7 +1263,7 @@ states.play_card = { const args = get_active_node_args(); if (args && args.src === 'momentum') { - log_header("~ Momentum ~\nC" + game.played_card, faction); + log_header("~ M" + MOMENTUM_MEDALLION_ID + " ~\nC" + game.played_card, faction); } else { log_header("~ Play Card ~\nC" + game.played_card, faction); } @@ -2112,7 +2113,7 @@ states.remove_blank_marker_archives = { blank_marker(b: number) { const faction = get_active_faction(); pay_hero_points(faction, 1); - log(`>M${ARCHIVES_MEDALLION_ID}`); + log(">M" + ARCHIVES_MEDALLION_ID); remove_blank_marker(b); game.used_medallions.push(ARCHIVES_MEDALLION_ID); resolve_active_and_proceed(); @@ -2543,6 +2544,7 @@ states.use_strategy_medallion = { this.yes() }, yes() { + log(">M" + STRATEGY_MEDALLION_ID); game.used_medallions.push(STRATEGY_MEDALLION_ID); const { f } = get_active_node_args(); const faction = get_active_faction(); @@ -2976,6 +2978,7 @@ function resolve_fascist_test() { ? 2 : 0; if (can_use_medallion(PROPAGANDA_MEDALLION_ID, faction)) { + log(">M" + PROPAGANDA_MEDALLION_ID); hero_points_gain += 2; } if (hero_points_gain > 0) { |