diff --git a/Mage.Sets/src/mage/cards/l/LegionFoundry.java b/Mage.Sets/src/mage/cards/l/LegionExtruder.java similarity index 86% rename from Mage.Sets/src/mage/cards/l/LegionFoundry.java rename to Mage.Sets/src/mage/cards/l/LegionExtruder.java index ae93be658f7..4e61a3ffe12 100644 --- a/Mage.Sets/src/mage/cards/l/LegionFoundry.java +++ b/Mage.Sets/src/mage/cards/l/LegionExtruder.java @@ -20,9 +20,9 @@ import java.util.UUID; /** * @author Susucr */ -public final class LegionFoundry extends CardImpl { +public final class LegionExtruder extends CardImpl { - public LegionFoundry(UUID ownerId, CardSetInfo setInfo) { + public LegionExtruder(UUID ownerId, CardSetInfo setInfo) { super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT}, "{1}{R}"); // When Legion Foundry enters the battlefield, it deals 2 damage to any target. @@ -37,12 +37,12 @@ public final class LegionFoundry extends CardImpl { this.addAbility(ability); } - private LegionFoundry(final LegionFoundry card) { + private LegionExtruder(final LegionExtruder card) { super(card); } @Override - public LegionFoundry copy() { - return new LegionFoundry(this); + public LegionExtruder copy() { + return new LegionExtruder(this); } } diff --git a/Mage.Sets/src/mage/cards/s/SubstituteSynthesizer.java b/Mage.Sets/src/mage/cards/s/SimulacrumSynthesizer.java similarity index 85% rename from Mage.Sets/src/mage/cards/s/SubstituteSynthesizer.java rename to Mage.Sets/src/mage/cards/s/SimulacrumSynthesizer.java index 2796d3f88b5..8aa50d4a45b 100644 --- a/Mage.Sets/src/mage/cards/s/SubstituteSynthesizer.java +++ b/Mage.Sets/src/mage/cards/s/SimulacrumSynthesizer.java @@ -19,7 +19,7 @@ import java.util.UUID; /** * @author Susucr */ -public final class SubstituteSynthesizer extends CardImpl { +public final class SimulacrumSynthesizer extends CardImpl { private static final FilterPermanent filter = new FilterArtifactPermanent("another artifact with mana value 3 or more"); @@ -29,7 +29,7 @@ public final class SubstituteSynthesizer extends CardImpl { filter.add(new ManaValuePredicate(ComparisonType.OR_GREATER, 3)); } - public SubstituteSynthesizer(UUID ownerId, CardSetInfo setInfo) { + public SimulacrumSynthesizer(UUID ownerId, CardSetInfo setInfo) { super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT}, "{2}{U}"); // When Substitute Synthesizer enters the battlefield, scry 2. @@ -41,12 +41,12 @@ public final class SubstituteSynthesizer extends CardImpl { )); } - private SubstituteSynthesizer(final SubstituteSynthesizer card) { + private SimulacrumSynthesizer(final SimulacrumSynthesizer card) { super(card); } @Override - public SubstituteSynthesizer copy() { - return new SubstituteSynthesizer(this); + public SimulacrumSynthesizer copy() { + return new SimulacrumSynthesizer(this); } } diff --git a/Mage.Sets/src/mage/sets/TheBigScore.java b/Mage.Sets/src/mage/sets/TheBigScore.java index 1a48328f0c5..7e705c8cc1e 100644 --- a/Mage.Sets/src/mage/sets/TheBigScore.java +++ b/Mage.Sets/src/mage/sets/TheBigScore.java @@ -22,13 +22,13 @@ public final class TheBigScore extends ExpansionSet { this.hasBoosters = false; cards.add(new SetCardInfo("Grand Abolisher", 2, Rarity.MYTHIC, mage.cards.g.GrandAbolisher.class)); - cards.add(new SetCardInfo("Legion Foundry", 12, Rarity.MYTHIC, mage.cards.l.LegionFoundry.class)); + cards.add(new SetCardInfo("Legion Extruder", 12, Rarity.MYTHIC, mage.cards.l.LegionExtruder.class)); cards.add(new SetCardInfo("Loot, the Key to Everything", 21, Rarity.MYTHIC, mage.cards.l.LootTheKeyToEverything.class)); cards.add(new SetCardInfo("Lotus Ring", 24, Rarity.MYTHIC, mage.cards.l.LotusRing.class)); cards.add(new SetCardInfo("Oltec Matterweaver", 3, Rarity.MYTHIC, mage.cards.o.OltecMatterweaver.class)); cards.add(new SetCardInfo("Pest Control", 22, Rarity.MYTHIC, mage.cards.p.PestControl.class)); - cards.add(new SetCardInfo("Substitute Synthesizer", 6, Rarity.MYTHIC, mage.cards.s.SubstituteSynthesizer.class)); cards.add(new SetCardInfo("Rest in Peace", 4, Rarity.MYTHIC, mage.cards.r.RestInPeace.class)); + cards.add(new SetCardInfo("Simulacrum Synthesizer", 6, Rarity.MYTHIC, mage.cards.s.SimulacrumSynthesizer.class)); cards.add(new SetCardInfo("Torpor Orb", 27, Rarity.MYTHIC, mage.cards.t.TorporOrb.class)); cards.add(new SetCardInfo("Vaultborn Tyrant", 20, Rarity.MYTHIC, mage.cards.v.VaultbornTyrant.class)); }