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;
35 lines
818 B
Java
35 lines
818 B
Java
package mage.game.permanent.token;
|
|
|
|
import mage.MageInt;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
|
|
/**
|
|
* @author spjspj
|
|
*/
|
|
public final class SeedGuardianToken extends TokenImpl {
|
|
|
|
public SeedGuardianToken() {
|
|
this(1);
|
|
}
|
|
|
|
public SeedGuardianToken(int xValue) {
|
|
super("Elemental", "X/X green Elemental creature token");
|
|
setTokenType(1);
|
|
setOriginalExpansionSetCode("OGW");
|
|
cardType.add(CardType.CREATURE);
|
|
color.setGreen(true);
|
|
subtype.add(SubType.ELEMENTAL);
|
|
power = new MageInt(xValue);
|
|
toughness = new MageInt(xValue);
|
|
|
|
}
|
|
|
|
public SeedGuardianToken(final SeedGuardianToken token) {
|
|
super(token);
|
|
}
|
|
|
|
public SeedGuardianToken copy() {
|
|
return new SeedGuardianToken(this);
|
|
}
|
|
}
|