MArcomage

Free multiplayer on-line fantasy card game

Please log in


20 U
Siege breakers
Siege breakers

Soldier Siege

Attack: 8N
If N > 4
Wall: +15
N = #Soldier in hand (max 4)

Id
322
Name
Siege breakers
Rarity
Uncommon
Keywords
Cost (B / G / R)
0 / 0 / 20
Modes
0
Level
9
Created
4. Oct, 2007
Modified
24. Apr, 2011
Played
852 / 6648
Discarded
222 / 1777
Drawn
1301 / 9373

BB code

Effect

Attack: 8N
If N > 4
Wall: +15
N = #Soldier in hand (max 4)

Code

    $soldiers = $t->keywordCount($t->myData()->Hand, 'Soldier');
    $tmp = min(4, $soldiers);
    $t->hisData()->attack(8 * $tmp);
    if ($soldiers > 4) {
      $t->myData()->addWall(15);
    }