[BIG] fix card names

This commit is contained in:
theelk801 2024-04-02 21:36:25 -04:00
parent 5af2762629
commit 12aedea544
3 changed files with 12 additions and 12 deletions

View file

@ -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);
}
}

View file

@ -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);
}
}

View file

@ -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));
}