MArcomage

Free multiplayer on-line fantasy card game

Please log in


12 R
Kitsune
Kitsune

Beast Illusion

Attack: 26
Replace opponent's hand with cards from your deck of the same rarity

Id
714
Name
Kitsune
Rarity
Rare
Keywords
Cost (B / G / R)
0 / 12 / 0
Modes
0
Level
10
Created
27. Jul, 2013
Modified
27. Jul, 2013
Played
447 / 1401
Discarded
69 / 261
Drawn
651 / 2075

BB code

Effect

Attack: 26
Replace opponent's hand with cards from your deck of the same rarity

Code

    $t->hisData()->attack(26);
    for ($i = 1; $i <= $t->handSize(); $i++) {
      $rarity = $t->getCard($t->hisData()->Hand[$i])->getRarity();
      $t->setCard('his', $i, $t->drawCard($t->myDeck()->$rarity, $t->hisData()->Hand, $i, 'drawCardList'));
    }