MArcomage

Free multiplayer on-line fantasy card game

Please log in


26 R
Shadow warrior
Shadow warrior

Banish

Attack: 25
Replace a card in hand with self
If last card played wasn't Shadow warrior
Attack: 30

Id
740
Name
Shadow warrior
Rarity
Rare
Keywords
Cost (B / G / R)
0 / 0 / 26
Modes
8
Level
10
Created
1. Jan, 2015
Modified
29. Oct, 2016
Played
478 / 911
Discarded
142 / 257
Drawn
426 / 773

BB code

Effect

Attack: 25
Replace a card in hand with self
If last card played wasn't Shadow warrior
Attack: 30

Code

    $t->hisData()->attack(25); 
    if ($t->myLastAction() != 'play' || $t->myLastCard()->id() != $t->card()->id()) {
      $t->hisData()->attack(30); 
    }
    if ($t->mode() == $t->cardPos()) {
      $t->noNextCard();
    }
    else {
      $t->replaceCard('my', $t->mode(), $t->card()->id());
    }