MArcomage

Free multiplayer on-line fantasy card game

Please log in


12 U
Wolf raiders
Wolf raiders

Beast Horde

Mode1:
Recruits: +3N
Mode2:
Attack: 3N
N = #Beast + #Horde in hand (max 7)

Id
324
Name
Wolf raiders
Rarity
Uncommon
Keywords
Cost (B / G / R)
0 / 0 / 12
Modes
2
Level
9
Created
4. Oct, 2007
Modified
27. Jul, 2013
Played
1073 / 6756
Discarded
176 / 1869
Drawn
1498 / 11799

BB code

Effect

Mode1:
Recruits: +3N
Mode2:
Attack: 3N
N = #Beast + #Horde in hand (max 7)

Code

    $tmp = $t->keywordCount($t->myData()->Hand, 'Beast') + $t->keywordCount($t->myData()->Hand, 'Horde');
    $tmp = min(7, $tmp);
    if ($t->mode() == 1) {
      $t->myData()->addRecruits(3 * $tmp);
    }
    elseif ($t->mode() == 2) {
      $t->hisData()->attack(3 * $tmp);
    }