[ZNR] Implemented Attended Healer

This commit is contained in:
Evan Kranzler 2020-09-07 16:08:19 -04:00
parent 0c9b7f76eb
commit 9cf96bd391
3 changed files with 140 additions and 0 deletions

View file

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