[STX] Implemented Inkling Summoning

This commit is contained in:
Evan Kranzler 2021-04-01 09:21:47 -04:00
parent 71607a53ed
commit 01bde741d4
5 changed files with 69 additions and 0 deletions

View file

@ -186,6 +186,7 @@ public enum SubType {
ILLUSION("Illusion", SubTypeSet.CreatureType),
IMP("Imp", SubTypeSet.CreatureType),
INCARNATION("Incarnation", SubTypeSet.CreatureType),
INKLING("Inkling", SubTypeSet.CreatureType),
INSECT("Insect", SubTypeSet.CreatureType),
ITHORIAN("Ithorian", SubTypeSet.CreatureType, true), // Star Wars
// J

View file

@ -0,0 +1,32 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.abilities.keyword.FlyingAbility;
import mage.constants.CardType;
import mage.constants.SubType;
/**
* @author TheElk801
*/
public final class SilverquillToken extends TokenImpl {
public SilverquillToken() {
super("Inkling", "2/1 white and black Inkling creature token with flying");
cardType.add(CardType.CREATURE);
color.setWhite(true);
color.setBlack(true);
subtype.add(SubType.INKLING);
power = new MageInt(2);
toughness = new MageInt(1);
addAbility(FlyingAbility.getInstance());
}
private SilverquillToken(final SilverquillToken token) {
super(token);
}
@Override
public SilverquillToken copy() {
return new SilverquillToken(this);
}
}