forked from External/mage
Implement Chicken Egg
This commit is contained in:
parent
8e3b610a0c
commit
79c18d28e2
4 changed files with 98 additions and 0 deletions
|
|
@ -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