mirror of
https://github.com/magefree/mage.git
synced 2026-01-09 12:22:10 -08:00
[CMM] Implement Battle at the Helvault
This commit is contained in:
parent
56fafef8e5
commit
03320d1752
3 changed files with 128 additions and 0 deletions
|
|
@ -0,0 +1,37 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.keyword.FlyingAbility;
|
||||
import mage.abilities.keyword.IndestructibleAbility;
|
||||
import mage.abilities.keyword.VigilanceAbility;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
import mage.constants.SuperType;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class AvacynToken extends TokenImpl {
|
||||
|
||||
public AvacynToken() {
|
||||
super("Avacyn", "Avacyn, a legendary 8/8 white Angel creature token with flying, vigilance, and indestructible");
|
||||
supertype.add(SuperType.LEGENDARY);
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setWhite(true);
|
||||
subtype.add(SubType.ANGEL);
|
||||
power = new MageInt(8);
|
||||
toughness = new MageInt(8);
|
||||
|
||||
this.addAbility(FlyingAbility.getInstance());
|
||||
this.addAbility(IndestructibleAbility.getInstance());
|
||||
this.addAbility(VigilanceAbility.getInstance());
|
||||
}
|
||||
|
||||
public AvacynToken(final AvacynToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public AvacynToken copy() {
|
||||
return new AvacynToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue