Implement Chicken Egg

This commit is contained in:
ciaccona007 2018-01-09 12:40:39 -08:00
parent 8e3b610a0c
commit 79c18d28e2
4 changed files with 98 additions and 0 deletions

View file

@ -85,6 +85,7 @@ public enum SubType {
CENTAUR("Centaur", SubTypeSet.CreatureType),
CEREAN("Cerean", SubTypeSet.CreatureType, true), // Star Wars
CEPHALID("Cephalid", SubTypeSet.CreatureType),
CHICKEN("Chicken", SubTypeSet.CreatureType),
CHIMERA("Chimera", SubTypeSet.CreatureType),
CHISS("Chiss", SubTypeSet.CreatureType, true),
CITIZEN("Citizen", SubTypeSet.CreatureType),
@ -114,6 +115,7 @@ public enum SubType {
DWARF("Dwarf", SubTypeSet.CreatureType),
// E
EFREET("Efreet", SubTypeSet.CreatureType),
EGG("Egg", SubTypeSet.CreatureType),
ELDER("Elder", SubTypeSet.CreatureType),
ELDRAZI("Eldrazi", SubTypeSet.CreatureType),
ELEMENTAL("Elemental", SubTypeSet.CreatureType),

View file

@ -0,0 +1,18 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.constants.CardType;
import mage.constants.SubType;
public class GiantChickenToken extends Token {
public GiantChickenToken() {
super("Giant Chicken", "4/4 red Giant Chicken creature token");
cardType.add(CardType.CREATURE);
color.setRed(true);
subtype.add(SubType.GIANT);
subtype.add(SubType.CHICKEN);
power = new MageInt(4);
toughness = new MageInt(4);
}
}