mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 13:02:06 -08:00
[CLB] Implemented Contraband Livestock
This commit is contained in:
parent
c3adff6bc9
commit
eee9fb9f25
3 changed files with 112 additions and 0 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue