mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 21:29:17 -08:00
[DSK] Implement Overlord of the Mistmoors
This commit is contained in:
parent
dc4bc6ccb2
commit
94566cee69
3 changed files with 75 additions and 0 deletions
|
|
@ -0,0 +1,31 @@
|
|||
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 InsectWhiteToken extends TokenImpl {
|
||||
|
||||
public InsectWhiteToken() {
|
||||
super("Insect Token", "2/1 white Insect creature token with flying");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setWhite(true);
|
||||
subtype.add(SubType.INSECT);
|
||||
power = new MageInt(2);
|
||||
toughness = new MageInt(1);
|
||||
|
||||
this.addAbility(FlyingAbility.getInstance());
|
||||
}
|
||||
|
||||
private InsectWhiteToken(final InsectWhiteToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public InsectWhiteToken copy() {
|
||||
return new InsectWhiteToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue