[AFR] Implemented The Book of Exalted Deeds

This commit is contained in:
Evan Kranzler 2021-07-07 19:39:00 -04:00
parent 9d9c8bf5ab
commit dff5b201d5
5 changed files with 157 additions and 14 deletions

View file

@ -50,6 +50,7 @@ public enum CounterType {
EGG("egg"),
ELIXIR("elixir"),
ENERGY("energy"),
ENLIGHTENED("enlightened"),
EON("eon"),
EXPERIENCE("experience"),
EYEBALL("eyeball"),

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 Angel33Token extends TokenImpl {
public Angel33Token() {
super("Angel", "3/3 white Angel creature token with flying");
cardType.add(CardType.CREATURE);
color.setWhite(true);
subtype.add(SubType.ANGEL);
power = new MageInt(3);
toughness = new MageInt(3);
// Flying
this.addAbility(FlyingAbility.getInstance());
availableImageSetCodes = Arrays.asList("AFR");
}
public Angel33Token(final Angel33Token token) {
super(token);
}
public Angel33Token copy() {
return new Angel33Token(this);
}
}