[MKM] Implement Intrude on the Mind (#11825)

This commit is contained in:
Matthew Wilson 2024-02-23 05:18:16 +02:00 committed by GitHub
parent b0cb5222ce
commit 00deb7ac8a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 191 additions and 0 deletions

View file

@ -0,0 +1,29 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.abilities.keyword.FlyingAbility;
import mage.constants.CardType;
import mage.constants.SubType;
public class Thopter00ColorlessToken extends TokenImpl {
public Thopter00ColorlessToken() {
super("Thopter Token", "0/0 colorless Thopter artifact creature token with flying");
cardType.add(CardType.ARTIFACT);
cardType.add(CardType.CREATURE);
subtype.add(SubType.THOPTER);
power = new MageInt(0);
toughness = new MageInt(0);
addAbility(FlyingAbility.getInstance());
}
private Thopter00ColorlessToken(final Thopter00ColorlessToken token) {
super(token);
}
@Override
public Thopter00ColorlessToken copy() {
return new Thopter00ColorlessToken(this);
}
}