[MH3] Implement Ajani Nacatl Pariah

This commit is contained in:
Susucre 2024-04-05 16:05:14 +02:00
parent 812d30aa07
commit 4b60e82b83
4 changed files with 285 additions and 0 deletions

View file

@ -0,0 +1,30 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.constants.CardType;
import mage.constants.SubType;
/**
* @author Susucr
*/
public final class CatWarrior21Token extends TokenImpl {
public CatWarrior21Token() {
super("Cat Warrior Token", "2/1 white Cat Warrior creature token");
this.power = new MageInt(2);
this.toughness = new MageInt(1);
this.color.setWhite(true);
this.subtype.add(SubType.CAT);
this.subtype.add(SubType.WARRIOR);
this.cardType.add(CardType.CREATURE);
}
private CatWarrior21Token(final CatWarrior21Token token) {
super(token);
}
public CatWarrior21Token copy() {
return new CatWarrior21Token(this);
}
}