diff --git a/Mage.Sets/src/mage/cards/b/BarkformHarvester.java b/Mage.Sets/src/mage/cards/b/BarkformHarvester.java new file mode 100644 index 00000000000..93a3d2e261c --- /dev/null +++ b/Mage.Sets/src/mage/cards/b/BarkformHarvester.java @@ -0,0 +1,50 @@ +package mage.cards.b; + +import mage.MageInt; +import mage.abilities.Ability; +import mage.abilities.common.SimpleActivatedAbility; +import mage.abilities.costs.mana.GenericManaCost; +import mage.abilities.effects.common.PutOnLibraryTargetEffect; +import mage.abilities.keyword.ChangelingAbility; +import mage.abilities.keyword.ReachAbility; +import mage.cards.CardImpl; +import mage.cards.CardSetInfo; +import mage.constants.CardType; +import mage.constants.SubType; +import mage.target.common.TargetCardInYourGraveyard; + +import java.util.UUID; + +/** + * @author TheElk801 + */ +public final class BarkformHarvester extends CardImpl { + + public BarkformHarvester(UUID ownerId, CardSetInfo setInfo) { + super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT, CardType.CREATURE}, "{3}"); + + this.subtype.add(SubType.SHAPESHIFTER); + this.power = new MageInt(2); + this.toughness = new MageInt(3); + + // Changeling + this.addAbility(new ChangelingAbility()); + + // Reach + this.addAbility(ReachAbility.getInstance()); + + // {2}: Put target card from your graveyard on the bottom of your library. + Ability ability = new SimpleActivatedAbility(new PutOnLibraryTargetEffect(false), new GenericManaCost(2)); + ability.addTarget(new TargetCardInYourGraveyard()); + this.addAbility(ability); + } + + private BarkformHarvester(final BarkformHarvester card) { + super(card); + } + + @Override + public BarkformHarvester copy() { + return new BarkformHarvester(this); + } +} diff --git a/Mage.Sets/src/mage/sets/Bloomburrow.java b/Mage.Sets/src/mage/sets/Bloomburrow.java index d29ed08db45..389e7af6688 100644 --- a/Mage.Sets/src/mage/sets/Bloomburrow.java +++ b/Mage.Sets/src/mage/sets/Bloomburrow.java @@ -26,6 +26,7 @@ public final class Bloomburrow extends ExpansionSet { this.hasBoosters = false; // temporary cards.add(new SetCardInfo("Bark-Knuckle Boxer", 164, Rarity.UNCOMMON, mage.cards.b.BarkKnuckleBoxer.class)); + cards.add(new SetCardInfo("Barkform Harvester", 243, Rarity.COMMON, mage.cards.b.BarkformHarvester.class)); cards.add(new SetCardInfo("Brambleguard Captain", 127, Rarity.UNCOMMON, mage.cards.b.BrambleguardCaptain.class)); cards.add(new SetCardInfo("Brambleguard Veteran", 165, Rarity.UNCOMMON, mage.cards.b.BrambleguardVeteran.class)); cards.add(new SetCardInfo("Brave-Kin Duo", 3, Rarity.COMMON, mage.cards.b.BraveKinDuo.class));