Balrog
Attack: 50
Replace Alliance, Mage, Runic and Soldier in opponent's hand with Searing fire
Cost (B / G / R)
0 / 20 / 20
BB code
Effect
Attack: 50
Replace Alliance, Mage, Runic and Soldier in opponent's hand with Searing fire
Code
$t->hisData()->attack(50);
for ($i = 1; $i <= $t->handSize(); $i++) {
$his_card = $t->getCard($t->hisData()->Hand[$i]);
if ($his_card->hasKeyword('Alliance') || $his_card->hasKeyword('Mage') || $his_card->hasKeyword('Runic') || $his_card->hasKeyword('Soldier')) {
$t->setCard('his', $i, 248, ['reveal' => true]);
}
}