mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 13:02:06 -08:00
Refactor - moved WallOfResurgenceToken to shared area
This commit is contained in:
parent
a12e830a1b
commit
f2d358b5b4
3 changed files with 21 additions and 16 deletions
|
|
@ -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());
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue