MArcomage

Free multiplayer on-line fantasy card game

Please log in


19 R
Water elemental
Water elemental

Aqua Unliving

If #Facilities > #Enemy facilities
Enemy wall = 0
Always:
Attack: #Stock - #Enemy stock

Id
222
Name
Water elemental
Rarity
Rare
Keywords
Cost (B / G / R)
0 / 19 / 0
Modes
0
Level
3
Created
26. Mar, 2007
Modified
11. Apr, 2010
Played
307 / 3386
Discarded
250 / 2805
Drawn
869 / 9106

BB code

Effect

If #Facilities > #Enemy facilities
Enemy wall = 0
Always:
Attack: #Stock - #Enemy stock

Code

    $tmp = max(0, $t->myData()->Quarry + $t->myData()->Magic + $t->myData()->Dungeons
      - $t->hisData()->Quarry - $t->hisData()->Magic - $t->hisData()->Dungeons);
    if ($tmp > 0) {
      $t->hisData()->setWall(0);
    }
    $tmp = max(0, $t->myData()->Bricks + $t->myData()->Gems + $t->myData()->Recruits
      - $t->hisData()->Bricks - $t->hisData()->Gems - $t->hisData()->Recruits);
    $t->hisData()->attack($tmp);