Wolf raiders
Mode1:
Recruits: +3N
Mode2:
Attack: 3N
N = #Beast + #Horde in hand (max 7)
Cost (B / G / R)
0 / 0 / 12
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);
}