mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 13:02:06 -08:00
Implement Chicken Egg
This commit is contained in:
parent
8e3b610a0c
commit
79c18d28e2
4 changed files with 98 additions and 0 deletions
|
|
@ -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),
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue