File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 1352
1352
(strength-pump 2 4 )]))
1353
1353
1354
1354
(defcard " Equivocation"
1355
- (let [force-draw (fn [title ]
1355
+ (let [force-draw (fn [c ]
1356
1356
{:optional
1357
- {:prompt (str " Force the Corp to draw " title " ?" )
1357
+ {:prompt (str " Force the Corp to draw " ( : title c) " ?" )
1358
1358
:yes-ability
1359
1359
{:async true
1360
- :effect (req (system-msg state :corp (str " is forced to draw " title))
1360
+ :effect (req (system-msg state :corp (str " is forced to draw " ( : title c) ))
1361
1361
(draw state :corp eid 1 ))}}})
1362
1362
rvl {:optional
1363
1363
{:prompt " Reveal the top card of R&D?"
1364
1364
:yes-ability
1365
1365
{:async true
1366
- :effect (req (let [topcard (-> corp :deck first :title )]
1366
+ :effect (req (let [topcard (get-in @state [ : corp :deck 0 ] )]
1367
1367
(wait-for
1368
1368
(reveal state side topcard)
1369
- (system-msg state :runner (str " reveals " topcard
1369
+ (system-msg state :runner (str " reveals " ( :title topcard)
1370
1370
" from the top of R&D" ))
1371
1371
(continue-ability state side (force-draw topcard) card nil ))))}}}]
1372
1372
{:events [{:event :successful-run
You can’t perform that action at this time.
0 commit comments