MArcomage

Free multiplayer on-line fantasy card game

Please log in


7 9 U
Night demon
Night demon

Demonic

Attack: 20
If matching card in opponent's hand is unplayable
Discard the matching card

Id
732
Name
Night demon
Rarity
Uncommon
Keywords
Cost (B / G / R)
0 / 7 / 9
Modes
0
Level
10
Created
1. Jan, 2015
Modified
1. Jan, 2015
Played
152 / 688
Discarded
70 / 239
Drawn
278 / 1165

BB code

Effect

Attack: 20
If matching card in opponent's hand is unplayable
Discard the matching card

Code

    $t->hisData()->attack(20);
    $hisCard = $t->getCard($t->hisData()->Hand[$t->cardPos()]);
    if ($hisCard->getResources('Bricks') > $t->hisData()->Bricks || $hisCard->getResources('Gems') > $t->hisData()->Gems
      || $hisCard->getResources('Recruits') > $t->hisData()->Recruits) {
      $t->setCard('his', $t->cardPos(), $t->drawCard($t->hisDeck(), $t->hisData()->Hand, $t->cardPos(), 'drawCardDifferent'));
    }