Death wave
Enemy wall: -4N
N = #Undead in hand (max 6) - #Holy in opponent's hand
Cost (B / G / R)
0 / 7 / 0
BB code
Effect
Enemy wall: -4N
N = #Undead in hand (max 6) - #Holy in opponent's hand
Code
$undead = $t->keywordCount($t->myData()->Hand, 'Undead');
$holy = $t->keywordCount($t->hisData()->Hand, 'Holy');
$t->hisData()->addWall(-max(min($undead, 6) - $holy, 0) * 4);