MArcomage

Free multiplayer on-line fantasy card game

Please log in


7 R
Cheshire
Cheshire

Illusion

Replace other rare cards in hand with rare cards from your deck
Summons rare Illusion

Id
712
Name
Cheshire
Rarity
Rare
Keywords
Cost (B / G / R)
0 / 7 / 0
Modes
0
Level
10
Created
27. Jul, 2013
Modified
27. Jul, 2013
Played
65 / 583
Discarded
28 / 224
Drawn
124 / 1040

BB code

Effect

Replace other rare cards in hand with rare cards from your deck
Summons rare Illusion

Code

    for ($i = 1; $i <= $t->handSize(); $i++) {
      if ($i != $t->cardPos() && $t->getCard($t->myData()->Hand[$i])->getRarity() == 'Rare') {
        $t->setCard('my', $i, $t->drawCard($t->myDeck()->Rare, $t->myData()->Hand, $i, 'drawCardList'));
      }
    }
    $t->nextCard($t->drawCard($t->getList(['rarity'=>'Rare', 'keyword'=>'Illusion']), $t->myData()->Hand, $t->cardPos(), 'drawCardList'));