mirror of
https://github.com/magefree/mage.git
synced 2025-12-27 14:02:05 -08:00
[OTJ] Implement Bovine Intervention
This commit is contained in:
parent
566a950e20
commit
e465eab1bc
3 changed files with 78 additions and 0 deletions
31
Mage/src/main/java/mage/game/permanent/token/Ox22Token.java
Normal file
31
Mage/src/main/java/mage/game/permanent/token/Ox22Token.java
Normal 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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue