Skip to content

Commit

Permalink
Re-add start of turn checks
Browse files Browse the repository at this point in the history
  • Loading branch information
NoahTheDuke committed Aug 5, 2019
1 parent 47b670f commit dc6d1bd
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/clj/game/cards/hardware.clj
Original file line number Diff line number Diff line change
Expand Up @@ -1226,9 +1226,15 @@
{:effect (req (damage state side eid :meat 1 {:unboostable true :card card}))
:msg "suffer 1 meat damage"
:events {:runner-hand-change {:req (req (and (zero? target)
(first-event? state side :runner-hand-change #(zero? (first %)))))
(first-event? state side :runner-hand-change #(zero? (first %)))))
:async true
:effect (req (continue-ability state side ability card nil))}}})
:effect (req (continue-ability state side ability card nil))}
:runner-turn-begins {:req (req (empty? (:hand runner)))
:async true
:effect (effect (continue-ability ability card nil))}
:corp-turn-begins {:req (req (empty? (:hand runner)))
:async true
:effect (effect (continue-ability ability card nil))}}})

"Rubicon Switch"
{:abilities [{:cost [:click 1]
Expand Down

0 comments on commit dc6d1bd

Please sign in to comment.