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
2495 / 39835
Discarded
1238 / 14891
Drawn
4632 / 80421

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