mirror of
https://github.com/magefree/mage.git
synced 2025-12-24 12:31:59 -08:00
[AFR] Implemented The Book of Exalted Deeds
This commit is contained in:
parent
9d9c8bf5ab
commit
dff5b201d5
5 changed files with 157 additions and 14 deletions
|
|
@ -50,6 +50,7 @@ public enum CounterType {
|
|||
EGG("egg"),
|
||||
ELIXIR("elixir"),
|
||||
ENERGY("energy"),
|
||||
ENLIGHTENED("enlightened"),
|
||||
EON("eon"),
|
||||
EXPERIENCE("experience"),
|
||||
EYEBALL("eyeball"),
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue