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;
40 lines
987 B
Java
40 lines
987 B
Java
package mage.game.permanent.token;
|
|
|
|
import mage.MageInt;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
|
|
import java.util.Arrays;
|
|
|
|
/**
|
|
* @author LoneFox
|
|
*/
|
|
public final class HumanToken extends TokenImpl {
|
|
|
|
public HumanToken() {
|
|
super("Human", "1/1 white Human creature token");
|
|
cardType.add(CardType.CREATURE);
|
|
color.setWhite(true);
|
|
subtype.add(SubType.HUMAN);
|
|
power = new MageInt(1);
|
|
toughness = new MageInt(1);
|
|
availableImageSetCodes.addAll(Arrays.asList("DKA", "AVR", "FNMP", "RNA", "ELD", "C19"));
|
|
}
|
|
|
|
public HumanToken(final HumanToken token) {
|
|
super(token);
|
|
}
|
|
|
|
@Override
|
|
public HumanToken copy() {
|
|
return new HumanToken(this);
|
|
}
|
|
|
|
@Override
|
|
public void setExpansionSetCodeForImage(String code) {
|
|
super.setExpansionSetCodeForImage(code);
|
|
if (getOriginalExpansionSetCode().equals("AVR")) {
|
|
this.setTokenType(1);
|
|
}
|
|
}
|
|
}
|