Lighthouse
Tower: +6
If matching card is Revealed
Tower: +6
else
Reveal matching card
Cost (B / G / R)
10 / 0 / 0
BB code
Effect
Tower: +6
If matching card is Revealed
Tower: +6
else
Reveal matching card
Code
$t->myData()->addTower(6);
if (!$t->hiddenCards() || isset($t->hisData()->Revealed[$t->cardPos()])) {
$t->myData()->addTower(6);
}
else {
$t->revealCard('his', $t->cardPos());
}