Elven marksman
Gems prod x2
Enemy tower: -N
Attack: 8 - N
N = #Alliance in hand
Cost (B / G / R)
0 / 0 / 6
BB code
Effect
Gems prod x2
Enemy tower: -N
Attack: 8 - N
N = #Alliance in hand
Code
$t->production()->multiplyGems(2);
$tmp = $t->keywordCount($t->myData()->Hand, 'Alliance');
$t->hisData()->addTower(-$tmp);
if ($tmp < 8) {
$t->hisData()->attack(8 - $tmp);
}