[LCI] Implement Corpses of the Lost

This commit is contained in:
Susucre 2023-11-01 15:44:59 +01:00
parent c279696fd6
commit 726f72dd12
3 changed files with 106 additions and 0 deletions

View file

@ -0,0 +1,29 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.constants.CardType;
import mage.constants.SubType;
/**
* @author Susucr
*/
public final class SkeletonPirateToken extends TokenImpl {
public SkeletonPirateToken() {
super("Skeleton Pirate Token", "2/2 black Skeleton Pirate creature token");
cardType.add(CardType.CREATURE);
this.subtype.add(SubType.SKELETON);
this.subtype.add(SubType.PIRATE);
color.setBlack(true);
power = new MageInt(2);
toughness = new MageInt(2);
}
protected SkeletonPirateToken(final SkeletonPirateToken token) {
super(token);
}
public SkeletonPirateToken copy() {
return new SkeletonPirateToken(this);
}
}