[SNC] Implemented Girder Goons

This commit is contained in:
Evan Kranzler 2022-04-17 20:24:04 -04:00
parent 767bc45b09
commit b4cfd43763
3 changed files with 74 additions and 0 deletions

View file

@ -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 RogueToken extends TokenImpl {
public RogueToken() {
super("Rogue Token", "2/2 black Rogue creature token");
cardType.add(CardType.CREATURE);
subtype.add(SubType.ROGUE);
color.setBlack(true);
power = new MageInt(2);
toughness = new MageInt(2);
}
public RogueToken(final RogueToken token) {
super(token);
}
public RogueToken copy() {
return new RogueToken(this);
}
}