Forest spirit
Attack: 12 + N
Wall: +2N
N = #Beast + #Nature in hand
Cost (B / G / R)
0 / 0 / 15
BB code
Effect
Attack: 12 + N
Wall: +2N
N = #Beast + #Nature in hand
Code
$tmp = $t->keywordCount($t->myData()->Hand, 'Beast') + $t->keywordCount($t->myData()->Hand, 'Nature');
$t->hisData()->attack(12 + $tmp); $t->myData()->addWall(2 * $tmp);