[BIG] Implement Greed's Gambit

This commit is contained in:
theelk801 2024-04-04 14:13:24 -04:00
parent 6bce50dd6f
commit b9b9889a87
3 changed files with 88 additions and 0 deletions

View file

@ -0,0 +1,30 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.abilities.keyword.FlyingAbility;
import mage.constants.CardType;
import mage.constants.SubType;
/**
* @author TheElk801
*/
public final class Bat21Token extends TokenImpl {
public Bat21Token() {
super("Bat Token", "2/1 black Bat creature token with flying");
cardType.add(CardType.CREATURE);
color.setBlack(true);
subtype.add(SubType.BAT);
power = new MageInt(2);
toughness = new MageInt(1);
this.addAbility(FlyingAbility.getInstance());
}
private Bat21Token(final Bat21Token token) {
super(token);
}
public Bat21Token copy() {
return new Bat21Token(this);
}
}