diff options
-rw-r--r-- | rules.js | 5 | ||||
-rw-r--r-- | rules.ts | 5 |
2 files changed, 10 insertions, 0 deletions
@@ -2103,6 +2103,11 @@ states.use_organization_medallion = { }; states.use_strategy_medallion = { inactive: 'choose to use Strategy Medallion', + auto_resolve() { + if (game.used_medallions.includes(data_1.STRATEGY_MEDALLION_ID)) + return true; + return false; + }, prompt() { const { f } = get_active_node_args(); view.prompt = `Strategy Medallion: Add 1 strength to ${front_names[f]}?`; @@ -2537,6 +2537,11 @@ states.use_organization_medallion = { states.use_strategy_medallion = { inactive: 'choose to use Strategy Medallion', + auto_resolve() { + if (game.used_medallions.includes(STRATEGY_MEDALLION_ID)) + return true + return false + }, prompt() { // gen_spend_hero_points(); // confusing when available during this question const { f } = get_active_node_args(); |