mirror of
https://github.com/magefree/mage.git
synced 2025-12-21 11:02:00 -08:00
Implemented Transmogrifying Wand
This commit is contained in:
parent
c59457b2e5
commit
266a7cdb85
4 changed files with 139 additions and 17 deletions
32
Mage/src/main/java/mage/game/permanent/token/OxToken.java
Normal file
32
Mage/src/main/java/mage/game/permanent/token/OxToken.java
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author BetaSteward_at_googlemail.com
|
||||
*/
|
||||
public final class OxToken extends TokenImpl {
|
||||
|
||||
public OxToken() {
|
||||
super("Ox", "2/4 white Ox creature token");
|
||||
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setWhite(true);
|
||||
subtype.add(SubType.OX);
|
||||
power = new MageInt(2);
|
||||
toughness = new MageInt(4);
|
||||
|
||||
}
|
||||
|
||||
public OxToken(final OxToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
@Override
|
||||
public OxToken copy() {
|
||||
return new OxToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue