mirror of
https://github.com/magefree/mage.git
synced 2026-01-10 12:52:06 -08:00
[BIG] Implement Greed's Gambit
This commit is contained in:
parent
6bce50dd6f
commit
b9b9889a87
3 changed files with 88 additions and 0 deletions
30
Mage/src/main/java/mage/game/permanent/token/Bat21Token.java
Normal file
30
Mage/src/main/java/mage/game/permanent/token/Bat21Token.java
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.keyword.FlyingAbility;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class Bat21Token extends TokenImpl {
|
||||
|
||||
public Bat21Token() {
|
||||
super("Bat Token", "2/1 black Bat creature token with flying");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setBlack(true);
|
||||
subtype.add(SubType.BAT);
|
||||
power = new MageInt(2);
|
||||
toughness = new MageInt(1);
|
||||
this.addAbility(FlyingAbility.getInstance());
|
||||
}
|
||||
|
||||
private Bat21Token(final Bat21Token token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public Bat21Token copy() {
|
||||
return new Bat21Token(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue