[SNC] Implemented Exotic Pets

This commit is contained in:
Evan Kranzler 2022-04-10 21:40:41 -04:00
parent 1ed3bce6e0
commit a34747257c
4 changed files with 156 additions and 0 deletions

View file

@ -0,0 +1,31 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.abilities.keyword.CantBeBlockedSourceAbility;
import mage.constants.CardType;
import mage.constants.SubType;
/**
* @author TheElk801
*/
public final class FishToken extends TokenImpl {
public FishToken() {
super("Fish Token", "1/1 blue Fish creature token with \"This creature can't be blocked.\"");
cardType.add(CardType.CREATURE);
subtype.add(SubType.FISH);
color.setBlue(true);
power = new MageInt(1);
toughness = new MageInt(1);
addAbility(new CantBeBlockedSourceAbility("this creature can't be blocked"));
}
public FishToken(final FishToken token) {
super(token);
}
public FishToken copy() {
return new FishToken(this);
}
}