Implemented Unglued cards

This commit is contained in:
L_J 2018-08-29 01:15:29 +02:00 committed by GitHub
parent 8445e98e2e
commit bda10ed04c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
14 changed files with 1062 additions and 1 deletions

View file

@ -93,6 +93,7 @@ public enum SubType {
CHIMERA("Chimera", SubTypeSet.CreatureType),
CHISS("Chiss", SubTypeSet.CreatureType, true),
CITIZEN("Citizen", SubTypeSet.CreatureType),
CLAMFOLK("Clamfolk", SubTypeSet.CreatureType, true), // Unglued
CLERIC("Cleric", SubTypeSet.CreatureType),
COCKATRICE("Cockatrice", SubTypeSet.CreatureType),
CONSTRUCT("Construct", SubTypeSet.CreatureType),

View file

@ -45,6 +45,7 @@ public enum CounterType {
FEATHER("feather"),
FILIBUSTER("filibuster"),
FLOOD("flood"),
FUNK("funk"),
FURY("fury"),
FUNGUS("fungus"),
FUSE("fuse"),

View file

@ -0,0 +1,22 @@
package mage.game.permanent.token;
import mage.constants.CardType;
import mage.constants.SubType;
import mage.MageInt;
/**
*
* @author L_J
*/
public class RabidSheepToken extends Token {
public RabidSheepToken() {
super("Rabid Sheep", "2/2 green Sheep creature token named Rabid Sheep");
cardType.add(CardType.CREATURE);
subtype.add(SubType.SHEEP);
color.setGreen(true);
power = new MageInt(2);
toughness = new MageInt(2);
}
}