[ZNR] Implemented Grakmaw, Skyclave Ravager

This commit is contained in:
Evan Kranzler 2020-09-12 18:20:49 -04:00
parent 06d0ac0974
commit 3b52b4b833
3 changed files with 134 additions and 0 deletions

View file

@ -0,0 +1,29 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.constants.CardType;
import mage.constants.SubType;
/**
* @author TheElk801
*/
public final class GrakmawSkyclaveRavagerToken extends TokenImpl {
public GrakmawSkyclaveRavagerToken(int xValue) {
super("Hydra", "X/X black and green Hydra creature token");
cardType.add(CardType.CREATURE);
color.setBlack(true);
color.setGreen(true);
subtype.add(SubType.HYDRA);
power = new MageInt(xValue);
toughness = new MageInt(xValue);
}
private GrakmawSkyclaveRavagerToken(final GrakmawSkyclaveRavagerToken token) {
super(token);
}
public GrakmawSkyclaveRavagerToken copy() {
return new GrakmawSkyclaveRavagerToken(this);
}
}