mirror of
https://github.com/magefree/mage.git
synced 2025-12-21 02:52:02 -08:00
[BIG] fix card names
This commit is contained in:
parent
5af2762629
commit
12aedea544
3 changed files with 12 additions and 12 deletions
|
|
@ -20,9 +20,9 @@ import java.util.UUID;
|
||||||
/**
|
/**
|
||||||
* @author Susucr
|
* @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}");
|
super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT}, "{1}{R}");
|
||||||
|
|
||||||
// When Legion Foundry enters the battlefield, it deals 2 damage to any target.
|
// 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);
|
this.addAbility(ability);
|
||||||
}
|
}
|
||||||
|
|
||||||
private LegionFoundry(final LegionFoundry card) {
|
private LegionExtruder(final LegionExtruder card) {
|
||||||
super(card);
|
super(card);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public LegionFoundry copy() {
|
public LegionExtruder copy() {
|
||||||
return new LegionFoundry(this);
|
return new LegionExtruder(this);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -19,7 +19,7 @@ import java.util.UUID;
|
||||||
/**
|
/**
|
||||||
* @author Susucr
|
* @author Susucr
|
||||||
*/
|
*/
|
||||||
public final class SubstituteSynthesizer extends CardImpl {
|
public final class SimulacrumSynthesizer extends CardImpl {
|
||||||
|
|
||||||
private static final FilterPermanent filter =
|
private static final FilterPermanent filter =
|
||||||
new FilterArtifactPermanent("another artifact with mana value 3 or more");
|
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));
|
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}");
|
super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT}, "{2}{U}");
|
||||||
|
|
||||||
// When Substitute Synthesizer enters the battlefield, scry 2.
|
// 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);
|
super(card);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public SubstituteSynthesizer copy() {
|
public SimulacrumSynthesizer copy() {
|
||||||
return new SubstituteSynthesizer(this);
|
return new SimulacrumSynthesizer(this);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -22,13 +22,13 @@ public final class TheBigScore extends ExpansionSet {
|
||||||
this.hasBoosters = false;
|
this.hasBoosters = false;
|
||||||
|
|
||||||
cards.add(new SetCardInfo("Grand Abolisher", 2, Rarity.MYTHIC, mage.cards.g.GrandAbolisher.class));
|
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("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("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("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("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("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("Torpor Orb", 27, Rarity.MYTHIC, mage.cards.t.TorporOrb.class));
|
||||||
cards.add(new SetCardInfo("Vaultborn Tyrant", 20, Rarity.MYTHIC, mage.cards.v.VaultbornTyrant.class));
|
cards.add(new SetCardInfo("Vaultborn Tyrant", 20, Rarity.MYTHIC, mage.cards.v.VaultbornTyrant.class));
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue