[ZNR] Implemented Felidar Retreat

This commit is contained in:
Evan Kranzler 2020-09-08 10:32:42 -04:00
parent 1554b12a3e
commit 895453169b
3 changed files with 83 additions and 0 deletions

View file

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