Sniper
Attack: 6
If #Quick + #Swift in opponent's hand > 0
Enemy tower: -6
Cost (B / G / R)
0 / 0 / 6
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);
}