forked from External/mage
40 lines
848 B
Java
40 lines
848 B
Java
|
|
package mage.game.permanent.token;
|
|
|
|
import mage.MageInt;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
|
|
/**
|
|
*
|
|
* @author fireshoes
|
|
*/
|
|
public final class BeastToken3 extends TokenImpl {
|
|
|
|
public BeastToken3() {
|
|
this(null, 0);
|
|
}
|
|
|
|
public BeastToken3(String setCode) {
|
|
this(setCode, 0);
|
|
}
|
|
|
|
public BeastToken3(String setCode, int tokenType) {
|
|
super("Beast", "4/2 green Beast creature token");
|
|
setOriginalExpansionSetCode("AKH");
|
|
cardType.add(CardType.CREATURE);
|
|
color.setGreen(true);
|
|
subtype.add(SubType.BEAST);
|
|
power = new MageInt(4);
|
|
toughness = new MageInt(2);
|
|
}
|
|
|
|
public BeastToken3(final BeastToken3 token) {
|
|
super(token);
|
|
}
|
|
|
|
@Override
|
|
public BeastToken3 copy() {
|
|
return new BeastToken3(this);
|
|
}
|
|
}
|