diff --git a/Mage.Sets/src/mage/cards/s/SunshowerDruid.java b/Mage.Sets/src/mage/cards/s/SunshowerDruid.java new file mode 100644 index 00000000000..23c292d4d59 --- /dev/null +++ b/Mage.Sets/src/mage/cards/s/SunshowerDruid.java @@ -0,0 +1,45 @@ +package mage.cards.s; + +import mage.MageInt; +import mage.abilities.Ability; +import mage.abilities.common.EntersBattlefieldTriggeredAbility; +import mage.abilities.effects.common.GainLifeEffect; +import mage.abilities.effects.common.counter.AddCountersTargetEffect; +import mage.cards.CardImpl; +import mage.cards.CardSetInfo; +import mage.constants.CardType; +import mage.constants.SubType; +import mage.counters.CounterType; +import mage.target.common.TargetCreaturePermanent; + +import java.util.UUID; + +/** + * @author TheElk801 + */ +public final class SunshowerDruid extends CardImpl { + + public SunshowerDruid(UUID ownerId, CardSetInfo setInfo) { + super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{G}"); + + this.subtype.add(SubType.FROG); + this.subtype.add(SubType.DRUID); + this.power = new MageInt(0); + this.toughness = new MageInt(2); + + // When Sunshower Druid enters, put a +1/+1 counter on target creature and you gain 1 life. + Ability ability = new EntersBattlefieldTriggeredAbility(new AddCountersTargetEffect(CounterType.P1P1.createInstance())); + ability.addEffect(new GainLifeEffect(1).concatBy("and")); + ability.addTarget(new TargetCreaturePermanent()); + this.addAbility(ability); + } + + private SunshowerDruid(final SunshowerDruid card) { + super(card); + } + + @Override + public SunshowerDruid copy() { + return new SunshowerDruid(this); + } +} diff --git a/Mage.Sets/src/mage/sets/Bloomburrow.java b/Mage.Sets/src/mage/sets/Bloomburrow.java index d0ee4c70010..699df79a967 100644 --- a/Mage.Sets/src/mage/sets/Bloomburrow.java +++ b/Mage.Sets/src/mage/sets/Bloomburrow.java @@ -31,5 +31,6 @@ public final class Bloomburrow extends ExpansionSet { cards.add(new SetCardInfo("Mudflat Village", 257, Rarity.UNCOMMON, mage.cards.m.MudflatVillage.class)); cards.add(new SetCardInfo("Oakhollow Village", 258, Rarity.UNCOMMON, mage.cards.o.OakhollowVillage.class)); cards.add(new SetCardInfo("Rockface Village", 259, Rarity.UNCOMMON, mage.cards.r.RockfaceVillage.class)); + cards.add(new SetCardInfo("Sunshower Druid", 195, Rarity.COMMON, mage.cards.s.SunshowerDruid.class)); } }