forked from External/mage
* Images: fixed that some tokens uses wrong images of Elemental (#5834);
This commit is contained in:
parent
f2f1abd0f3
commit
4006e9e909
19 changed files with 129 additions and 119 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue