MArcomage

Free multiplayer on-line fantasy card game

Please log in


18 13 U
Watchtower
Watchtower

Tower: +16
Enemy tower: -6
If #Far sight in hand > 0 and #Siege in hand > 0
Enemy tower: -10

Id
436
Name
Watchtower
Rarity
Uncommon
Keywords
Cost (B / G / R)
18 / 0 / 13
Modes
0
Level
8
Created
11. Apr, 2009
Modified
1. Aug, 2015
Played
497 / 8358
Discarded
76 / 1813
Drawn
845 / 14303

BB code

Effect

Tower: +16
Enemy tower: -6
If #Far sight in hand > 0 and #Siege in hand > 0
Enemy tower: -10

Code

    $t->myData()->addTower(16);
    if ($t->keywordCount($t->myData()->Hand, 'Far sight') > 0 && $t->keywordCount($t->myData()->Hand, 'Siege') > 0) {
      $t->hisData()->addTower(-16);
    }
    else {
      $t->hisData()->addTower(-6);
    }