diff --git a/Mage.Sets/src/mage/cards/g/GnollHunter.java b/Mage.Sets/src/mage/cards/g/GnollHunter.java new file mode 100644 index 00000000000..6dc58639677 --- /dev/null +++ b/Mage.Sets/src/mage/cards/g/GnollHunter.java @@ -0,0 +1,38 @@ +package mage.cards.g; + +import mage.MageInt; +import mage.abilities.effects.common.counter.AddCountersSourceEffect; +import mage.abilities.keyword.PackTacticsAbility; +import mage.cards.CardImpl; +import mage.cards.CardSetInfo; +import mage.constants.CardType; +import mage.constants.SubType; +import mage.counters.CounterType; + +import java.util.UUID; + +/** + * @author TheElk801 + */ +public final class GnollHunter extends CardImpl { + + public GnollHunter(UUID ownerId, CardSetInfo setInfo) { + super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{1}{G}"); + + this.subtype.add(SubType.GNOLL); + this.power = new MageInt(2); + this.toughness = new MageInt(2); + + // Pact tactics — Whenever Gnoll Hunter attacks, if you attacked with creatures with total power 6 or greater this combat, put a +1/+1 counter on Gnoll Hunter. + this.addAbility(new PackTacticsAbility(new AddCountersSourceEffect(CounterType.P1P1.createInstance()))); + } + + private GnollHunter(final GnollHunter card) { + super(card); + } + + @Override + public GnollHunter copy() { + return new GnollHunter(this); + } +} diff --git a/Mage.Sets/src/mage/sets/AdventuresInTheForgottenRealms.java b/Mage.Sets/src/mage/sets/AdventuresInTheForgottenRealms.java index 521aed304a3..ffe33c64e56 100644 --- a/Mage.Sets/src/mage/sets/AdventuresInTheForgottenRealms.java +++ b/Mage.Sets/src/mage/sets/AdventuresInTheForgottenRealms.java @@ -55,6 +55,7 @@ public final class AdventuresInTheForgottenRealms extends ExpansionSet { cards.add(new SetCardInfo("Flumph", 15, Rarity.RARE, mage.cards.f.Flumph.class)); cards.add(new SetCardInfo("Forest", 278, Rarity.LAND, mage.cards.basiclands.Forest.class, NON_FULL_USE_VARIOUS)); cards.add(new SetCardInfo("Gloom Stalker", 16, Rarity.COMMON, mage.cards.g.GloomStalker.class)); + cards.add(new SetCardInfo("Gnoll Hunter", 185, Rarity.COMMON, mage.cards.g.GnollHunter.class)); cards.add(new SetCardInfo("Grazilaxx, Illithid Scholar", 60, Rarity.RARE, mage.cards.g.GrazilaxxIllithidScholar.class)); cards.add(new SetCardInfo("Guild Thief", 61, Rarity.UNCOMMON, mage.cards.g.GuildThief.class)); cards.add(new SetCardInfo("Half-Elf Monk", 19, Rarity.COMMON, mage.cards.h.HalfElfMonk.class)); diff --git a/Mage/src/main/java/mage/constants/SubType.java b/Mage/src/main/java/mage/constants/SubType.java index ddaf21191c1..7f2bcea94e3 100644 --- a/Mage/src/main/java/mage/constants/SubType.java +++ b/Mage/src/main/java/mage/constants/SubType.java @@ -160,6 +160,7 @@ public enum SubType { GERM("Germ", SubTypeSet.CreatureType), GIANT("Giant", SubTypeSet.CreatureType), GNOME("Gnome", SubTypeSet.CreatureType), + GNOLL("Gnoll", SubTypeSet.CreatureType), GOLEM("Golem", SubTypeSet.CreatureType), GOAT("Goat", SubTypeSet.CreatureType), GOBLIN("Goblin", SubTypeSet.CreatureType),