Einzbern castle
Tower: +12
Wall: +3N
N = #Illusion + #rare cards in hand
Cost (B / G / R)
17 / 0 / 0
BB code
Effect
Tower: +12
Wall: +3N
N = #Illusion + #rare cards in hand
Code
$illusions = $t->keywordCount($t->myData()->Hand, 'Illusion');
$t->myData()->addTower(12);
$rares = 0;
for ($i = 1; $i <= $t->handSize(); $i++) {
if ($i != $t->cardPos() && $t->getCard($t->myData()->Hand[$i])->getRarity() == 'Rare') {
$rares++;
}
}
$t->myData()->addWall(3 * ($illusions + $rares));