MArcomage

Free multiplayer on-line fantasy card game

Please log in


6 C
Sniper
Sniper

Soldier Far sight

Attack: 6
If #Quick + #Swift in opponent's hand > 0
Enemy tower: -6

Id
534
Name
Sniper
Rarity
Common
Keywords
Cost (B / G / R)
0 / 0 / 6
Modes
0
Level
10
Created
21. Jun, 2010
Modified
10. Sep, 2010
Played
2159 / 13667
Discarded
1272 / 8715
Drawn
4222 / 31419

BB code

Effect

Attack: 6
If #Quick + #Swift in opponent's hand > 0
Enemy tower: -6

Code

    $t->hisData()->attack(6);
    if ($t->keywordCount($t->hisData()->Hand, 'Quick') > 0 || $t->keywordCount($t->hisData()->Hand, 'Swift') > 0) {
      $t->hisData()->addTower(-6);
    }