Guardian angel
Attack: 2N
Wall: +4N
N = #Soldier + #Holy in hand (max 8)
Cost (B / G / R)
0 / 16 / 12
BB code
Effect
Attack: 2N
Wall: +4N
N = #Soldier + #Holy in hand (max 8)
Code
$tmp = $t->keywordCount($t->myData()->Hand, 'Soldier') + $t->keywordCount($t->myData()->Hand, 'Holy');
$tmp = min(8 ,$tmp);
$t->hisData()->attack(2 * $tmp); $t->myData()->addWall(4 * $tmp);