[DMU] Implemented Yotia Declares War

This commit is contained in:
Evan Kranzler 2022-08-30 20:50:26 -04:00
parent d83cea8000
commit b14d7d24bb
3 changed files with 161 additions and 0 deletions

View file

@ -0,0 +1,36 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.abilities.keyword.FlyingAbility;
import mage.constants.CardType;
import mage.constants.SubType;
import java.util.Arrays;
/**
* @author TheElk801
*/
public final class OrnithopterToken extends TokenImpl {
public OrnithopterToken() {
super("Ornithopter", "0/2 colorless Thopter artifact creature token with flying named Ornithopter");
cardType.add(CardType.ARTIFACT);
cardType.add(CardType.CREATURE);
subtype.add(SubType.THOPTER);
power = new MageInt(0);
toughness = new MageInt(2);
addAbility(FlyingAbility.getInstance());
availableImageSetCodes = Arrays.asList("DMU");
}
public OrnithopterToken(final OrnithopterToken token) {
super(token);
}
@Override
public OrnithopterToken copy() {
return new OrnithopterToken(this);
}
}