mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 13:32:06 -08:00
[STX] Implemented Inkling Summoning
This commit is contained in:
parent
71607a53ed
commit
01bde741d4
5 changed files with 69 additions and 0 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue