* Images: fixed that some tokens uses wrong images of Elemental (#5834);

This commit is contained in:
Oleg Agafonov 2020-06-15 21:30:23 +04:00
parent f2f1abd0f3
commit 4006e9e909
19 changed files with 129 additions and 119 deletions

View file

@ -1,4 +1,3 @@
package mage.game.permanent.token;
import mage.MageInt;
@ -7,20 +6,20 @@ import mage.constants.CardType;
import mage.constants.SubType;
/**
*
* @author spjspj
*/
public final class WandOfTheElementsFirstToken extends TokenImpl {
public WandOfTheElementsFirstToken() {
super("Elemental", "2/2 blue Elemental creature token with flying");
setTokenType(1);
cardType.add(CardType.CREATURE);
this.subtype.add(SubType.ELEMENTAL);
this.color.setBlue(true);
power = new MageInt(2);
toughness = new MageInt(2);
this.addAbility(FlyingAbility.getInstance());
setTokenType(1);
}
public WandOfTheElementsFirstToken(final WandOfTheElementsFirstToken token) {