Watchtower
Tower: +16
Enemy tower: -6
If #Far sight in hand > 0 and #Siege in hand > 0
Enemy tower: -10
Cost (B / G / R)
18 / 0 / 13
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);
}