MArcomage

Free multiplayer on-line fantasy card game

Please log in


8 8 8 U
Scepter of evolution
Scepter of evolution

Replace your hand with 4 commons, 3 uncommons and 1 rare from your deck

Id
494
Name
Scepter of evolution
Rarity
Uncommon
Keywords
Cost (B / G / R)
8 / 8 / 8
Modes
0
Level
8
Created
20. Jan, 2010
Modified
20. Jan, 2010
Played
2628 / 16594
Discarded
1550 / 9511
Drawn
5906 / 35071

BB code

Effect

Replace your hand with 4 commons, 3 uncommons and 1 rare from your deck

Code

    $trans = ['Common', 'Common', 'Common', 'Common', 'Uncommon', 'Uncommon', 'Uncommon', 'Rare'];
    shuffle($trans);
    for ($i = 1; $i <= $t->handSize(); $i++) {
      $rarity = $trans[$i-1];
      $t->setCard('my', $i, $t->drawCard($t->myDeck()->$rarity, $t->myData()->Hand, $i, 'drawCardList'));
    }
    $t->noNextCard();