[CLB] Implemented Contraband Livestock

This commit is contained in:
Evan Kranzler 2022-05-31 09:19:33 -04:00
parent c3adff6bc9
commit eee9fb9f25
3 changed files with 112 additions and 0 deletions

View file

@ -0,0 +1,30 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.constants.CardType;
import mage.constants.SubType;
/**
* @author TheElk801
*/
public final class OxGreenToken extends TokenImpl {
public OxGreenToken() {
super("Ox Token", "4/4 green Ox creature token");
cardType.add(CardType.CREATURE);
color.setGreen(true);
subtype.add(SubType.OX);
power = new MageInt(4);
toughness = new MageInt(4);
}
public OxGreenToken(final OxGreenToken token) {
super(token);
}
@Override
public OxGreenToken copy() {
return new OxGreenToken(this);
}
}