MArcomage

Free multiplayer on-line fantasy card game

Please log in


16 12 U
Guardian angel
Guardian angel

Holy

Attack: 2N
Wall: +4N
N = #Soldier + #Holy in hand (max 8)

Id
326
Name
Guardian angel
Rarity
Uncommon
Keywords
Cost (B / G / R)
0 / 16 / 12
Modes
0
Level
8
Created
25. Nov, 2007
Modified
24. Sep, 2011
Played
1610 / 9636
Discarded
471 / 2188
Drawn
2562 / 14812

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