Refactor - moved WallOfResurgenceToken to shared area

This commit is contained in:
JOAC69 2016-09-26 00:52:46 -05:00
parent a12e830a1b
commit f2d358b5b4
3 changed files with 21 additions and 16 deletions

View file

@ -0,0 +1,19 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.abilities.keyword.HasteAbility;
import mage.constants.CardType;
public class WallOfResurgenceToken extends Token {
public WallOfResurgenceToken() {
super("", "0/0 Elemental creature with haste");
this.cardType.add(CardType.CREATURE);
this.subtype.add("Elemental");
this.power = new MageInt(0);
this.toughness = new MageInt(0);
this.addAbility(HasteAbility.getInstance());
}
}