forked from External/mage
[LCI] Implement Corpses of the Lost
This commit is contained in:
parent
c279696fd6
commit
726f72dd12
3 changed files with 106 additions and 0 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue