forked from External/mage
40 lines
1 KiB
Java
40 lines
1 KiB
Java
|
|
|
|
package mage.game.permanent.token;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
import mage.MageInt;
|
|
import mage.abilities.keyword.FlyingAbility;
|
|
import mage.abilities.keyword.IndestructibleAbility;
|
|
import mage.constants.SuperType;
|
|
|
|
/**
|
|
*
|
|
* @author spjspj
|
|
*/
|
|
public final class MaritLageToken extends TokenImpl {
|
|
|
|
public MaritLageToken() {
|
|
super("Marit Lage", "legendary 20/20 black Avatar creature token with flying and indestructible named Marit Lage");
|
|
this.setOriginalExpansionSetCode("CSP");
|
|
cardType.add(CardType.CREATURE);
|
|
subtype.add(SubType.AVATAR);
|
|
addSuperType(SuperType.LEGENDARY);
|
|
|
|
color.setBlack(true);
|
|
power = new MageInt(20);
|
|
toughness = new MageInt(20);
|
|
|
|
this.addAbility(FlyingAbility.getInstance());
|
|
this.addAbility(IndestructibleAbility.getInstance());
|
|
|
|
}
|
|
|
|
public MaritLageToken(final MaritLageToken token) {
|
|
super(token);
|
|
}
|
|
|
|
public MaritLageToken copy() {
|
|
return new MaritLageToken(this);
|
|
}
|
|
}
|