MArcomage

Free multiplayer on-line fantasy card game

Please log in


16 R
Avatar of vengeance
Avatar of vengeance

Demonic Rebirth

Move selected card from opponent's hand to matching position in hand (can't discard self)
If targeting self
Gems: +16

Id
280
Name
Avatar of vengeance
Rarity
Rare
Keywords
Cost (B / G / R)
0 / 16 / 0
Modes
8
Level
10
Created
1. May, 2006
Modified
29. Oct, 2016
Played
142 / 1853
Discarded
68 / 1082
Drawn
198 / 2453

BB code

Effect

Move selected card from opponent's hand to matching position in hand (can't discard self)
If targeting self
Gems: +16

Code

    if ($t->mode() == $t->cardPos()) {
      $t->myData()->addGems(16);
    }
    else {
      $t->setCard('my', $t->mode(), $t->hisData()->Hand[$t->mode()], ['reveal' => true]);
    }
    $t->setCard('his', $t->mode(), $t->drawCard($t->hisDeck(), $t->hisData()->Hand, $t->mode(), 'drawCardDifferent'));