MArcomage

Free multiplayer on-line fantasy card game

Please log in


13 13 R
Phantom unicorn
Phantom unicorn

Illusion Legend

Attack: 25
Replace all discarding and replacing cards in opponent's hand with common cards from his deck

Id
715
Name
Phantom unicorn
Rarity
Rare
Keywords
Cost (B / G / R)
0 / 13 / 13
Modes
0
Level
10
Created
27. Jul, 2013
Modified
27. Jul, 2013
Played
468 / 1469
Discarded
52 / 251
Drawn
630 / 2076

BB code

Effect

Attack: 25
Replace all discarding and replacing cards in opponent's hand with common cards from his deck

Code

    $t->hisData()->attack(25);
    $target_cards = array_merge($t->getList(['advanced'=>"Discard "]), $t->getList(['advanced'=>'Replace ']));
    for ($i = 1; $i <= $t->handSize(); $i++) {
      if (in_array($t->hisData()->Hand[$i], $target_cards)) {
        $t->setCard('his', $i, $t->drawCard($t->hisDeck()->Common, $t->hisData()->Hand, $i, 'drawCardList'));
      }
    }