[SNC] Implemented Vivien on the Hunt

This commit is contained in:
Evan Kranzler 2022-04-08 09:28:13 -04:00
parent 7a8feb5017
commit 5f3cb23476
3 changed files with 167 additions and 0 deletions

View file

@ -0,0 +1,33 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.constants.CardType;
import mage.constants.SubType;
import java.util.Arrays;
/**
* @author TheElk801
*/
public final class RhinoWarriorToken extends TokenImpl {
public RhinoWarriorToken() {
super("Rhino Warrior Token", "4/4 green Rhino Warrior creature token");
cardType.add(CardType.CREATURE);
color.setGreen(true);
subtype.add(SubType.RHINO);
subtype.add(SubType.WARRIOR);
power = new MageInt(4);
toughness = new MageInt(4);
availableImageSetCodes = Arrays.asList("SNC");
}
public RhinoWarriorToken(final RhinoWarriorToken token) {
super(token);
}
public RhinoWarriorToken copy() {
return new RhinoWarriorToken(this);
}
}