MArcomage

Free multiplayer on-line fantasy card game

Please log in


5 C
Faceless
Faceless

Illusion

Replace a common card in opponent's hand with a common card from your deck
Attack: N
N = cost of the replaced card

Id
685
Name
Faceless
Rarity
Common
Keywords
Cost (B / G / R)
0 / 0 / 5
Modes
8
Level
10
Created
24. Jun, 2012
Modified
26. Sep, 2015
Played
693 / 3987
Discarded
2169 / 6497
Drawn
3239 / 12142

BB code

Effect

Replace a common card in opponent's hand with a common card from your deck
Attack: N
N = cost of the replaced card

Code

    $target_card = $t->getCard($t->hisData()->Hand[$t->mode()]);
    if ($target_card->getRarity() == 'Common') {
      $t->setCard('his', $t->mode(), $t->drawCard($t->myDeck()->Common, $t->hisData()->Hand, $t->mode(), 'drawCardList'));
      $attack = $target_card->getResources();
      $t->hisData()->attack($attack);
    }