[MID] Implemented Rise of the Ants

This commit is contained in:
Evan Kranzler 2021-09-12 10:00:35 -04:00
parent 4838e7ff34
commit 72cb83e615
3 changed files with 67 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 RiseOfTheAntsToken extends TokenImpl {
public RiseOfTheAntsToken() {
super("Insect", "3/3 green Insect creature token");
cardType.add(CardType.CREATURE);
color.setGreen(true);
subtype.add(SubType.INSECT);
power = new MageInt(3);
toughness = new MageInt(3);
}
public RiseOfTheAntsToken(final RiseOfTheAntsToken token) {
super(token);
}
public RiseOfTheAntsToken copy() {
return new RiseOfTheAntsToken(this);
}
}