Temptress
Attack: 30
If last card played was a rare
Enemy stock: -10
If last card played was Demonic
Attack: 20
Cost (B / G / R)
15 / 0 / 15
BB code
Effect
Attack: 30
If last card played was a rare
Enemy stock: -10
If last card played was Demonic
Attack: 20
Code
$t->hisData()->attack(30);
if ($t->myLastCard()->getRarity() == 'Rare') {
$t->hisData()->addStock(-10);
}
if ($t->myLastCard()->hasKeyword('Demonic')) {
$t->hisData()->attack(20);
}