mirror of
https://github.com/magefree/mage.git
synced 2026-01-09 20:32:06 -08:00
[BLC] Implement Rolling Hamsphere
This commit is contained in:
parent
1cf91b0b2d
commit
8d6c5f6795
3 changed files with 89 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 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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue