MArcomage

Free multiplayer on-line fantasy card game

Please log in


1 C
Reinforcements
Reinforcements

Replace a card in hand with Recruits only no support keyword attack card
Gain half recruits cost of the summoned card (max 6)

Id
605
Name
Reinforcements
Rarity
Common
Keywords
Cost (B / G / R)
0 / 0 / 1
Modes
8
Level
10
Created
3. Oct, 2010
Modified
16. Sep, 2017
Played
2998 / 8927
Discarded
525 / 5036
Drawn
3962 / 13265

BB code

Effect

Replace a card in hand with Recruits only no support keyword attack card
Gain half recruits cost of the summoned card (max 6)

Code

    $list = $t->getList(['cost'=>'Green', 'advanced'=>'Attack:', 'support'=>'No keywords']);
    $summoned = $t->drawCard($list, $t->myData()->Hand, $t->mode(), 'drawCardList');
    $t->setCard('my', $t->mode(), $summoned);
    if ($t->mode() == $t->cardPos()) {
      $t->noNextCard();
    }
    $t->myData()->addRecruits(min(round($t->getCard($summoned)->getResources('Recruits') / 2), 6));