add sloth subtype, fix verify error

This commit is contained in:
theelk801 2024-03-09 17:54:54 -05:00
parent fa37e6112a
commit 59bf39f666
3 changed files with 3 additions and 2 deletions

View file

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

View file

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

View file

@ -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),