mirror of
https://github.com/correl/mage.git
synced 2024-12-25 11:11:16 +00:00
fixed Centaur Peacemaker's name
This commit is contained in:
parent
8031747b3e
commit
a270235115
2 changed files with 157 additions and 157 deletions
|
@ -15,9 +15,9 @@ import mage.game.Game;
|
|||
*
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class CentaurMediator extends CardImpl {
|
||||
public final class CentaurPeacemaker extends CardImpl {
|
||||
|
||||
public CentaurMediator(UUID ownerId, CardSetInfo setInfo) {
|
||||
public CentaurPeacemaker(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{1}{G}{W}");
|
||||
|
||||
this.subtype.add(SubType.CENTAUR);
|
||||
|
@ -29,13 +29,13 @@ public final class CentaurMediator extends CardImpl {
|
|||
));
|
||||
}
|
||||
|
||||
public CentaurMediator(final CentaurMediator card) {
|
||||
public CentaurPeacemaker(final CentaurPeacemaker card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public CentaurMediator copy() {
|
||||
return new CentaurMediator(this);
|
||||
public CentaurPeacemaker copy() {
|
||||
return new CentaurPeacemaker(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -38,7 +38,7 @@ public final class GuildsOfRavnica extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Boros Guildgate", 244, Rarity.COMMON, mage.cards.b.BorosGuildgate.class));
|
||||
cards.add(new SetCardInfo("Boros Locket", 231, Rarity.COMMON, mage.cards.b.BorosLocket.class));
|
||||
cards.add(new SetCardInfo("Bounty Agent", 2, Rarity.RARE, mage.cards.b.BountyAgent.class));
|
||||
cards.add(new SetCardInfo("Centaur Mediator", 158, Rarity.COMMON, mage.cards.c.CentaurMediator.class));
|
||||
cards.add(new SetCardInfo("Centaur Peacemaker", 158, Rarity.COMMON, mage.cards.c.CentaurPeacemaker.class));
|
||||
cards.add(new SetCardInfo("Chemister's Insight", 32, Rarity.UNCOMMON, mage.cards.c.ChemistersInsight.class));
|
||||
cards.add(new SetCardInfo("Chromatic Lantern", 233, Rarity.RARE, mage.cards.c.ChromaticLantern.class));
|
||||
cards.add(new SetCardInfo("Citywatch Sphinx", 33, Rarity.UNCOMMON, mage.cards.c.CitywatchSphinx.class));
|
||||
|
|
Loading…
Reference in a new issue