MArcomage

Free multiplayer on-line fantasy card game

Please log in


20 20 R
Balrog
Balrog

Burning Demonic

Attack: 50
Replace Alliance, Mage, Runic and Soldier in opponent's hand with Searing fire

Id
722
Name
Balrog
Rarity
Rare
Keywords
Cost (B / G / R)
0 / 20 / 20
Modes
0
Level
10
Created
1. Jan, 2014
Modified
26. Sep, 2015
Played
598 / 1464
Discarded
88 / 273
Drawn
849 / 2156

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]);
      }
    }