diff --git a/Mage.Sets/src/mage/cards/a/ArborealGrazer.java b/Mage.Sets/src/mage/cards/a/ArborealGrazer.java index 445bf3daac8..9ad7a83ccb6 100644 --- a/Mage.Sets/src/mage/cards/a/ArborealGrazer.java +++ b/Mage.Sets/src/mage/cards/a/ArborealGrazer.java @@ -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); diff --git a/Mage.Sets/src/mage/cards/r/RelicSloth.java b/Mage.Sets/src/mage/cards/r/RelicSloth.java index 3c47b0e3630..5a092039b1c 100644 --- a/Mage.Sets/src/mage/cards/r/RelicSloth.java +++ b/Mage.Sets/src/mage/cards/r/RelicSloth.java @@ -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); diff --git a/Mage/src/main/java/mage/constants/SubType.java b/Mage/src/main/java/mage/constants/SubType.java index 9408d21e0b5..73e412a22f5 100644 --- a/Mage/src/main/java/mage/constants/SubType.java +++ b/Mage/src/main/java/mage/constants/SubType.java @@ -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),