MArcomage

Free multiplayer on-line fantasy card game

Please log in


5 C
Magic portal
Magic portal

Move selected card in hand to current position
Summons uncommon card from your deck to selected position

Id
490
Name
Magic portal
Rarity
Common
Keywords
Cost (B / G / R)
0 / 5 / 0
Modes
8
Level
9
Created
24. Oct, 2009
Modified
1. Aug, 2015
Played
3190 / 41047
Discarded
2763 / 23019
Drawn
7215 / 78160

BB code

Effect

Move selected card in hand to current position
Summons uncommon card from your deck to selected position

Code

    if ($t->mode() != $t->cardPos()) {
      $t->setCard('my', $t->cardPos(), $t->drawCard($t->myDeck()->Uncommon, $t->myData()->Hand, $t->mode(), 'drawCardList'));
      $t->myData()->switchCards($t->cardPos(), $t->mode());
      $t->noNextCard();
    }
    else {
      $t->nextCard($t->drawCard($t->myDeck()->Uncommon, $t->myData()->Hand, $t->cardPos(), 'drawCardList'));
    }