[OTJ] Implement Bovine Intervention

This commit is contained in:
Susucre 2024-03-27 22:27:11 +01:00
parent 566a950e20
commit e465eab1bc
3 changed files with 78 additions and 0 deletions

View file

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