[LTR] Implement Saradoc, Master of Buckland

This commit is contained in:
theelk801 2023-06-11 22:18:20 -04:00
parent d4307395b1
commit b114e77a3a
3 changed files with 108 additions and 0 deletions

View file

@ -0,0 +1,29 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.constants.CardType;
import mage.constants.SubType;
/**
* @author TheElk801
*/
public final class HalflingToken extends TokenImpl {
public HalflingToken() {
super("Halfling Token", "1/1 white Halfling creature token");
cardType.add(CardType.CREATURE);
color.setWhite(true);
subtype.add(SubType.HALFLING);
power = new MageInt(1);
toughness = new MageInt(1);
}
public HalflingToken(final HalflingToken token) {
super(token);
}
@Override
public HalflingToken copy() {
return new HalflingToken(this);
}
}