mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 13:32:06 -08:00
[DMU] Implemented Yotia Declares War
This commit is contained in:
parent
d83cea8000
commit
b14d7d24bb
3 changed files with 161 additions and 0 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue