MArcomage

Free multiplayer on-line fantasy card game

Please log in


30 R
Necropolis
Necropolis

Tower: +10
Gems: +10
Replace your hand with 4 common, 3 uncommon and 1 rare Undead cards

Id
253
Name
Necropolis
Rarity
Rare
Keywords
Cost (B / G / R)
30 / 0 / 0
Modes
0
Level
10
Created
14. Nov, 2006
Modified
8. Sep, 2012
Played
91 / 1046
Discarded
42 / 550
Drawn
221 / 2303

BB code

Effect

Tower: +10
Gems: +10
Replace your hand with 4 common, 3 uncommon and 1 rare Undead cards

Code

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