mirror of
https://github.com/magefree/mage.git
synced 2026-01-10 21:02:08 -08:00
[M3C] Implement Angelic Aberration
This commit is contained in:
parent
e0184197c8
commit
5d0da3a55e
3 changed files with 149 additions and 0 deletions
|
|
@ -0,0 +1,36 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.keyword.FlyingAbility;
|
||||
import mage.abilities.keyword.VigilanceAbility;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
/**
|
||||
* @author PurpleCrowbar
|
||||
*/
|
||||
public final class EldraziAngelToken extends TokenImpl {
|
||||
|
||||
public EldraziAngelToken() {
|
||||
super("Eldrazi Angel", "4/4 colorless Eldrazi Angel creature token with flying and vigilance");
|
||||
cardType.add(CardType.CREATURE);
|
||||
subtype.add(SubType.ELDRAZI, SubType.ANGEL);
|
||||
power = new MageInt(4);
|
||||
toughness = new MageInt(4);
|
||||
|
||||
// Flying
|
||||
this.addAbility(FlyingAbility.getInstance());
|
||||
|
||||
// Vigilance
|
||||
this.addAbility(VigilanceAbility.getInstance());
|
||||
}
|
||||
|
||||
private EldraziAngelToken(final EldraziAngelToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
@Override
|
||||
public EldraziAngelToken copy() {
|
||||
return new EldraziAngelToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue