forked from External/mage
- fixed wrong Elemental token images in BFZ's cards (Omnath, Locus of Rage and Seed Guardian); - fixed wrong Elemental token image in OGW's cards (Chandra Flamecaller); - removed unnecessary tokens from AKH, HOU and EMN (card duplicates); - fixed missing Goblin token in DOM; - fixed missing Bird Illusion token in GRN; - fixed same Zombie token in C19;
33 lines
796 B
Java
33 lines
796 B
Java
package mage.game.permanent.token;
|
|
|
|
import mage.MageInt;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
|
|
/**
|
|
* @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);
|
|
}
|
|
|
|
public OmnathElementalToken(final OmnathElementalToken token) {
|
|
super(token);
|
|
}
|
|
|
|
public OmnathElementalToken copy() {
|
|
return new OmnathElementalToken(this);
|
|
}
|
|
|
|
}
|