forked from External/mage
add sloth subtype, fix verify error
This commit is contained in:
parent
fa37e6112a
commit
59bf39f666
3 changed files with 3 additions and 2 deletions
|
|
@ -20,7 +20,7 @@ public final class ArborealGrazer extends CardImpl {
|
|||
public ArborealGrazer(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{G}");
|
||||
|
||||
this.subtype.add(SubType.BEAST);
|
||||
this.subtype.add(SubType.SLOTH, SubType.BEAST);
|
||||
this.power = new MageInt(0);
|
||||
this.toughness = new MageInt(3);
|
||||
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@ public final class RelicSloth extends CardImpl {
|
|||
public RelicSloth(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{3}{R}{W}");
|
||||
|
||||
this.subtype.add(SubType.BEAST);
|
||||
this.subtype.add(SubType.SLOTH, SubType.BEAST);
|
||||
this.power = new MageInt(4);
|
||||
this.toughness = new MageInt(4);
|
||||
|
||||
|
|
|
|||
|
|
@ -360,6 +360,7 @@ public enum SubType {
|
|||
SKELETON("Skeleton", SubTypeSet.CreatureType),
|
||||
SLITH("Slith", SubTypeSet.CreatureType),
|
||||
SLIVER("Sliver", SubTypeSet.CreatureType),
|
||||
SLOTH("Sloth", SubTypeSet.CreatureType),
|
||||
SLUG("Slug", SubTypeSet.CreatureType),
|
||||
SNAIL("Snail", SubTypeSet.CreatureType),
|
||||
SNAKE("Snake", SubTypeSet.CreatureType),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue