MArcomage

Free multiplayer on-line fantasy card game

Please log in


13 U
Elemental storm
Elemental storm

Destruction

Replace matching card in opponent's hand and its neigbouring cards with Wind

Id
497
Name
Elemental storm
Rarity
Uncommon
Keywords
Cost (B / G / R)
0 / 13 / 0
Modes
0
Level
10
Created
20. Jan, 2010
Modified
26. Sep, 2015
Played
3322 / 18342
Discarded
878 / 4971
Drawn
4982 / 27061

BB code

Effect

Replace matching card in opponent's hand and its neigbouring cards with Wind

Code

    $t->setCard('his', $t->cardPos(), 247, ['reveal' => true]);
    if ($t->cardPos() > 1) {
      $t->setCard('his', $t->cardPos() - 1, 247, ['reveal' => true]);
    }
    if ($t->cardPos() < $t->handSize()) {
      $t->setCard('his', $t->cardPos() + 1, 247, ['reveal' => true]);
    }