MArcomage

Free multiplayer on-line fantasy card game

Please log in


2 2 2 C
Eternal flame
Eternal flame

Burning

Summons Burning
If last card played was Burning it will be that card

Id
336
Name
Eternal flame
Rarity
Common
Keywords
Cost (B / G / R)
2 / 2 / 2
Modes
0
Level
10
Created
25. Nov, 2007
Modified
25. Nov, 2007
Played
1618 / 16281
Discarded
381 / 4476
Drawn
1583 / 19994

BB code

Effect

Summons Burning
If last card played was Burning it will be that card

Code

    if ($t->myLastCard()->hasKeyword('Burning') && $t->myLastAction() == 'play') {
      $t->nextCard($t->myData()->LastCard[$t->myLastCardIndex()]);
    }
    else {
      $t->nextCard($t->drawCard($t->getList(['keyword'=>'Burning']), $t->myData()->Hand, $t->cardPos(), 'drawCardList'));
    }