mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 02:30:08 -08:00
[EOE] Implement Pinnacle Emissary
This commit is contained in:
parent
2ecea75b10
commit
59d32c47ea
3 changed files with 80 additions and 0 deletions
|
|
@ -0,0 +1,34 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.common.CanBlockOnlyFlyingAbility;
|
||||
import mage.abilities.keyword.FlyingAbility;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class DroneToken2 extends TokenImpl {
|
||||
|
||||
public DroneToken2() {
|
||||
super("Drone Token", "1/1 colorless Drone artifact creature token with flying and \"This token can block only creatures with flying.\"");
|
||||
cardType.add(CardType.ARTIFACT);
|
||||
cardType.add(CardType.CREATURE);
|
||||
subtype.add(SubType.DRONE);
|
||||
power = new MageInt(1);
|
||||
toughness = new MageInt(1);
|
||||
|
||||
addAbility(FlyingAbility.getInstance());
|
||||
addAbility(new CanBlockOnlyFlyingAbility());
|
||||
}
|
||||
|
||||
private DroneToken2(final DroneToken2 token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
@Override
|
||||
public DroneToken2 copy() {
|
||||
return new DroneToken2(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue