mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 13:32:06 -08:00
[STX] Implemented Kasmina, Enigma Sage
This commit is contained in:
parent
c4ff30a95b
commit
aa527ea8b2
4 changed files with 224 additions and 0 deletions
|
|
@ -146,6 +146,7 @@ public enum SubType {
|
|||
FISH("Fish", SubTypeSet.CreatureType),
|
||||
FLAGBEARER("Flagbearer", SubTypeSet.CreatureType),
|
||||
FOX("Fox", SubTypeSet.CreatureType),
|
||||
FRACTAL("Fractal", SubTypeSet.CreatureType),
|
||||
FROG("Frog", SubTypeSet.CreatureType),
|
||||
FUNGUS("Fungus", SubTypeSet.CreatureType),
|
||||
// G
|
||||
|
|
|
|||
|
|
@ -0,0 +1,33 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
import java.util.Arrays;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class FractalToken extends TokenImpl {
|
||||
|
||||
public FractalToken() {
|
||||
super("Fractal", "0/0 green and blue Fractal creature token");
|
||||
cardType.add(CardType.CREATURE);
|
||||
subtype.add(SubType.FRACTAL);
|
||||
color.setGreen(true);
|
||||
color.setBlue(true);
|
||||
power = new MageInt(0);
|
||||
toughness = new MageInt(0);
|
||||
|
||||
availableImageSetCodes = Arrays.asList("STX");
|
||||
}
|
||||
|
||||
private FractalToken(final FractalToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public FractalToken copy() {
|
||||
return new FractalToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue