mirror of
https://github.com/magefree/mage.git
synced 2025-12-30 07:22:03 -08:00
[OTJ] Implement Rise of the Varmints
This commit is contained in:
parent
9b7f3b7675
commit
8ffaaedaf3
4 changed files with 73 additions and 0 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue