MArcomage

Free multiplayer on-line fantasy card game

Please log in


5 5 5 R
Gate of Babylon
Gate of Babylon

Durable

Replace adjacent cards with rare cards

Id
704
Name
Gate of Babylon
Rarity
Rare
Keywords
Cost (B / G / R)
5 / 5 / 5
Modes
0
Level
10
Created
1. Jan, 2013
Modified
17. Dec, 2016
Played
219 / 2158
Discarded
76 / 628
Drawn
188 / 1698

BB code

Effect

Replace adjacent cards with rare cards

Code

    if ($t->cardPos() > 1) {
      $t->setCard('my', $t->cardPos() - 1, $t->drawCard($t->getList(['rarity'=>'Rare']), $t->myData()->Hand, $t->cardPos() - 1, 'drawCardList'));
    }
    if ($t->cardPos() < $t->handSize()) {
      $t->setCard('my', $t->cardPos() + 1, $t->drawCard($t->getList(['rarity'=>'Rare']), $t->myData()->Hand, $t->cardPos() + 1, 'drawCardList'));
    }