MArcomage

Free multiplayer on-line fantasy card game

Please log in


7 C
Death wave
Death wave

Enemy wall: -4N
N = #Undead in hand (max 6) - #Holy in opponent's hand

Id
333
Name
Death wave
Rarity
Common
Keywords
Cost (B / G / R)
0 / 7 / 0
Modes
0
Level
9
Created
25. Nov, 2007
Modified
8. Sep, 2012
Played
2346 / 17260
Discarded
794 / 3898
Drawn
3709 / 25455

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);