MArcomage

Free multiplayer on-line fantasy card game

Please log in


5 C
Elven archer
Elven archer

Alliance Far sight

If Wall > Enemy wall
Enemy tower: -7
else
Attack: 6

Id
272
Name
Elven archer
Rarity
Common
Keywords
Cost (B / G / R)
0 / 0 / 5
Modes
0
Level
0
Created
19. Aug, 2007
Modified
21. Jun, 2010
Played
2317 / 39657
Discarded
1167 / 14820
Drawn
4305 / 80094

BB code

Effect

If Wall > Enemy wall
Enemy tower: -7
else
Attack: 6

Code

    if ($t->myData()->Wall > $t->hisData()->Wall) {
      $t->hisData()->addTower(-7);
    }
    else {
      $t->hisData()->attack(6);
    }