forked from External/mage
34 lines
803 B
Java
34 lines
803 B
Java
|
|
|
|
package mage.game.permanent.token;
|
|
|
|
import java.util.Arrays;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
import mage.MageInt;
|
|
|
|
/**
|
|
*
|
|
* @author LoneFox
|
|
*/
|
|
public final class GoblinRogueToken extends TokenImpl {
|
|
|
|
public GoblinRogueToken() {
|
|
super("Goblin Rogue", "1/1 black Goblin Rogue creature token");
|
|
cardType.add(CardType.CREATURE);
|
|
color.setBlack(true);
|
|
subtype.add(SubType.GOBLIN);
|
|
subtype.add(SubType.ROGUE);
|
|
power = new MageInt(1);
|
|
toughness = new MageInt(1);
|
|
availableImageSetCodes.addAll(Arrays.asList("LRW", "MMA"));
|
|
}
|
|
|
|
public GoblinRogueToken(final GoblinRogueToken token) {
|
|
super(token);
|
|
}
|
|
|
|
public GoblinRogueToken copy() {
|
|
return new GoblinRogueToken(this);
|
|
}
|
|
}
|