[OTJ] Implement Rise of the Varmints

This commit is contained in:
Susucre 2024-03-29 19:40:23 +01:00
parent 9b7f3b7675
commit 8ffaaedaf3
4 changed files with 73 additions and 0 deletions

View file

@ -408,6 +408,7 @@ public enum SubType {
UNICORN("Unicorn", SubTypeSet.CreatureType),
// V
VAMPIRE("Vampire", SubTypeSet.CreatureType),
VARMINT("Varmint", SubTypeSet.CreatureType),
VEDALKEN("Vedalken", SubTypeSet.CreatureType),
VIASHINO("Viashino", SubTypeSet.CreatureType),
VILLAIN("Villain", SubTypeSet.CreatureType, true), // Unstable

View file

@ -0,0 +1,29 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.constants.CardType;
import mage.constants.SubType;
/**
* @author Susucr
*/
public final class VarmintToken extends TokenImpl {
public VarmintToken() {
super("Varmint Token", "2/1 green Varmint creature token");
cardType.add(CardType.CREATURE);
color.setGreen(true);
subtype.add(SubType.VARMINT);
power = new MageInt(2);
toughness = new MageInt(1);
}
private VarmintToken(final VarmintToken token) {
super(token);
}
@Override
public VarmintToken copy() {
return new VarmintToken(this);
}
}