mirror of
https://github.com/correl/mage.git
synced 2024-11-15 03:00:16 +00:00
Merge pull request #1327 from nigelzor/card-title-case
Fix 'Of', 'By' and 'The' in card names
This commit is contained in:
commit
b2e77fc922
12 changed files with 13 additions and 13 deletions
|
@ -37,7 +37,7 @@ import mage.cards.decks.Constructed;
|
|||
public class ShardsOfAlaraBlock extends Constructed {
|
||||
|
||||
public ShardsOfAlaraBlock() {
|
||||
super("Constructed - Shards Of Alara Block");
|
||||
super("Constructed - Shards of Alara Block");
|
||||
setCodes.add("ALA");
|
||||
setCodes.add("CON");
|
||||
setCodes.add("ARB");
|
||||
|
|
|
@ -59,7 +59,7 @@ public class MyojinOfInfiniteRage extends CardImpl {
|
|||
private static final FilterLandPermanent filter = new FilterLandPermanent("lands");
|
||||
|
||||
public MyojinOfInfiniteRage(UUID ownerId) {
|
||||
super(ownerId, 181, "Myojin Of Infinite Rage", Rarity.RARE, new CardType[]{CardType.CREATURE}, "{7}{R}{R}{R}");
|
||||
super(ownerId, 181, "Myojin of Infinite Rage", Rarity.RARE, new CardType[]{CardType.CREATURE}, "{7}{R}{R}{R}");
|
||||
this.expansionSetCode = "CHK";
|
||||
this.supertype.add("Legendary");
|
||||
this.subtype.add("Spirit");
|
||||
|
|
|
@ -53,7 +53,7 @@ public class RyuseiTheFallingStar extends CardImpl {
|
|||
}
|
||||
|
||||
public RyuseiTheFallingStar(UUID ownerID) {
|
||||
super(ownerID, 185, "Ryusei, The Falling Star", Rarity.RARE, new CardType[]{CardType.CREATURE}, "{5}{R}");
|
||||
super(ownerID, 185, "Ryusei, the Falling Star", Rarity.RARE, new CardType[]{CardType.CREATURE}, "{5}{R}");
|
||||
this.expansionSetCode = "CHK";
|
||||
this.supertype.add("Legendary");
|
||||
this.subtype.add("Dragon");
|
||||
|
|
|
@ -104,7 +104,7 @@ class VoiceOfResurgenceTriggeredAbility extends TriggeredAbilityImpl {
|
|||
return true;
|
||||
}
|
||||
}
|
||||
// Voice Of Resurgence Dies
|
||||
// Voice of Resurgence Dies
|
||||
if (event.getType() == GameEvent.EventType.ZONE_CHANGE && getSourceId().equals(event.getTargetId())) {
|
||||
ZoneChangeEvent zce = (ZoneChangeEvent) event;
|
||||
return zce.getFromZone().equals(Zone.BATTLEFIELD) && zce.getToZone().equals(Zone.GRAVEYARD);
|
||||
|
|
|
@ -32,7 +32,7 @@ public class ArenaOfTheAncients extends CardImpl {
|
|||
}
|
||||
|
||||
public ArenaOfTheAncients(UUID ownerId) {
|
||||
super(ownerId, 215, "Arena Of The Ancients", Rarity.RARE, new CardType[]{CardType.ARTIFACT}, "{3}");
|
||||
super(ownerId, 215, "Arena of the Ancients", Rarity.RARE, new CardType[]{CardType.ARTIFACT}, "{3}");
|
||||
this.expansionSetCode = "LEG";
|
||||
|
||||
// When Arena of the Ancients enters the battlefield, tap all Legendary creatures
|
||||
|
|
|
@ -105,7 +105,7 @@ class DjinnOfWishesEffect extends OneShotEffect {
|
|||
Card card = player.getLibrary().getFromTop(game);
|
||||
Cards cards = new CardsImpl();
|
||||
cards.add(card);
|
||||
player.revealCards("Djinn Of Wishes", cards, game);
|
||||
player.revealCards("Djinn of Wishes", cards, game);
|
||||
|
||||
player.getLibrary().removeFromTop(game);
|
||||
|
||||
|
|
|
@ -66,7 +66,7 @@ public class ConsecratedByBlood extends CardImpl {
|
|||
}
|
||||
|
||||
public ConsecratedByBlood(UUID ownerId) {
|
||||
super(ownerId, 87, "Consecrated By Blood", Rarity.UNCOMMON, new CardType[]{CardType.ENCHANTMENT}, "{2}{B}{B}");
|
||||
super(ownerId, 87, "Consecrated by Blood", Rarity.UNCOMMON, new CardType[]{CardType.ENCHANTMENT}, "{2}{B}{B}");
|
||||
this.expansionSetCode = "ORI";
|
||||
this.subtype.add("Aura");
|
||||
|
||||
|
|
|
@ -53,7 +53,7 @@ public class DiscipleOfGrace extends CardImpl {
|
|||
}
|
||||
|
||||
public DiscipleOfGrace(UUID ownerId) {
|
||||
super(ownerId, 10, "Disciple Of Grace", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{1}{W}");
|
||||
super(ownerId, 10, "Disciple of Grace", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{1}{W}");
|
||||
this.expansionSetCode = "USG";
|
||||
this.subtype.add("Human");
|
||||
this.subtype.add("Cleric");
|
||||
|
|
|
@ -53,7 +53,7 @@ public class DiscipleOfLaw extends CardImpl {
|
|||
}
|
||||
|
||||
public DiscipleOfLaw(UUID ownerId) {
|
||||
super(ownerId, 11, "Disciple Of Law", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{1}{W}");
|
||||
super(ownerId, 11, "Disciple of Law", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{1}{W}");
|
||||
this.expansionSetCode = "USG";
|
||||
this.subtype.add("Human");
|
||||
this.subtype.add("Cleric");
|
||||
|
|
|
@ -53,7 +53,7 @@ public class VoiceOfGrace extends CardImpl {
|
|||
}
|
||||
|
||||
public VoiceOfGrace(UUID ownerId) {
|
||||
super(ownerId, 54, "Voice Of Grace", Rarity.UNCOMMON, new CardType[]{CardType.CREATURE}, "{3}{W}");
|
||||
super(ownerId, 54, "Voice of Grace", Rarity.UNCOMMON, new CardType[]{CardType.CREATURE}, "{3}{W}");
|
||||
this.expansionSetCode = "USG";
|
||||
this.subtype.add("Angel");
|
||||
|
||||
|
|
|
@ -52,7 +52,7 @@ public class VoiceOfLaw extends CardImpl {
|
|||
}
|
||||
|
||||
public VoiceOfLaw(UUID ownerId) {
|
||||
super(ownerId, 55, "Voice Of Law", Rarity.UNCOMMON, new CardType[]{CardType.CREATURE}, "{3}{W}");
|
||||
super(ownerId, 55, "Voice of Law", Rarity.UNCOMMON, new CardType[]{CardType.CREATURE}, "{3}{W}");
|
||||
this.expansionSetCode = "USG";
|
||||
this.subtype.add("Angel");
|
||||
|
||||
|
|
|
@ -96,7 +96,7 @@ public class CyclingTest extends CardTestPlayerBase {
|
|||
addCard(Zone.GRAVEYARD, playerA, "Decree of Pain");
|
||||
// Protection from black
|
||||
// Cycling {2} ({2}, Discard this card: Draw a card.)
|
||||
addCard(Zone.BATTLEFIELD, playerB, "Disciple Of Grace");
|
||||
addCard(Zone.BATTLEFIELD, playerB, "Disciple of Grace");
|
||||
|
||||
activateAbility(1, PhaseStep.PRECOMBAT_MAIN, playerA, "Cycling {3}{B}{B}");
|
||||
activateAbility(1, PhaseStep.PRECOMBAT_MAIN, playerB, "Cycling {2}");
|
||||
|
@ -108,7 +108,7 @@ public class CyclingTest extends CardTestPlayerBase {
|
|||
assertHandCount(playerB, 0);
|
||||
|
||||
assertGraveyardCount(playerA, "Decree of Pain", 1);
|
||||
assertPermanentCount(playerB, "Disciple Of Grace", 1);
|
||||
assertPermanentCount(playerB, "Disciple of Grace", 1);
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue