forked from External/mage
[MOM] Implement Baral and Kari Zev
This commit is contained in:
parent
b511bcf883
commit
c1073ee801
3 changed files with 189 additions and 0 deletions
|
|
@ -0,0 +1,35 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
import mage.constants.SuperType;
|
||||
|
||||
import java.util.Arrays;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class FirstMateRagavanToken extends TokenImpl {
|
||||
|
||||
public FirstMateRagavanToken() {
|
||||
super("First Mate Ragavan", "First Mate Ragavan, a legendary 2/1 red Monkey Pirate creature token");
|
||||
this.supertype.add(SuperType.LEGENDARY);
|
||||
this.power = new MageInt(2);
|
||||
this.toughness = new MageInt(1);
|
||||
this.color.setRed(true);
|
||||
this.subtype.add(SubType.MONKEY);
|
||||
this.subtype.add(SubType.PIRATE);
|
||||
this.cardType.add(CardType.CREATURE);
|
||||
|
||||
availableImageSetCodes = Arrays.asList("MOM");
|
||||
}
|
||||
|
||||
public FirstMateRagavanToken(final FirstMateRagavanToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public FirstMateRagavanToken copy() {
|
||||
return new FirstMateRagavanToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue