forked from External/mage
37 lines
891 B
Java
37 lines
891 B
Java
package mage.game.permanent.token;
|
|
|
|
import mage.MageInt;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
|
|
import java.util.Arrays;
|
|
|
|
/**
|
|
* @author spjspj
|
|
*/
|
|
public final class OmnathElementalToken extends TokenImpl {
|
|
|
|
public OmnathElementalToken() {
|
|
super("Elemental", "5/5 red and green Elemental creature token");
|
|
setTokenType(1);
|
|
setOriginalExpansionSetCode("BFZ");
|
|
cardType.add(CardType.CREATURE);
|
|
subtype.add(SubType.ELEMENTAL);
|
|
|
|
color.setRed(true);
|
|
color.setGreen(true);
|
|
power = new MageInt(5);
|
|
toughness = new MageInt(5);
|
|
|
|
availableImageSetCodes.addAll(Arrays.asList("BFZ", "ZNC"));
|
|
}
|
|
|
|
public OmnathElementalToken(final OmnathElementalToken token) {
|
|
super(token);
|
|
}
|
|
|
|
public OmnathElementalToken copy() {
|
|
return new OmnathElementalToken(this);
|
|
}
|
|
|
|
}
|