MArcomage

Free multiplayer on-line fantasy card game

Please log in


1 C
Shadow fairy
Shadow fairy

Holy Far sight

If #Holy in opponent's hand > 0
Enemy tower: -1
else
Steals 1 stock

Id
410
Name
Shadow fairy
Rarity
Common
Keywords
Cost (B / G / R)
0 / 1 / 0
Modes
0
Level
8
Created
24. Dec, 2008
Modified
29. Oct, 2016
Played
2977 / 19041
Discarded
1284 / 6394
Drawn
5027 / 32411

BB code

Effect

If #Holy in opponent's hand > 0
Enemy tower: -1
else
Steals 1 stock

Code

    if ($t->keywordCount($t->hisData()->Hand, 'Holy') > 0) {
      $t->hisData()->addTower(-1);
    }
    else {
      $t->stealStock('my', 1);
    }