Skip to content

Commit

Permalink
[MH3] Implement Snow-Covered Wastes
Browse files Browse the repository at this point in the history
  • Loading branch information
theelk801 committed Feb 25, 2024
1 parent fbd0752 commit 3312177
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 0 deletions.
33 changes: 33 additions & 0 deletions Mage.Sets/src/mage/cards/s/SnowCoveredWastes.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
package mage.cards.s;

import mage.abilities.mana.ColorlessManaAbility;
import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.constants.CardType;
import mage.constants.SuperType;

import java.util.UUID;

/**
* @author TheElk801
*/
public final class SnowCoveredWastes extends CardImpl {

public SnowCoveredWastes(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.LAND}, "");
this.supertype.add(SuperType.BASIC);
this.supertype.add(SuperType.SNOW);

// {T}: Add {C}.
this.addAbility(new ColorlessManaAbility());
}

private SnowCoveredWastes(final SnowCoveredWastes card) {
super(card);
}

@Override
public SnowCoveredWastes copy() {
return new SnowCoveredWastes(this);
}
}
1 change: 1 addition & 0 deletions Mage.Sets/src/mage/sets/ModernHorizons3.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ private ModernHorizons3() {
cards.add(new SetCardInfo("Priest of Titania", 286, Rarity.UNCOMMON, mage.cards.p.PriestOfTitania.class));
cards.add(new SetCardInfo("Psychic Frog", 199, Rarity.RARE, mage.cards.p.PsychicFrog.class));
cards.add(new SetCardInfo("Scurry of Gremlins", 203, Rarity.UNCOMMON, mage.cards.s.ScurryOfGremlins.class));
cards.add(new SetCardInfo("Snow-Covered Wastes", 309, Rarity.UNCOMMON, mage.cards.s.SnowCoveredWastes.class));
cards.add(new SetCardInfo("Swamp", 306, Rarity.LAND, mage.cards.basiclands.Swamp.class, NON_FULL_USE_VARIOUS));
cards.add(new SetCardInfo("Windswept Heath", 235, Rarity.RARE, mage.cards.w.WindsweptHeath.class));
cards.add(new SetCardInfo("Wooded Foothills", 236, Rarity.RARE, mage.cards.w.WoodedFoothills.class));
Expand Down
1 change: 1 addition & 0 deletions Utils/mtg-cards-data.txt
Original file line number Diff line number Diff line change
Expand Up @@ -52420,6 +52420,7 @@ Island|Modern Horizons 3|305|C||Basic Land - Island|||({T}: Add {U}.)|
Swamp|Modern Horizons 3|306|C||Basic Land - Swamp|||({T}: Add {B}.)|
Mountain|Modern Horizons 3|307|C||Basic Land - Mountain|||({T}: Add {R}.)|
Forest|Modern Horizons 3|308|C||Basic Land - Forest|||({T}: Add {G}.)|
Snow-Covered Wastes|Modern Horizons 3|309|U||Basic Snow Land|||{T}: Add {C}.|
Nexus of Becoming|The Big Score|25|M|{6}|Artifact|||At the beginning of combat on your turn, draw a card. Then you may exile an artifact or creature card from your hand. If you do, create a token that's a copy of the exiled card, except it's a 3/3 Golem artifact creature in addition to its other types.|
Sword of Wealth and Power|The Big Score|26|M|{3}|Artifact- Equipment|||Equipped creature gets +2/+2 and has protection from instants and from sorceries.$Whenever equipped creature deals combat damage to a player, create a Treasure token. When you next cast an instant or sorcery spell this turn, copy that spell. You may choose new targets for the copy.$Equip {2}|
Lumra, Bellow of the Woods|Bloomburrow|183|M|{4}{G}{G}|Legendary Creature - Elemental Bear|*|*|Vigilance, reach$Lumra, Bellow of the Woods's power and toughness are each equal to the number of lands you control.$When Lumra enters, mill four cards. Then return all land cards from your graveyard to the battlefield tapped.|
Expand Down

0 comments on commit 3312177

Please sign in to comment.