Skip to content

Commit 3cbcc85

Browse files
committed
update cost for matryoshka
1 parent fee6d67 commit 3cbcc85

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

src/clj/game/core/costs.clj

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -928,8 +928,7 @@
928928
(flip-facedown state side c))
929929
(complete-with-result
930930
state side eid
931-
{:paid/msg (str "turns "(quantify (value cost) "hosted cop" "y" "ies")
932-
" of Matryoshka facedown")
931+
{:paid/msg {:turn-hosted-matryoshka-facedown (value cost)}
933932
:paid/type :turn-hosted-matryoshka-facedown
934933
:paid/value (value cost)
935934
:paid/targets selected})))

src/cljc/i18n/en.cljc

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1015,7 +1015,9 @@
10151015
:virus (let [[host count] value]
10161016
(str "spends " (quantify count "hosted virus counter") " from on " host))
10171017
:advancement (str "spends " (quantify (second value) "hosted advancement counter") " from on " (first value))
1018-
:power (str "spends " (quantify (second value) "hosted power counter") " from on " (first value)))))
1018+
:power (str "spends " (quantify (second value) "hosted power counter") " from on " (first value))
1019+
:turn-hosted-matryoshka-facedown (str "turns "(quantify value "hosted cop" "y" "ies")
1020+
" of Matryoshka facedown"))))
10191021

10201022
(defn render-cost
10211023
[cost side]

0 commit comments

Comments
 (0)