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

@ -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);
}
}