From 8604a2cf76e53f111945732f81acabe0954e42c2 Mon Sep 17 00:00:00 2001 From: Zach Mitchell Date: Fri, 1 May 2020 23:52:06 -0700 Subject: [PATCH] Yagura: fix subroutine order --- src/clj/game/cards/ice.clj | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/clj/game/cards/ice.clj b/src/clj/game/cards/ice.clj index 4309db76e9..b79b009887 100644 --- a/src/clj/game/cards/ice.clj +++ b/src/clj/game/cards/ice.clj @@ -3276,12 +3276,12 @@ (assoc wr :event :card-moved)])}) (define-card "Yagura" - {:subroutines [(do-net-damage 1) - {:msg "look at the top card of R&D" + {:subroutines [{:msg "look at the top card of R&D" :optional {:prompt (msg "Move " (:title (first (:deck corp))) " to the bottom of R&D?") :yes-ability {:msg "move the top card of R&D to the bottom" :effect (effect (move (first (:deck corp)) :deck))} - :no-ability {:effect (effect (system-msg :corp (str "does not use Yagura to move the top card of R&D to the bottom")))}}}]}) + :no-ability {:effect (effect (system-msg :corp (str "does not use Yagura to move the top card of R&D to the bottom")))}}} + (do-net-damage 1)]}) (define-card "Zed 1.0" {:implementation "Restriction on having spent [click] is not implemented"