Eternal flame
Summons Burning
If last card played was Burning it will be that card
Cost (B / G / R)
2 / 2 / 2
BB code
Effect
Summons Burning
If last card played was Burning it will be that card
Code
if ($t->myLastCard()->hasKeyword('Burning') && $t->myLastAction() == 'play') {
$t->nextCard($t->myData()->LastCard[$t->myLastCardIndex()]);
}
else {
$t->nextCard($t->drawCard($t->getList(['keyword'=>'Burning']), $t->myData()->Hand, $t->cardPos(), 'drawCardList'));
}