MArcomage

Free multiplayer on-line fantasy card game

Please log in


8 8 8 R
Corrupted woods
Corrupted woods

Nature Undead

Wall: +5N
Enemy wall: -5M
Stock: +(N + M)
N = #Nature in hand
M = #Undead in hand

Id
612
Name
Corrupted woods
Rarity
Rare
Keywords
Cost (B / G / R)
8 / 8 / 8
Modes
0
Level
9
Created
1. Jan, 2011
Modified
12. Feb, 2011
Played
1450 / 6643
Discarded
348 / 1556
Drawn
2413 / 11012

BB code

Effect

Wall: +5N
Enemy wall: -5M
Stock: +(N + M)
N = #Nature in hand
M = #Undead in hand

Code

    $nature = $t->keywordCount($t->myData()->Hand, 'Nature');
    $undead = $t->keywordCount($t->myData()->Hand, 'Undead');
    $tmp = $nature + $undead;
    $t->myData()->addWall(5 * $nature)->addStock($tmp);
    $t->hisData()->addWall(-5 * $undead);