Implemented Weather the Storm

This commit is contained in:
Evan Kranzler 2019-05-27 17:44:44 -04:00
parent ce3c67f29b
commit 01a97038d3
2 changed files with 35 additions and 0 deletions

View file

@ -0,0 +1,34 @@
package mage.cards.w;
import mage.abilities.effects.common.GainLifeEffect;
import mage.abilities.keyword.StormAbility;
import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.constants.CardType;
import java.util.UUID;
/**
* @author TheElk801
*/
public final class WeatherTheStorm extends CardImpl {
public WeatherTheStorm(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{1}{G}");
// You gain 3 life.
this.getSpellAbility().addEffect(new GainLifeEffect(3));
// Storm
this.addAbility(new StormAbility());
}
private WeatherTheStorm(final WeatherTheStorm card) {
super(card);
}
@Override
public WeatherTheStorm copy() {
return new WeatherTheStorm(this);
}
}

View file

@ -146,6 +146,7 @@ public final class ModernHorizons extends ExpansionSet {
cards.add(new SetCardInfo("Venomous Changeling", 114, Rarity.COMMON, mage.cards.v.VenomousChangeling.class));
cards.add(new SetCardInfo("Wall of One Thousand Cuts", 36, Rarity.COMMON, mage.cards.w.WallOfOneThousandCuts.class));
cards.add(new SetCardInfo("Waterlogged Grove", 249, Rarity.RARE, mage.cards.w.WaterloggedGrove.class));
cards.add(new SetCardInfo("Weather the Storm", 191, Rarity.COMMON, mage.cards.w.WeatherTheStorm.class));
cards.add(new SetCardInfo("Winds of Abandon", 37, Rarity.RARE, mage.cards.w.WindsOfAbandon.class));
cards.add(new SetCardInfo("Wing Shards", 38, Rarity.UNCOMMON, mage.cards.w.WingShards.class));
cards.add(new SetCardInfo("Wrenn and Six", 217, Rarity.MYTHIC, mage.cards.w.WrennAndSix.class));