[LTR] Implement Dunland Crebain

This commit is contained in:
theelk801 2023-05-30 18:27:34 -04:00
parent 82073bba73
commit b9f31eb937
27 changed files with 213 additions and 72 deletions

View file

@ -0,0 +1,31 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.constants.CardType;
import mage.constants.SubType;
/**
* @author TheElk801
*/
public final class OrcArmyToken extends TokenImpl {
public OrcArmyToken() {
super("Orc Army Token", "0/0 black Orc Army creature token");
cardType.add(CardType.CREATURE);
color.setBlack(true);
subtype.add(SubType.ORC);
subtype.add(SubType.ARMY);
power = new MageInt(0);
toughness = new MageInt(0);
}
private OrcArmyToken(final OrcArmyToken token) {
super(token);
}
@Override
public OrcArmyToken copy() {
return new OrcArmyToken(this);
}
}