From 5dfbb92609423c7a85ec1cf6c8d460173be5501f Mon Sep 17 00:00:00 2001 From: NB Kelly Date: Sun, 3 Nov 2024 09:36:20 +1300 Subject: [PATCH] adv-counter instead of token --- src/clj/game/cards/assets.clj | 6 +++--- test/clj/game/cards/assets_test.clj | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/clj/game/cards/assets.clj b/src/clj/game/cards/assets.clj index 1a95dc0a3f..2522f93214 100644 --- a/src/clj/game/cards/assets.clj +++ b/src/clj/game/cards/assets.clj @@ -3072,9 +3072,9 @@ {:msg "draw 1 card" :async true :effect (effect (draw eid 1))} - {:label "place 1 advancement token on a piece of ice" - :msg (msg "place 1 advancement token on " (card-str state target)) - :prompt "Choose a piece of ice to place 1 advancement token on" + {:label "place 1 advancement counter on a piece of ice" + :msg (msg "place 1 advancement counter on " (card-str state target)) + :prompt "Choose a piece of ice to place 1 advancement counter on" :async true :choices {:card #(and (ice? %) (installed? %))} diff --git a/test/clj/game/cards/assets_test.clj b/test/clj/game/cards/assets_test.clj index 1a72987df9..bf1bfb57ea 100644 --- a/test/clj/game/cards/assets_test.clj +++ b/test/clj/game/cards/assets_test.clj @@ -6469,13 +6469,13 @@ (is (changed? [(:credit (get-corp)) 1] (click-prompt state :corp "Gain 1 [Credits]")) "Gained 1 credit") - (is (= ["Draw 1 card" "Place 1 advancement token on a piece of ice" "Add this asset to HQ" "Done"] + (is (= ["Draw 1 card" "Place 1 advancement counter on a piece of ice" "Add this asset to HQ" "Done"] (prompt-buttons :corp)) "Chosen options are removed") (is (changed? [(count (:hand (get-corp))) 1] (click-prompt state :corp "Draw 1 card")) "Drew 1 card") (is (changed? [(get-counters (refresh iw) :advancement) 1] - (click-prompt state :corp "Place 1 advancement token on a piece of ice") + (click-prompt state :corp "Place 1 advancement counter on a piece of ice") (click-card state :corp iw)) "Added 1 advancement token") (rez state :corp pad)