[VOW] Implemented Rural Recruit

This commit is contained in:
Evan Kranzler 2021-11-05 20:18:36 -04:00
parent b5b6c837f1
commit 12588ea40b
3 changed files with 72 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 Boar3Token extends TokenImpl {
public Boar3Token() {
super("Boar", "3/1 green Boar creature token");
cardType.add(CardType.CREATURE);
color.setGreen(true);
subtype.add(SubType.BOAR);
power = new MageInt(3);
toughness = new MageInt(1);
}
public Boar3Token(final Boar3Token token) {
super(token);
}
public Boar3Token copy() {
return new Boar3Token(this);
}
}