Nightmare owl
Attack: 10
If last card was discarded
Summons a rare card
Cost (B / G / R)
0 / 10 / 0
BB code
Effect
Attack: 10
If last card was discarded
Summons a rare card
Code
$t->hisData()->attack(10);
if ($t->myLastAction() == 'discard') {
$t->nextCard($t->drawCard($t->getList(['rarity'=>'Rare']), $t->myData()->Hand, $t->cardPos(), 'drawCardList'));
}