mirror of
https://github.com/magefree/mage.git
synced 2025-12-23 20:11:59 -08:00
[DMU] Implemented Sunlit Marsh
This commit is contained in:
parent
97d3cc7489
commit
dfb22b263e
2 changed files with 41 additions and 0 deletions
40
Mage.Sets/src/mage/cards/s/SunlitMarsh.java
Normal file
40
Mage.Sets/src/mage/cards/s/SunlitMarsh.java
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
package mage.cards.s;
|
||||
|
||||
import mage.abilities.common.EntersBattlefieldTappedAbility;
|
||||
import mage.abilities.mana.BlackManaAbility;
|
||||
import mage.abilities.mana.WhiteManaAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class SunlitMarsh extends CardImpl {
|
||||
|
||||
public SunlitMarsh(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.LAND}, "");
|
||||
|
||||
this.subtype.add(SubType.PLAINS);
|
||||
this.subtype.add(SubType.SWAMP);
|
||||
|
||||
// ({T}: Add {W} or {B}.)
|
||||
this.addAbility(new WhiteManaAbility());
|
||||
this.addAbility(new BlackManaAbility());
|
||||
|
||||
// Sunlit Marsh enters the battlefield tapped.
|
||||
this.addAbility(new EntersBattlefieldTappedAbility());
|
||||
}
|
||||
|
||||
private SunlitMarsh(final SunlitMarsh card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public SunlitMarsh copy() {
|
||||
return new SunlitMarsh(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -160,6 +160,7 @@ public final class DominariaUnited extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Stronghold Arena", 110, Rarity.RARE, mage.cards.s.StrongholdArena.class));
|
||||
cards.add(new SetCardInfo("Sulfurous Springs", 256, Rarity.RARE, mage.cards.s.SulfurousSprings.class));
|
||||
cards.add(new SetCardInfo("Sunbathing Rootwalla", 181, Rarity.COMMON, mage.cards.s.SunbathingRootwalla.class));
|
||||
cards.add(new SetCardInfo("Sunlit Marsh", 257, Rarity.COMMON, mage.cards.s.SunlitMarsh.class));
|
||||
cards.add(new SetCardInfo("Swamp", 268, Rarity.LAND, mage.cards.basiclands.Swamp.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Tail Swipe", 182, Rarity.UNCOMMON, mage.cards.t.TailSwipe.class));
|
||||
cards.add(new SetCardInfo("Take Up the Shield", 35, Rarity.COMMON, mage.cards.t.TakeUpTheShield.class));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue