[MKM] Implement Case of the Stashed Skeleton (#11729)

* [MKM] Implement Case of the Stashed Skeleton

* Address PR comments

---------

Co-authored-by: Matthew Wilson <matthew_w@vaadin.com>
This commit is contained in:
Matthew Wilson 2024-01-31 06:49:17 +02:00 committed by GitHub
parent 40d48d49fb
commit af622a235e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 154 additions and 0 deletions

View file

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