MArcomage

Free multiplayer on-line fantasy card game

Please log in


20 12 U
Witch rider
Witch rider

Gems: +8
If #Far sight in hand > 0
Enemy tower: -18
else
Attack: 20

Id
593
Name
Witch rider
Rarity
Uncommon
Keywords
Cost (B / G / R)
0 / 20 / 12
Modes
0
Level
5
Created
10. Sep, 2010
Modified
24. Dec, 2010
Played
352 / 4092
Discarded
97 / 1341
Drawn
650 / 8438

BB code

Effect

Gems: +8
If #Far sight in hand > 0
Enemy tower: -18
else
Attack: 20

Code

    $t->myData()->addGems(8);
    if ($t->keywordCount($t->myData()->Hand, 'Far sight') > 0) {
      $t->hisData()->addTower(-18);
    }
    else {
      $t->hisData()->attack(20);
    }