Sellsword
            
               
               
            
            Attack: 30
If not from your deck
Attack: 60
else
Recruits: +20
           
          
          
          
          
          
            Cost (B / G / R)
            0 / 0 / 40
           
          
          
          
          
          
          
          
          BB code
          
            
          
          Effect
          Attack: 30
If not from your deck
Attack: 60
else
Recruits: +20
          Code
          
            
    $t->hisData()->attack(30);
    if (!in_array($t->card()->id(), $t->myDeck()->Rare)) {
      $t->hisData()->attack(60);
    }
    else {
      $t->myData()->addRecruits(20);
    }