[BLC] Implement Rolling Hamsphere

This commit is contained in:
theelk801 2024-08-06 12:53:51 -04:00
parent 1cf91b0b2d
commit 8d6c5f6795
3 changed files with 89 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 HamsterToken extends TokenImpl {
public HamsterToken() {
super("Hamster Token", "1/1 red Hamster creature token");
cardType.add(CardType.CREATURE);
subtype.add(SubType.HAMSTER);
color.setRed(true);
power = new MageInt(1);
toughness = new MageInt(1);
}
private HamsterToken(final HamsterToken token) {
super(token);
}
public HamsterToken copy() {
return new HamsterToken(this);
}
}