MArcomage

Free multiplayer on-line fantasy card game

Please log in


0 C
Conscript
Conscript

Attack: 1
If last card played was a zero cost card
Summons a non-common zero cost card

Id
97
Name
Conscript
Rarity
Common
Keywords
Cost (B / G / R)
0 / 0 / 0
Modes
0
Level
2
Created
1. May, 2006
Modified
24. Dec, 2011
Played
3747 / 64382
Discarded
1649 / 29011
Drawn
2486 / 31538

BB code

Effect

Attack: 1
If last card played was a zero cost card
Summons a non-common zero cost card

Code

    $t->hisData()->attack(1);
    if ($t->myLastCard()->getResources() == 0 && $t->myLastAction() == 'play' && $t->myLastCard()->id() > 0) {
      $uncommon = $t->getList(['rarity'=>'Uncommon', 'cost'=>'Zero']);
      $rare = $t->getList(['rarity'=>'Rare', 'cost'=>'Zero']);
      $t->nextCard($t->drawCard(array_merge($uncommon, $rare), $t->myData()->Hand, $t->cardPos(), 'drawCardList'));
    }