mirror of
https://github.com/magefree/mage.git
synced 2026-01-10 21:02:08 -08:00
Removed duplicate 3/3 angel token class
This commit is contained in:
parent
6f7f085fa3
commit
2074a02920
4 changed files with 4 additions and 37 deletions
|
|
@ -23,7 +23,7 @@ public final class Angel33Token extends TokenImpl {
|
|||
// Flying
|
||||
this.addAbility(FlyingAbility.getInstance());
|
||||
|
||||
availableImageSetCodes = Arrays.asList("AFR", "SNC");
|
||||
availableImageSetCodes = Arrays.asList("AFR", "SNC", "OGW");
|
||||
}
|
||||
|
||||
public Angel33Token(final Angel33Token token) {
|
||||
|
|
|
|||
|
|
@ -1,33 +0,0 @@
|
|||
|
||||
|
||||
package mage.game.permanent.token;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
import mage.MageInt;
|
||||
import mage.abilities.keyword.FlyingAbility;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author spjspj
|
||||
*/
|
||||
public final class LinvalaAngelToken extends TokenImpl {
|
||||
|
||||
public LinvalaAngelToken() {
|
||||
super("Angel Token", "3/3 white Angel creature token with flying");
|
||||
setOriginalExpansionSetCode("OGW");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setWhite(true);
|
||||
subtype.add(SubType.ANGEL);
|
||||
power = new MageInt(3);
|
||||
toughness = new MageInt(3);
|
||||
addAbility(FlyingAbility.getInstance());
|
||||
}
|
||||
|
||||
public LinvalaAngelToken(final LinvalaAngelToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public LinvalaAngelToken copy() {
|
||||
return new LinvalaAngelToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue