forked from External/mage
Refactor: Actually use DependencyType.BecomeNonbasicLand where it's needed.
This commit is contained in:
commit
ae7e6a9c10
25 changed files with 78 additions and 25 deletions
|
|
@ -14,7 +14,6 @@ import mage.cards.CardSetInfo;
|
||||||
import mage.constants.*;
|
import mage.constants.*;
|
||||||
import mage.filter.common.FilterControlledPermanent;
|
import mage.filter.common.FilterControlledPermanent;
|
||||||
import mage.game.permanent.token.custom.CreatureToken;
|
import mage.game.permanent.token.custom.CreatureToken;
|
||||||
import mage.target.common.TargetControlledPermanent;
|
|
||||||
import mage.target.common.TargetCreaturePermanent;
|
import mage.target.common.TargetCreaturePermanent;
|
||||||
|
|
||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
|
|
@ -42,7 +41,11 @@ public final class AmbushCommander extends CardImpl {
|
||||||
ContinuousEffect effect = new BecomesCreatureAllEffect(
|
ContinuousEffect effect = new BecomesCreatureAllEffect(
|
||||||
new CreatureToken(1, 1, "1/1 green Elf creatures").withColor("G").withSubType(SubType.ELF),
|
new CreatureToken(1, 1, "1/1 green Elf creatures").withColor("G").withSubType(SubType.ELF),
|
||||||
"lands", filter2, Duration.WhileOnBattlefield, true);
|
"lands", filter2, Duration.WhileOnBattlefield, true);
|
||||||
effect.getDependencyTypes().add(DependencyType.BecomeForest);
|
effect.addDependedToType(DependencyType.BecomeForest);
|
||||||
|
effect.addDependedToType(DependencyType.BecomeIsland);
|
||||||
|
effect.addDependedToType(DependencyType.BecomeMountain);
|
||||||
|
effect.addDependedToType(DependencyType.BecomePlains);
|
||||||
|
effect.addDependedToType(DependencyType.BecomeSwamp);
|
||||||
this.addAbility(new SimpleStaticAbility(effect));
|
this.addAbility(new SimpleStaticAbility(effect));
|
||||||
|
|
||||||
// {1}{G}, Sacrifice an Elf: Target creature gets +3/+3 until end of turn.
|
// {1}{G}, Sacrifice an Elf: Target creature gets +3/+3 until end of turn.
|
||||||
|
|
|
||||||
|
|
@ -64,6 +64,7 @@ class AshayaSoulOfTheWildEffect extends ContinuousEffectImpl {
|
||||||
staticText = "Nontoken creatures you control are Forest lands in addition to their other types";
|
staticText = "Nontoken creatures you control are Forest lands in addition to their other types";
|
||||||
this.dependendToTypes.add(DependencyType.BecomeCreature);
|
this.dependendToTypes.add(DependencyType.BecomeCreature);
|
||||||
this.dependencyTypes.add(DependencyType.BecomeForest);
|
this.dependencyTypes.add(DependencyType.BecomeForest);
|
||||||
|
this.dependencyTypes.add(DependencyType.BecomeNonbasicLand);
|
||||||
}
|
}
|
||||||
|
|
||||||
private AshayaSoulOfTheWildEffect(final AshayaSoulOfTheWildEffect effect) {
|
private AshayaSoulOfTheWildEffect(final AshayaSoulOfTheWildEffect effect) {
|
||||||
|
|
|
||||||
|
|
@ -63,6 +63,8 @@ class CelestialDawnToPlainsEffect extends ContinuousEffectImpl {
|
||||||
CelestialDawnToPlainsEffect() {
|
CelestialDawnToPlainsEffect() {
|
||||||
super(Duration.WhileOnBattlefield, Outcome.Detriment);
|
super(Duration.WhileOnBattlefield, Outcome.Detriment);
|
||||||
this.staticText = "Lands you control are Plains";
|
this.staticText = "Lands you control are Plains";
|
||||||
|
this.dependendToTypes.add(DependencyType.BecomeNonbasicLand);
|
||||||
|
this.dependencyTypes.add(DependencyType.BecomePlains);
|
||||||
}
|
}
|
||||||
|
|
||||||
private CelestialDawnToPlainsEffect(final CelestialDawnToPlainsEffect effect) {
|
private CelestialDawnToPlainsEffect(final CelestialDawnToPlainsEffect effect) {
|
||||||
|
|
@ -126,7 +128,7 @@ class CelestialDawnToWhiteEffect extends ContinuousEffectImpl {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// Exile
|
// Exile
|
||||||
for (Card card : game.getExile().getAllCards(game)) {
|
for (Card card : game.getExile().getAllCardsByRange(game, controller.getId())) {
|
||||||
if (card.isOwnedBy(controller.getId())) {
|
if (card.isOwnedBy(controller.getId())) {
|
||||||
setColor(card.getColor(game), game);
|
setColor(card.getColor(game), game);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -3,13 +3,14 @@ package mage.cards.c;
|
||||||
|
|
||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
import mage.abilities.common.SimpleStaticAbility;
|
import mage.abilities.common.SimpleStaticAbility;
|
||||||
|
import mage.abilities.effects.ContinuousEffect;
|
||||||
import mage.abilities.effects.common.continuous.GainAbilityControlledEffect;
|
import mage.abilities.effects.common.continuous.GainAbilityControlledEffect;
|
||||||
import mage.abilities.mana.AnyColorManaAbility;
|
import mage.abilities.mana.AnyColorManaAbility;
|
||||||
import mage.cards.CardImpl;
|
import mage.cards.CardImpl;
|
||||||
import mage.cards.CardSetInfo;
|
import mage.cards.CardSetInfo;
|
||||||
import mage.constants.CardType;
|
import mage.constants.CardType;
|
||||||
|
import mage.constants.DependencyType;
|
||||||
import mage.constants.Duration;
|
import mage.constants.Duration;
|
||||||
import mage.constants.Zone;
|
|
||||||
import mage.filter.StaticFilters;
|
import mage.filter.StaticFilters;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -21,7 +22,10 @@ public final class ChromaticLantern extends CardImpl {
|
||||||
super(ownerId,setInfo,new CardType[]{CardType.ARTIFACT},"{3}");
|
super(ownerId,setInfo,new CardType[]{CardType.ARTIFACT},"{3}");
|
||||||
|
|
||||||
// Lands you control have "{T}: Add one mana of any color."
|
// Lands you control have "{T}: Add one mana of any color."
|
||||||
this.addAbility(new SimpleStaticAbility(new GainAbilityControlledEffect(new AnyColorManaAbility(), Duration.WhileOnBattlefield, StaticFilters.FILTER_LANDS, false)));
|
ContinuousEffect effect = new GainAbilityControlledEffect(new AnyColorManaAbility(), Duration.WhileOnBattlefield, StaticFilters.FILTER_LANDS, false);
|
||||||
|
effect.getDependedToTypes().add(DependencyType.BecomeNonbasicLand);
|
||||||
|
this.addAbility(new SimpleStaticAbility(effect));
|
||||||
|
|
||||||
|
|
||||||
// {T}: Add one mana of any color.
|
// {T}: Add one mana of any color.
|
||||||
this.addAbility(new AnyColorManaAbility());
|
this.addAbility(new AnyColorManaAbility());
|
||||||
|
|
|
||||||
|
|
@ -54,6 +54,12 @@ public final class Conversion extends CardImpl {
|
||||||
ConversionEffect() {
|
ConversionEffect() {
|
||||||
super(Duration.WhileOnBattlefield, Outcome.Detriment);
|
super(Duration.WhileOnBattlefield, Outcome.Detriment);
|
||||||
this.staticText = "All Mountains are Plains";
|
this.staticText = "All Mountains are Plains";
|
||||||
|
this.dependendToTypes.add(DependencyType.BecomeForest);
|
||||||
|
this.dependendToTypes.add(DependencyType.BecomeIsland);
|
||||||
|
this.dependendToTypes.add(DependencyType.BecomeMountain);
|
||||||
|
this.dependendToTypes.add(DependencyType.BecomePlains);
|
||||||
|
this.dependendToTypes.add(DependencyType.BecomeSwamp);
|
||||||
|
this.dependencyTypes.add(DependencyType.BecomePlains);
|
||||||
}
|
}
|
||||||
|
|
||||||
private ConversionEffect(final ConversionEffect effect) {
|
private ConversionEffect(final ConversionEffect effect) {
|
||||||
|
|
|
||||||
|
|
@ -5,6 +5,7 @@ import mage.abilities.Ability;
|
||||||
import mage.abilities.common.SimpleActivatedAbility;
|
import mage.abilities.common.SimpleActivatedAbility;
|
||||||
import mage.abilities.common.SimpleStaticAbility;
|
import mage.abilities.common.SimpleStaticAbility;
|
||||||
import mage.abilities.costs.common.TapSourceCost;
|
import mage.abilities.costs.common.TapSourceCost;
|
||||||
|
import mage.abilities.effects.ContinuousEffect;
|
||||||
import mage.abilities.effects.ContinuousEffectImpl;
|
import mage.abilities.effects.ContinuousEffectImpl;
|
||||||
import mage.abilities.effects.OneShotEffect;
|
import mage.abilities.effects.OneShotEffect;
|
||||||
import mage.abilities.effects.common.GainLifeEffect;
|
import mage.abilities.effects.common.GainLifeEffect;
|
||||||
|
|
@ -45,10 +46,12 @@ public final class DuneChanter extends CardImpl {
|
||||||
this.addAbility(new SimpleStaticAbility(new DuneChanterContinuousEffect()));
|
this.addAbility(new SimpleStaticAbility(new DuneChanterContinuousEffect()));
|
||||||
|
|
||||||
// Lands you control have "{T}: Add one mana of any color."
|
// Lands you control have "{T}: Add one mana of any color."
|
||||||
this.addAbility(new SimpleStaticAbility(new GainAbilityControlledEffect(
|
ContinuousEffect effect = new GainAbilityControlledEffect(
|
||||||
new AnyColorManaAbility(), Duration.WhileOnBattlefield,
|
new AnyColorManaAbility(), Duration.WhileOnBattlefield,
|
||||||
StaticFilters.FILTER_LANDS, false
|
StaticFilters.FILTER_LANDS, false
|
||||||
)));
|
);
|
||||||
|
effect.getDependedToTypes().add(DependencyType.BecomeNonbasicLand);
|
||||||
|
this.addAbility(new SimpleStaticAbility(effect));
|
||||||
|
|
||||||
// {T}: Mill two cards. You gain 1 life for each land card milled this way.
|
// {T}: Mill two cards. You gain 1 life for each land card milled this way.
|
||||||
this.addAbility(new SimpleActivatedAbility(new DuneChanterEffect(), new TapSourceCost()));
|
this.addAbility(new SimpleActivatedAbility(new DuneChanterEffect(), new TapSourceCost()));
|
||||||
|
|
@ -76,6 +79,7 @@ class DuneChanterContinuousEffect extends ContinuousEffectImpl {
|
||||||
public DuneChanterContinuousEffect() {
|
public DuneChanterContinuousEffect() {
|
||||||
super(Duration.WhileOnBattlefield, Layer.TypeChangingEffects_4, SubLayer.NA, Outcome.Benefit);
|
super(Duration.WhileOnBattlefield, Layer.TypeChangingEffects_4, SubLayer.NA, Outcome.Benefit);
|
||||||
staticText = "Lands you control and land cards you own that aren't on the battlefield are Deserts in addition to their other types";
|
staticText = "Lands you control and land cards you own that aren't on the battlefield are Deserts in addition to their other types";
|
||||||
|
dependendToTypes.add(DependencyType.BecomeNonbasicLand);
|
||||||
}
|
}
|
||||||
|
|
||||||
private DuneChanterContinuousEffect(final DuneChanterContinuousEffect effect) {
|
private DuneChanterContinuousEffect(final DuneChanterContinuousEffect effect) {
|
||||||
|
|
|
||||||
|
|
@ -45,6 +45,7 @@ class EncroachingMycosynthEffect extends ContinuousEffectImpl {
|
||||||
super(Duration.WhileOnBattlefield, Layer.TypeChangingEffects_4, SubLayer.NA, Outcome.Benefit);
|
super(Duration.WhileOnBattlefield, Layer.TypeChangingEffects_4, SubLayer.NA, Outcome.Benefit);
|
||||||
staticText = "Nonland permanents you control are artifacts in addition to their other types. " +
|
staticText = "Nonland permanents you control are artifacts in addition to their other types. " +
|
||||||
"The same is true for permanent spells you control and nonland permanent cards you own that aren't on the battlefield";
|
"The same is true for permanent spells you control and nonland permanent cards you own that aren't on the battlefield";
|
||||||
|
this.dependendToTypes.add(DependencyType.BecomeNonbasicLand);
|
||||||
this.dependencyTypes.add(DependencyType.ArtifactAddingRemoving); // March of the Machines
|
this.dependencyTypes.add(DependencyType.ArtifactAddingRemoving); // March of the Machines
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -51,6 +51,12 @@ public final class Glaciers extends CardImpl {
|
||||||
GlaciersEffect() {
|
GlaciersEffect() {
|
||||||
super(Duration.WhileOnBattlefield, Outcome.Detriment);
|
super(Duration.WhileOnBattlefield, Outcome.Detriment);
|
||||||
this.staticText = "All Mountains are Plains";
|
this.staticText = "All Mountains are Plains";
|
||||||
|
this.dependendToTypes.add(DependencyType.BecomeForest);
|
||||||
|
this.dependendToTypes.add(DependencyType.BecomeIsland);
|
||||||
|
this.dependendToTypes.add(DependencyType.BecomeMountain);
|
||||||
|
this.dependendToTypes.add(DependencyType.BecomePlains);
|
||||||
|
this.dependendToTypes.add(DependencyType.BecomeSwamp);
|
||||||
|
this.dependencyTypes.add(DependencyType.BecomePlains);
|
||||||
}
|
}
|
||||||
|
|
||||||
private GlaciersEffect(final GlaciersEffect effect) {
|
private GlaciersEffect(final GlaciersEffect effect) {
|
||||||
|
|
|
||||||
|
|
@ -54,6 +54,7 @@ class HarbingerOfTheSeasEffect extends ContinuousEffectImpl {
|
||||||
HarbingerOfTheSeasEffect() {
|
HarbingerOfTheSeasEffect() {
|
||||||
super(Duration.WhileOnBattlefield, Outcome.Detriment);
|
super(Duration.WhileOnBattlefield, Outcome.Detriment);
|
||||||
this.staticText = "Nonbasic lands are Islands";
|
this.staticText = "Nonbasic lands are Islands";
|
||||||
|
dependendToTypes.add(DependencyType.BecomeNonbasicLand);
|
||||||
dependencyTypes.add(DependencyType.BecomeIsland);
|
dependencyTypes.add(DependencyType.BecomeIsland);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -27,11 +27,12 @@ public final class KormusBell extends CardImpl {
|
||||||
new CreatureToken(1, 1, "1/1 black creatures").withColor("B"),
|
new CreatureToken(1, 1, "1/1 black creatures").withColor("B"),
|
||||||
"lands", filter,
|
"lands", filter,
|
||||||
Duration.WhileOnBattlefield, true);
|
Duration.WhileOnBattlefield, true);
|
||||||
effect.addDependedToType(DependencyType.BecomeSwamp); // TODO: are these dependencies correct/complete?
|
effect.addDependedToType(DependencyType.BecomeNonbasicLand);
|
||||||
effect.addDependedToType(DependencyType.BecomeIsland);
|
|
||||||
effect.addDependedToType(DependencyType.BecomeForest);
|
effect.addDependedToType(DependencyType.BecomeForest);
|
||||||
|
effect.addDependedToType(DependencyType.BecomeIsland);
|
||||||
effect.addDependedToType(DependencyType.BecomeMountain);
|
effect.addDependedToType(DependencyType.BecomeMountain);
|
||||||
effect.addDependedToType(DependencyType.BecomePlains);
|
effect.addDependedToType(DependencyType.BecomePlains);
|
||||||
|
effect.addDependedToType(DependencyType.BecomeSwamp);
|
||||||
this.addAbility(new SimpleStaticAbility(effect));
|
this.addAbility(new SimpleStaticAbility(effect));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,6 @@ package mage.cards.l;
|
||||||
|
|
||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
import mage.abilities.Ability;
|
import mage.abilities.Ability;
|
||||||
import mage.abilities.Mode;
|
|
||||||
import mage.abilities.common.SimpleStaticAbility;
|
import mage.abilities.common.SimpleStaticAbility;
|
||||||
import mage.abilities.effects.ContinuousEffectImpl;
|
import mage.abilities.effects.ContinuousEffectImpl;
|
||||||
import mage.abilities.keyword.LeylineAbility;
|
import mage.abilities.keyword.LeylineAbility;
|
||||||
|
|
@ -47,6 +46,7 @@ class SetSupertypeAllEffect extends ContinuousEffectImpl {
|
||||||
public SetSupertypeAllEffect() {
|
public SetSupertypeAllEffect() {
|
||||||
super(Duration.WhileOnBattlefield, Layer.TypeChangingEffects_4, SubLayer.NA, Outcome.Detriment);
|
super(Duration.WhileOnBattlefield, Layer.TypeChangingEffects_4, SubLayer.NA, Outcome.Detriment);
|
||||||
this.staticText = "All nonland permanents are legendary";
|
this.staticText = "All nonland permanents are legendary";
|
||||||
|
this.dependendToTypes.add(DependencyType.BecomeNonbasicLand);
|
||||||
}
|
}
|
||||||
|
|
||||||
private SetSupertypeAllEffect(final SetSupertypeAllEffect effect) {
|
private SetSupertypeAllEffect(final SetSupertypeAllEffect effect) {
|
||||||
|
|
|
||||||
|
|
@ -50,6 +50,7 @@ class LeylineOfTheGuildpactEffect extends ContinuousEffectImpl {
|
||||||
LeylineOfTheGuildpactEffect() {
|
LeylineOfTheGuildpactEffect() {
|
||||||
super(Duration.WhileOnBattlefield, Layer.ColorChangingEffects_5, SubLayer.NA, Outcome.Benefit);
|
super(Duration.WhileOnBattlefield, Layer.ColorChangingEffects_5, SubLayer.NA, Outcome.Benefit);
|
||||||
staticText = "each nonland permanent you control is all colors";
|
staticText = "each nonland permanent you control is all colors";
|
||||||
|
dependendToTypes.add(DependencyType.BecomeNonbasicLand);
|
||||||
}
|
}
|
||||||
|
|
||||||
private LeylineOfTheGuildpactEffect(final LeylineOfTheGuildpactEffect effect) {
|
private LeylineOfTheGuildpactEffect(final LeylineOfTheGuildpactEffect effect) {
|
||||||
|
|
|
||||||
|
|
@ -50,7 +50,12 @@ class LifeAndLimbEffect extends ContinuousEffectImpl {
|
||||||
super(Duration.WhileOnBattlefield, Outcome.Neutral);
|
super(Duration.WhileOnBattlefield, Outcome.Neutral);
|
||||||
staticText = "All Forests and all Saprolings are 1/1 green Saproling creatures and Forest lands in addition to their other types";
|
staticText = "All Forests and all Saprolings are 1/1 green Saproling creatures and Forest lands in addition to their other types";
|
||||||
|
|
||||||
|
this.dependendToTypes.add(DependencyType.BecomeNonbasicLand);
|
||||||
this.dependendToTypes.add(DependencyType.BecomeForest);
|
this.dependendToTypes.add(DependencyType.BecomeForest);
|
||||||
|
this.dependendToTypes.add(DependencyType.BecomeIsland);
|
||||||
|
this.dependendToTypes.add(DependencyType.BecomeMountain);
|
||||||
|
this.dependendToTypes.add(DependencyType.BecomePlains);
|
||||||
|
this.dependendToTypes.add(DependencyType.BecomeSwamp);
|
||||||
this.dependendToTypes.add(DependencyType.BecomeCreature);
|
this.dependendToTypes.add(DependencyType.BecomeCreature);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -26,7 +26,12 @@ public final class LivingLands extends CardImpl {
|
||||||
ContinuousEffect effect = new BecomesCreatureAllEffect(
|
ContinuousEffect effect = new BecomesCreatureAllEffect(
|
||||||
new CreatureToken(1, 1, "1/1 creatures"),
|
new CreatureToken(1, 1, "1/1 creatures"),
|
||||||
"lands", filter, Duration.WhileOnBattlefield, false);
|
"lands", filter, Duration.WhileOnBattlefield, false);
|
||||||
effect.getDependencyTypes().add(DependencyType.BecomeForest); // TODO: are these dependencies correct/complete?
|
effect.getDependedToTypes().add(DependencyType.BecomeNonbasicLand);
|
||||||
|
effect.addDependedToType(DependencyType.BecomeForest);
|
||||||
|
effect.addDependedToType(DependencyType.BecomeIsland);
|
||||||
|
effect.addDependedToType(DependencyType.BecomeMountain);
|
||||||
|
effect.addDependedToType(DependencyType.BecomePlains);
|
||||||
|
effect.addDependedToType(DependencyType.BecomeSwamp);
|
||||||
this.addAbility(new SimpleStaticAbility(effect));
|
this.addAbility(new SimpleStaticAbility(effect));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,13 +2,11 @@ package mage.cards.l;
|
||||||
|
|
||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
import mage.abilities.common.SimpleStaticAbility;
|
import mage.abilities.common.SimpleStaticAbility;
|
||||||
|
import mage.abilities.effects.ContinuousEffect;
|
||||||
import mage.abilities.effects.common.continuous.BecomesCreatureAllEffect;
|
import mage.abilities.effects.common.continuous.BecomesCreatureAllEffect;
|
||||||
import mage.cards.CardImpl;
|
import mage.cards.CardImpl;
|
||||||
import mage.cards.CardSetInfo;
|
import mage.cards.CardSetInfo;
|
||||||
import mage.constants.CardType;
|
import mage.constants.*;
|
||||||
import mage.constants.Duration;
|
|
||||||
import mage.constants.SuperType;
|
|
||||||
import mage.constants.Zone;
|
|
||||||
import mage.filter.common.FilterLandPermanent;
|
import mage.filter.common.FilterLandPermanent;
|
||||||
import mage.game.permanent.token.custom.CreatureToken;
|
import mage.game.permanent.token.custom.CreatureToken;
|
||||||
|
|
||||||
|
|
@ -25,9 +23,11 @@ public final class LivingPlane extends CardImpl {
|
||||||
this.supertype.add(SuperType.WORLD);
|
this.supertype.add(SuperType.WORLD);
|
||||||
|
|
||||||
// All lands are 1/1 creatures that are still lands.
|
// All lands are 1/1 creatures that are still lands.
|
||||||
this.addAbility(new SimpleStaticAbility(new BecomesCreatureAllEffect(
|
ContinuousEffect effect = new BecomesCreatureAllEffect(
|
||||||
new CreatureToken(1, 1, "1/1 creatures"),
|
new CreatureToken(1, 1, "1/1 creatures"),
|
||||||
"lands", filter, Duration.WhileOnBattlefield, false)));
|
"lands", filter, Duration.WhileOnBattlefield, false);
|
||||||
|
effect.getDependedToTypes().add(DependencyType.BecomeNonbasicLand);
|
||||||
|
this.addAbility(new SimpleStaticAbility(effect));
|
||||||
}
|
}
|
||||||
|
|
||||||
private LivingPlane(final LivingPlane card) {
|
private LivingPlane(final LivingPlane card) {
|
||||||
|
|
|
||||||
|
|
@ -54,6 +54,7 @@ class MagusOfTheMoonEffect extends ContinuousEffectImpl {
|
||||||
MagusOfTheMoonEffect() {
|
MagusOfTheMoonEffect() {
|
||||||
super(Duration.WhileOnBattlefield, Outcome.Detriment);
|
super(Duration.WhileOnBattlefield, Outcome.Detriment);
|
||||||
this.staticText = "Nonbasic lands are Mountains";
|
this.staticText = "Nonbasic lands are Mountains";
|
||||||
|
dependendToTypes.add(DependencyType.BecomeNonbasicLand);
|
||||||
dependencyTypes.add(DependencyType.BecomeMountain);
|
dependencyTypes.add(DependencyType.BecomeMountain);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -39,6 +39,7 @@ class MeltingEffect extends ContinuousEffectImpl {
|
||||||
MeltingEffect() {
|
MeltingEffect() {
|
||||||
super(Duration.WhileOnBattlefield, Layer.TypeChangingEffects_4, SubLayer.NA, Outcome.Detriment);
|
super(Duration.WhileOnBattlefield, Layer.TypeChangingEffects_4, SubLayer.NA, Outcome.Detriment);
|
||||||
this.staticText = "All lands are no longer snow";
|
this.staticText = "All lands are no longer snow";
|
||||||
|
this.dependendToTypes.add(DependencyType.BecomeNonbasicLand);
|
||||||
}
|
}
|
||||||
|
|
||||||
private MeltingEffect(final MeltingEffect effect) {
|
private MeltingEffect(final MeltingEffect effect) {
|
||||||
|
|
|
||||||
|
|
@ -3,12 +3,14 @@ package mage.cards.n;
|
||||||
import mage.ObjectColor;
|
import mage.ObjectColor;
|
||||||
import mage.abilities.common.EntersBattlefieldTriggeredAbility;
|
import mage.abilities.common.EntersBattlefieldTriggeredAbility;
|
||||||
import mage.abilities.common.SimpleStaticAbility;
|
import mage.abilities.common.SimpleStaticAbility;
|
||||||
|
import mage.abilities.effects.ContinuousEffect;
|
||||||
import mage.abilities.effects.common.ReturnToHandChosenControlledPermanentEffect;
|
import mage.abilities.effects.common.ReturnToHandChosenControlledPermanentEffect;
|
||||||
import mage.abilities.effects.common.continuous.BecomesCreatureAllEffect;
|
import mage.abilities.effects.common.continuous.BecomesCreatureAllEffect;
|
||||||
import mage.abilities.keyword.FirstStrikeAbility;
|
import mage.abilities.keyword.FirstStrikeAbility;
|
||||||
import mage.cards.CardImpl;
|
import mage.cards.CardImpl;
|
||||||
import mage.cards.CardSetInfo;
|
import mage.cards.CardSetInfo;
|
||||||
import mage.constants.CardType;
|
import mage.constants.CardType;
|
||||||
|
import mage.constants.DependencyType;
|
||||||
import mage.constants.Duration;
|
import mage.constants.Duration;
|
||||||
import mage.filter.StaticFilters;
|
import mage.filter.StaticFilters;
|
||||||
import mage.filter.common.FilterControlledEnchantmentPermanent;
|
import mage.filter.common.FilterControlledEnchantmentPermanent;
|
||||||
|
|
@ -37,12 +39,14 @@ public final class NaturalEmergence extends CardImpl {
|
||||||
this.addAbility(new EntersBattlefieldTriggeredAbility(new ReturnToHandChosenControlledPermanentEffect(filter), false));
|
this.addAbility(new EntersBattlefieldTriggeredAbility(new ReturnToHandChosenControlledPermanentEffect(filter), false));
|
||||||
|
|
||||||
// Lands you control are 2/2 creatures with first strike. They're still lands.
|
// Lands you control are 2/2 creatures with first strike. They're still lands.
|
||||||
this.addAbility(new SimpleStaticAbility(new BecomesCreatureAllEffect(
|
ContinuousEffect effect = new BecomesCreatureAllEffect(
|
||||||
new CreatureToken(
|
new CreatureToken(
|
||||||
2, 2, "2/2 creatures with first strike"
|
2, 2, "2/2 creatures with first strike"
|
||||||
).withAbility(FirstStrikeAbility.getInstance()), "lands",
|
).withAbility(FirstStrikeAbility.getInstance()), "lands",
|
||||||
StaticFilters.FILTER_CONTROLLED_PERMANENT_LANDS, Duration.WhileOnBattlefield, false
|
StaticFilters.FILTER_CONTROLLED_PERMANENT_LANDS, Duration.WhileOnBattlefield, false
|
||||||
)));
|
);
|
||||||
|
effect.getDependedToTypes().add(DependencyType.BecomeNonbasicLand);
|
||||||
|
this.addAbility(new SimpleStaticAbility(effect));
|
||||||
}
|
}
|
||||||
|
|
||||||
private NaturalEmergence(final NaturalEmergence card) {
|
private NaturalEmergence(final NaturalEmergence card) {
|
||||||
|
|
|
||||||
|
|
@ -2,12 +2,13 @@ package mage.cards.n;
|
||||||
|
|
||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
import mage.abilities.common.SimpleStaticAbility;
|
import mage.abilities.common.SimpleStaticAbility;
|
||||||
|
import mage.abilities.effects.ContinuousEffect;
|
||||||
import mage.abilities.effects.common.continuous.BecomesCreatureAllEffect;
|
import mage.abilities.effects.common.continuous.BecomesCreatureAllEffect;
|
||||||
import mage.cards.CardImpl;
|
import mage.cards.CardImpl;
|
||||||
import mage.cards.CardSetInfo;
|
import mage.cards.CardSetInfo;
|
||||||
import mage.constants.CardType;
|
import mage.constants.CardType;
|
||||||
|
import mage.constants.DependencyType;
|
||||||
import mage.constants.Duration;
|
import mage.constants.Duration;
|
||||||
import mage.constants.Zone;
|
|
||||||
import mage.filter.common.FilterLandPermanent;
|
import mage.filter.common.FilterLandPermanent;
|
||||||
import mage.game.permanent.token.custom.CreatureToken;
|
import mage.game.permanent.token.custom.CreatureToken;
|
||||||
|
|
||||||
|
|
@ -24,9 +25,11 @@ public final class NaturesRevolt extends CardImpl {
|
||||||
super(ownerId, setInfo, new CardType[]{CardType.ENCHANTMENT}, "{3}{G}{G}");
|
super(ownerId, setInfo, new CardType[]{CardType.ENCHANTMENT}, "{3}{G}{G}");
|
||||||
|
|
||||||
// All lands are 2/2 creatures that are still lands.
|
// All lands are 2/2 creatures that are still lands.
|
||||||
this.addAbility(new SimpleStaticAbility(new BecomesCreatureAllEffect(
|
ContinuousEffect effect = new BecomesCreatureAllEffect(
|
||||||
new CreatureToken(2, 2, "2/2 creatures"),
|
new CreatureToken(2, 2, "2/2 creatures"),
|
||||||
"lands", filter, Duration.WhileOnBattlefield, false)));
|
"lands", filter, Duration.WhileOnBattlefield, false);
|
||||||
|
effect.getDependedToTypes().add(DependencyType.BecomeNonbasicLand);
|
||||||
|
this.addAbility(new SimpleStaticAbility(effect));
|
||||||
}
|
}
|
||||||
|
|
||||||
private NaturesRevolt(final NaturesRevolt card) {
|
private NaturesRevolt(final NaturesRevolt card) {
|
||||||
|
|
|
||||||
|
|
@ -51,6 +51,7 @@ class RealmwrightEffect extends ContinuousEffectImpl {
|
||||||
RealmwrightEffect() {
|
RealmwrightEffect() {
|
||||||
super(Duration.WhileOnBattlefield, Layer.TypeChangingEffects_4, SubLayer.NA, Outcome.Neutral);
|
super(Duration.WhileOnBattlefield, Layer.TypeChangingEffects_4, SubLayer.NA, Outcome.Neutral);
|
||||||
staticText = "Lands you control are the chosen type in addition to their other types";
|
staticText = "Lands you control are the chosen type in addition to their other types";
|
||||||
|
dependendToTypes.add(DependencyType.BecomeNonbasicLand);
|
||||||
}
|
}
|
||||||
|
|
||||||
private RealmwrightEffect(final RealmwrightEffect effect) {
|
private RealmwrightEffect(final RealmwrightEffect effect) {
|
||||||
|
|
|
||||||
|
|
@ -47,6 +47,7 @@ class RootpathPurifierEffect extends ContinuousEffectImpl {
|
||||||
RootpathPurifierEffect() {
|
RootpathPurifierEffect() {
|
||||||
super(Duration.WhileOnBattlefield, Layer.TypeChangingEffects_4, SubLayer.NA, Outcome.Benefit);
|
super(Duration.WhileOnBattlefield, Layer.TypeChangingEffects_4, SubLayer.NA, Outcome.Benefit);
|
||||||
staticText = "lands you control and land cards in your library are basic";
|
staticText = "lands you control and land cards in your library are basic";
|
||||||
|
dependendToTypes.add(DependencyType.BecomeNonbasicLand);
|
||||||
}
|
}
|
||||||
|
|
||||||
private RootpathPurifierEffect(final RootpathPurifierEffect effect) {
|
private RootpathPurifierEffect(final RootpathPurifierEffect effect) {
|
||||||
|
|
|
||||||
|
|
@ -50,6 +50,7 @@ class BecomesColorlessForestLandEffect extends ContinuousEffectImpl {
|
||||||
BecomesColorlessForestLandEffect() {
|
BecomesColorlessForestLandEffect() {
|
||||||
super(Duration.WhileOnBattlefield, Outcome.Detriment);
|
super(Duration.WhileOnBattlefield, Outcome.Detriment);
|
||||||
this.staticText = "Enchanted permanent is a colorless Forest land";
|
this.staticText = "Enchanted permanent is a colorless Forest land";
|
||||||
|
dependencyTypes.add(DependencyType.BecomeNonbasicLand);
|
||||||
dependencyTypes.add(DependencyType.BecomeForest);
|
dependencyTypes.add(DependencyType.BecomeForest);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -63,6 +63,8 @@ class TophTheFirstMetalbenderEffect extends ContinuousEffectImpl {
|
||||||
TophTheFirstMetalbenderEffect() {
|
TophTheFirstMetalbenderEffect() {
|
||||||
super(Duration.WhileOnBattlefield, Layer.TypeChangingEffects_4, SubLayer.NA, Outcome.Benefit);
|
super(Duration.WhileOnBattlefield, Layer.TypeChangingEffects_4, SubLayer.NA, Outcome.Benefit);
|
||||||
staticText = "nontoken artifacts you control are lands in addition to their other types";
|
staticText = "nontoken artifacts you control are lands in addition to their other types";
|
||||||
|
this.dependendToTypes.add(DependencyType.ArtifactAddingRemoving);
|
||||||
|
this.dependencyTypes.add(DependencyType.BecomeNonbasicLand);
|
||||||
}
|
}
|
||||||
|
|
||||||
private TophTheFirstMetalbenderEffect(final TophTheFirstMetalbenderEffect effect) {
|
private TophTheFirstMetalbenderEffect(final TophTheFirstMetalbenderEffect effect) {
|
||||||
|
|
|
||||||
|
|
@ -20,6 +20,7 @@ public class AddBasicLandTypeAllLandsEffect extends ContinuousEffectImpl {
|
||||||
this.subType = subType;
|
this.subType = subType;
|
||||||
this.staticText = "Each land is " + subType.getIndefiniteArticle() + " "
|
this.staticText = "Each land is " + subType.getIndefiniteArticle() + " "
|
||||||
+ subType.getDescription() + " in addition to its other land types";
|
+ subType.getDescription() + " in addition to its other land types";
|
||||||
|
this.dependendToTypes.add(DependencyType.BecomeNonbasicLand);
|
||||||
switch (subType) {
|
switch (subType) {
|
||||||
case PLAINS:
|
case PLAINS:
|
||||||
this.dependencyTypes.add(DependencyType.BecomePlains);
|
this.dependencyTypes.add(DependencyType.BecomePlains);
|
||||||
|
|
|
||||||
|
|
@ -8,9 +8,6 @@ import mage.filter.StaticFilters;
|
||||||
import mage.game.Game;
|
import mage.game.Game;
|
||||||
import mage.game.permanent.Permanent;
|
import mage.game.permanent.Permanent;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author TheElk801
|
* @author TheElk801
|
||||||
*/
|
*/
|
||||||
|
|
@ -27,6 +24,7 @@ public class BecomesAllBasicsControlledEffect extends ContinuousEffectImpl {
|
||||||
public BecomesAllBasicsControlledEffect() {
|
public BecomesAllBasicsControlledEffect() {
|
||||||
super(Duration.WhileOnBattlefield, Layer.TypeChangingEffects_4, SubLayer.NA, Outcome.Detriment);
|
super(Duration.WhileOnBattlefield, Layer.TypeChangingEffects_4, SubLayer.NA, Outcome.Detriment);
|
||||||
this.staticText = "Lands you control are every basic land type in addition to their other types";
|
this.staticText = "Lands you control are every basic land type in addition to their other types";
|
||||||
|
dependendToTypes.add(DependencyType.BecomeNonbasicLand);
|
||||||
dependencyTypes.add(DependencyType.BecomeMountain);
|
dependencyTypes.add(DependencyType.BecomeMountain);
|
||||||
dependencyTypes.add(DependencyType.BecomeForest);
|
dependencyTypes.add(DependencyType.BecomeForest);
|
||||||
dependencyTypes.add(DependencyType.BecomeSwamp);
|
dependencyTypes.add(DependencyType.BecomeSwamp);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue