Skip to content

Commit 1ed9525

Browse files
committed
update cost for matryoshka
1 parent 3e16bb8 commit 1ed9525

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
@@ -1008,7 +1008,9 @@
10081008
:virus (let [[host count] value]
10091009
(str "spends " (quantify count "hosted virus counter") " from on " host))
10101010
:advancement (str "spends " (quantify (second value) "hosted advancement counter") " from on " (first value))
1011-
:power (str "spends " (quantify (second value) "hosted power counter") " from on " (first value)))))
1011+
:power (str "spends " (quantify (second value) "hosted power counter") " from on " (first value))
1012+
:turn-hosted-matryoshka-facedown (str "turns "(quantify value "hosted cop" "y" "ies")
1013+
" of Matryoshka facedown"))))
10121014

10131015
(defn render-cost
10141016
[cost]

0 commit comments

Comments
 (0)