mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 04:52:07 -08:00
Refactor - moved BatToken to shared area
This commit is contained in:
parent
ffd333c034
commit
d3160fb861
3 changed files with 22 additions and 15 deletions
20
Mage/src/main/java/mage/game/permanent/token/BatToken.java
Normal file
20
Mage/src/main/java/mage/game/permanent/token/BatToken.java
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.keyword.FlyingAbility;
|
||||
import mage.constants.CardType;
|
||||
|
||||
public class BatToken extends Token {
|
||||
|
||||
public BatToken() {
|
||||
super("Bat", "1/1 black Bat creature token with flying");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setBlack(true);
|
||||
subtype.add("Bat");
|
||||
power = new MageInt(1);
|
||||
toughness = new MageInt(1);
|
||||
this.addAbility(FlyingAbility.getInstance());
|
||||
|
||||
this.setOriginalExpansionSetCode("MMA");
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue