MArcomage

Free multiplayer on-line fantasy card game

Please log in


12 U
Flame obelisk
Flame obelisk

Burning

Tower: +15
Replace adjacent cards with Burning

Id
571
Name
Flame obelisk
Rarity
Uncommon
Keywords
Cost (B / G / R)
12 / 0 / 0
Modes
0
Level
10
Created
21. Jun, 2010
Modified
17. Dec, 2016
Played
650 / 6523
Discarded
118 / 1416
Drawn
887 / 9373

BB code

Effect

Tower: +15
Replace adjacent cards with Burning

Code

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