Shadow warrior
            
               
            
            Attack: 25
Replace a card in hand with self
If last card played wasn't Shadow warrior
Attack: 30
           
          
          
          
          
          
            Cost (B / G / R)
            0 / 0 / 26
           
          
          
          
          
          
          
          
          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());
    }