mirror of
https://github.com/correl/mage.git
synced 2025-01-12 11:08:01 +00:00
spjspj - Grip of Phyresis (Made germ token public) (C16)
This commit is contained in:
parent
e362dea7e6
commit
a423e87c98
1 changed files with 1 additions and 19 deletions
|
@ -10,6 +10,7 @@ import mage.abilities.effects.common.CreateTokenEffect;
|
|||
import mage.constants.CardType;
|
||||
import mage.game.Game;
|
||||
import mage.game.permanent.Permanent;
|
||||
import mage.game.permanent.token.GermToken;
|
||||
import mage.game.permanent.token.Token;
|
||||
import mage.players.Player;
|
||||
|
||||
|
@ -64,22 +65,3 @@ class LivingWeaponEffect extends CreateTokenEffect {
|
|||
return new LivingWeaponEffect(this);
|
||||
}
|
||||
}
|
||||
|
||||
class GermToken extends Token {
|
||||
|
||||
final static private List<String> tokenImageSets = new ArrayList<>();
|
||||
|
||||
static {
|
||||
tokenImageSets.addAll(Arrays.asList("C14", "MBS", "MM2"));
|
||||
}
|
||||
|
||||
public GermToken() {
|
||||
super("Germ", "a 0/0 black Germ creature token");
|
||||
availableImageSetCodes = tokenImageSets;
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setBlack(true);
|
||||
subtype.add("Germ");
|
||||
power = new MageInt(0);
|
||||
toughness = new MageInt(0);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue