small update

This commit is contained in:
Evan Kranzler 2017-09-12 20:39:15 -04:00
parent cbe0d2afc1
commit 923333c7e0
10 changed files with 44 additions and 48 deletions

View file

@ -25,7 +25,6 @@
* authors and should not be interpreted as representing official policies, either expressed
* or implied, of BetaSteward_at_googlemail.com.
*/
package mage.cards.b;
import mage.abilities.common.AsEntersBattlefieldAbility;
@ -49,9 +48,10 @@ public class BloodCrypt extends CardImpl {
public BloodCrypt(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.LAND}, null);
this.subtype.add(SubType.SWAMP, SubType.MOUNTAIN);
this.addAbility(new AsEntersBattlefieldAbility(new TapSourceUnlessPaysEffect(new PayLifeCost(2)), "you may pay 2 life. If you don't, {this} enters the battlefield tapped"));
this.addAbility(new BlackManaAbility());
this.addAbility(new RedManaAbility());
this.addAbility(new AsEntersBattlefieldAbility(new TapSourceUnlessPaysEffect(new PayLifeCost(2)), "you may pay 2 life. If you don't, {this} enters the battlefield tapped"));
}
public BloodCrypt(final BloodCrypt card) {

View file

@ -25,7 +25,6 @@
* authors and should not be interpreted as representing official policies, either expressed
* or implied, of BetaSteward_at_googlemail.com.
*/
package mage.cards.b;
import mage.abilities.common.AsEntersBattlefieldAbility;
@ -49,9 +48,10 @@ public class BreedingPool extends CardImpl {
public BreedingPool(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.LAND}, null);
this.subtype.add(SubType.FOREST, SubType.ISLAND);
this.addAbility(new AsEntersBattlefieldAbility(new TapSourceUnlessPaysEffect(new PayLifeCost(2)), "you may pay 2 life. If you don't, {this} enters the battlefield tapped"));
this.addAbility(new GreenManaAbility());
this.addAbility(new BlueManaAbility());
this.addAbility(new AsEntersBattlefieldAbility(new TapSourceUnlessPaysEffect(new PayLifeCost(2)), "you may pay 2 life. If you don't, Breeding Pool enters the battlefield tapped"));
}
public BreedingPool(final BreedingPool card) {

View file

@ -25,7 +25,6 @@
* authors and should not be interpreted as representing official policies, either expressed
* or implied, of BetaSteward_at_googlemail.com.
*/
package mage.cards.g;
import java.util.UUID;
@ -49,9 +48,10 @@ public class GodlessShrine extends CardImpl {
super(ownerId, setInfo, new CardType[]{CardType.LAND}, null);
this.subtype.add(SubType.PLAINS);
this.subtype.add(SubType.SWAMP);
this.addAbility(new AsEntersBattlefieldAbility(new TapSourceUnlessPaysEffect(new PayLifeCost(2)), "you may pay 2 life. If you don't, {this} enters the battlefield tapped"));
this.addAbility(new WhiteManaAbility());
this.addAbility(new BlackManaAbility());
this.addAbility(new AsEntersBattlefieldAbility(new TapSourceUnlessPaysEffect(new PayLifeCost(2)), "you may pay 2 life. If you don't, Godless Shrine enters the battlefield tapped"));
}
public GodlessShrine(final GodlessShrine card) {

View file

@ -25,7 +25,6 @@
* authors and should not be interpreted as representing official policies, either expressed
* or implied, of BetaSteward_at_googlemail.com.
*/
package mage.cards.h;
import java.util.UUID;
@ -49,9 +48,10 @@ public class HallowedFountain extends CardImpl {
super(ownerId, setInfo, new CardType[]{CardType.LAND}, null);
this.subtype.add(SubType.PLAINS);
this.subtype.add(SubType.ISLAND);
this.addAbility(new AsEntersBattlefieldAbility(new TapSourceUnlessPaysEffect(new PayLifeCost(2)), "you may pay 2 life. If you don't, {this} enters the battlefield tapped"));
this.addAbility(new WhiteManaAbility());
this.addAbility(new BlueManaAbility());
this.addAbility(new AsEntersBattlefieldAbility(new TapSourceUnlessPaysEffect(new PayLifeCost(2)), "you may pay 2 life. If you don't, Hallowed Fountain enters the battlefield tapped"));
}
public HallowedFountain(final HallowedFountain card) {

View file

@ -25,7 +25,6 @@
* authors and should not be interpreted as representing official policies, either expressed
* or implied, of BetaSteward_at_googlemail.com.
*/
package mage.cards.o;
import java.util.UUID;
@ -50,10 +49,9 @@ public class OvergrownTomb extends CardImpl {
this.subtype.add(SubType.SWAMP);
this.subtype.add(SubType.FOREST);
this.addAbility(new AsEntersBattlefieldAbility(new TapSourceUnlessPaysEffect(new PayLifeCost(2)), "you may pay 2 life. If you don't, {this} enters the battlefield tapped"));
this.addAbility(new BlackManaAbility());
this.addAbility(new GreenManaAbility());
this.addAbility(new AsEntersBattlefieldAbility(new TapSourceUnlessPaysEffect(new PayLifeCost(2)), "you may pay 2 life. If you don't, {this} enters the battlefield tapped"));
}
public OvergrownTomb(final OvergrownTomb card) {

View file

@ -25,7 +25,6 @@
* authors and should not be interpreted as representing official policies, either expressed
* or implied, of BetaSteward_at_googlemail.com.
*/
package mage.cards.s;
import java.util.UUID;
@ -49,9 +48,10 @@ public class SacredFoundry extends CardImpl {
super(ownerId, setInfo, new CardType[]{CardType.LAND}, null);
this.subtype.add(SubType.MOUNTAIN);
this.subtype.add(SubType.PLAINS);
this.addAbility(new AsEntersBattlefieldAbility(new TapSourceUnlessPaysEffect(new PayLifeCost(2)), "you may pay 2 life. If you don't, {this} enters the battlefield tapped"));
this.addAbility(new RedManaAbility());
this.addAbility(new WhiteManaAbility());
this.addAbility(new AsEntersBattlefieldAbility(new TapSourceUnlessPaysEffect(new PayLifeCost(2)), "you may pay 2 life. If you don't, {this} enters the battlefield tapped"));
}
public SacredFoundry(final SacredFoundry card) {

View file

@ -25,7 +25,6 @@
* authors and should not be interpreted as representing official policies, either expressed
* or implied, of BetaSteward_at_googlemail.com.
*/
package mage.cards.s;
import java.util.UUID;
@ -49,9 +48,10 @@ public class SteamVents extends CardImpl {
super(ownerId, setInfo, new CardType[]{CardType.LAND}, null);
this.subtype.add(SubType.ISLAND);
this.subtype.add(SubType.MOUNTAIN);
this.addAbility(new AsEntersBattlefieldAbility(new TapSourceUnlessPaysEffect(new PayLifeCost(2)), "you may pay 2 life. If you don't, {this} enters the battlefield tapped"));
this.addAbility(new BlueManaAbility());
this.addAbility(new RedManaAbility());
this.addAbility(new AsEntersBattlefieldAbility(new TapSourceUnlessPaysEffect(new PayLifeCost(2)), "you may pay 2 life. If you don't, Steam Vents enters the battlefield tapped"));
}
public SteamVents(final SteamVents card) {

View file

@ -49,10 +49,9 @@ public class StompingGround extends CardImpl {
this.subtype.add(SubType.MOUNTAIN);
this.subtype.add(SubType.FOREST);
this.addAbility(new AsEntersBattlefieldAbility(new TapSourceUnlessPaysEffect(new PayLifeCost(2)), "you may pay 2 life. If you don't, {this} enters the battlefield tapped"));
this.addAbility(new RedManaAbility());
this.addAbility(new GreenManaAbility());
this.addAbility(new AsEntersBattlefieldAbility(new TapSourceUnlessPaysEffect(new PayLifeCost(2)),
"you may pay 2 life. If you don't, {this} enters the battlefield tapped"));
}
public StompingGround(final StompingGround card) {

View file

@ -25,7 +25,6 @@
* authors and should not be interpreted as representing official policies, either expressed
* or implied, of BetaSteward_at_googlemail.com.
*/
package mage.cards.t;
import java.util.UUID;
@ -49,9 +48,10 @@ public class TempleGarden extends CardImpl {
super(ownerId, setInfo, new CardType[]{CardType.LAND}, null);
this.subtype.add(SubType.FOREST);
this.subtype.add(SubType.PLAINS);
this.addAbility(new AsEntersBattlefieldAbility(new TapSourceUnlessPaysEffect(new PayLifeCost(2)), "you may pay 2 life. If you don't, {this} enters the battlefield tapped"));
this.addAbility(new GreenManaAbility());
this.addAbility(new WhiteManaAbility());
this.addAbility(new AsEntersBattlefieldAbility(new TapSourceUnlessPaysEffect(new PayLifeCost(2)), "you may pay 2 life. If you don't, {this} enters the battlefield tapped"));
}
public TempleGarden(final TempleGarden card) {

View file

@ -25,7 +25,6 @@
* authors and should not be interpreted as representing official policies, either expressed
* or implied, of BetaSteward_at_googlemail.com.
*/
package mage.cards.w;
import java.util.UUID;
@ -50,9 +49,9 @@ public class WateryGrave extends CardImpl {
this.subtype.add(SubType.ISLAND);
this.subtype.add(SubType.SWAMP);
this.addAbility(new AsEntersBattlefieldAbility(new TapSourceUnlessPaysEffect(new PayLifeCost(2)), "you may pay 2 life. If you don't, {this} enters the battlefield tapped"));
this.addAbility(new BlueManaAbility());
this.addAbility(new BlackManaAbility());
this.addAbility(new AsEntersBattlefieldAbility(new TapSourceUnlessPaysEffect(new PayLifeCost(2)), "you may pay 2 life. If you don't, {this} enters the battlefield tapped"));
}
public WateryGrave(final WateryGrave card) {