mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 05:22:02 -08:00
[MH3] Implement Scurry of Gremlins
This commit is contained in:
parent
ee0ba61441
commit
6e8c667b97
3 changed files with 85 additions and 0 deletions
|
|
@ -0,0 +1,28 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class Gremlin11Token extends TokenImpl {
|
||||
|
||||
public Gremlin11Token() {
|
||||
super("Gremlin Token", "1/1 red Gremlin creature token");
|
||||
cardType.add(CardType.CREATURE);
|
||||
subtype.add(SubType.GREMLIN);
|
||||
color.setRed(true);
|
||||
power = new MageInt(1);
|
||||
toughness = new MageInt(1);
|
||||
}
|
||||
|
||||
private Gremlin11Token(final Gremlin11Token token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public Gremlin11Token copy() {
|
||||
return new Gremlin11Token(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue