MArcomage

Free multiplayer on-line fantasy card game

Please log in


20 R
Army of the King
Army of the King

Recruits: +35
Replace your hand with 3 common and 5 uncommon Soldier cards

Id
291
Name
Army of the King
Rarity
Rare
Keywords
Cost (B / G / R)
0 / 0 / 20
Modes
0
Level
0
Created
1. May, 2006
Modified
16. Sep, 2017
Played
301 / 3370
Discarded
68 / 999
Drawn
551 / 6326

BB code

Effect

Recruits: +35
Replace your hand with 3 common and 5 uncommon Soldier cards

Code

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