Skip to content

Commit

Permalink
fixed non-numeric collector numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
tiera3 authored Feb 24, 2024
1 parent 31130a2 commit a7eb7e0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Mage.Sets/src/mage/sets/ArenaNewPlayerBeginner.java
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ private ArenaNewPlayerBeginner() {
cards.add(new SetCardInfo("Rampaging Brontodon", 102, Rarity.RARE, mage.cards.r.RampagingBrontodon.class));
cards.add(new SetCardInfo("Reduce to Ashes", 83, Rarity.COMMON, mage.cards.r.ReduceToAshes.class));
cards.add(new SetCardInfo("Riddlemaster Sphinx", 31, Rarity.RARE, mage.cards.r.RiddlemasterSphinx.class));
cards.add(new SetCardInfo("Rise from the Grave", 56b, Rarity.UNCOMMON, mage.cards.r.RiseFromTheGrave.class));
cards.add(new SetCardInfo("Rise from the Grave", "56b", Rarity.UNCOMMON, mage.cards.r.RiseFromTheGrave.class));
cards.add(new SetCardInfo("River's Favor", 32, Rarity.COMMON, mage.cards.r.RiversFavor.class));
cards.add(new SetCardInfo("Rumbling Baloth", 103, Rarity.COMMON, mage.cards.r.RumblingBaloth.class));
cards.add(new SetCardInfo("Sanctuary Cat", 17, Rarity.COMMON, mage.cards.s.SanctuaryCat.class));
Expand All @@ -108,7 +108,7 @@ private ArenaNewPlayerBeginner() {
cards.add(new SetCardInfo("Sentinel Spider", 104, Rarity.UNCOMMON, mage.cards.s.SentinelSpider.class));
cards.add(new SetCardInfo("Serra Angel", 18, Rarity.UNCOMMON, mage.cards.s.SerraAngel.class));
cards.add(new SetCardInfo("Shock", 84, Rarity.COMMON, mage.cards.s.Shock.class));
cards.add(new SetCardInfo("Shorecomber Crab", 32a, Rarity.COMMON, mage.cards.s.ShorecomberCrab.class));
cards.add(new SetCardInfo("Shorecomber Crab", "32a", Rarity.COMMON, mage.cards.s.ShorecomberCrab.class));
cards.add(new SetCardInfo("Shrine Keeper", 19, Rarity.COMMON, mage.cards.s.ShrineKeeper.class));
cards.add(new SetCardInfo("Siege Dragon", 85, Rarity.RARE, mage.cards.s.SiegeDragon.class));
cards.add(new SetCardInfo("Skeleton Archer", 61, Rarity.COMMON, mage.cards.s.SkeletonArcher.class));
Expand Down Expand Up @@ -143,4 +143,4 @@ private ArenaNewPlayerBeginner() {
cards.add(new SetCardInfo("World Shaper", 110, Rarity.RARE, mage.cards.w.WorldShaper.class));
cards.add(new SetCardInfo("Zephyr Gull", 44, Rarity.COMMON, mage.cards.z.ZephyrGull.class));
}
}
}

0 comments on commit a7eb7e0

Please sign in to comment.