Shadow fairy
If #Holy in opponent's hand > 0
Enemy tower: -1
else
Steals 1 stock
Cost (B / G / R)
0 / 1 / 0
BB code
Effect
If #Holy in opponent's hand > 0
Enemy tower: -1
else
Steals 1 stock
Code
if ($t->keywordCount($t->hisData()->Hand, 'Holy') > 0) {
$t->hisData()->addTower(-1);
}
else {
$t->stealStock('my', 1);
}