forked from External/mage
* [M21] added tokens; * [M21] added tokens download support; * Fixed wrong images for some tokens (Angel, Beast, Bird, Cat, etc);
49 lines
1.3 KiB
Java
49 lines
1.3 KiB
Java
package mage.game.permanent.token;
|
|
|
|
import mage.MageInt;
|
|
import mage.abilities.keyword.VigilanceAbility;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
import mage.util.RandomUtil;
|
|
|
|
import java.util.Arrays;
|
|
|
|
/**
|
|
* @author LevelX2
|
|
*/
|
|
public final class KnightToken extends TokenImpl {
|
|
|
|
public KnightToken() {
|
|
super("Knight", "2/2 white Knight creature token with vigilance");
|
|
|
|
cardType.add(CardType.CREATURE);
|
|
color.setWhite(true);
|
|
subtype.add(SubType.KNIGHT);
|
|
power = new MageInt(2);
|
|
toughness = new MageInt(2);
|
|
this.addAbility(VigilanceAbility.getInstance());
|
|
|
|
availableImageSetCodes = Arrays.asList("C13", "C15", "CMA", "DGM", "ORI", "RTR", "M19", "ELD", "M21");
|
|
}
|
|
|
|
public KnightToken(final KnightToken token) {
|
|
super(token);
|
|
}
|
|
|
|
public KnightToken copy() {
|
|
return new KnightToken(this);
|
|
}
|
|
|
|
@Override
|
|
public void setExpansionSetCodeForImage(String code) {
|
|
super.setExpansionSetCodeForImage(code);
|
|
|
|
if (getOriginalExpansionSetCode() != null && getOriginalExpansionSetCode().equals("C15")) {
|
|
setTokenType(2);
|
|
}
|
|
|
|
if (getOriginalExpansionSetCode() != null && getOriginalExpansionSetCode().equals("DOM")) {
|
|
this.setTokenType(RandomUtil.nextInt(2) + 1);
|
|
}
|
|
}
|
|
}
|