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
2968 / 16934
Discarded
1758 / 9719
Drawn
6651 / 35816

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();