Update Rage Extractor's Phyrexian mana symbol (#12612)

* Switch Rage Extractor's Phyrexian mana symbol letter code to {H} instead of {P}
This commit is contained in:
jimga150 2024-07-30 00:40:21 -04:00 committed by GitHub
parent f38da2052b
commit 82a7769cbd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 6 additions and 6 deletions

View file

@ -35,7 +35,7 @@ public class GathererSymbols implements Iterable<DownloadJob> {
"2/W", "2/U", "2/B", "2/R", "2/G", "2/W", "2/U", "2/B", "2/R", "2/G",
"C/W", "C/U", "C/B", "C/R", "C/G", "C/W", "C/U", "C/B", "C/R", "C/G",
"WP", "UP", "BP", "RP", "GP", "WP", "UP", "BP", "RP", "GP",
"X", "S", "T", "Q", "C", "E", "P"}; "X", "S", "T", "Q", "C", "E", "H"};
private static final int minNumeric = 0, maxNumeric = 16; private static final int minNumeric = 0, maxNumeric = 16;
public GathererSymbols() { public GathererSymbols() {
@ -99,7 +99,7 @@ public class GathererSymbols implements Iterable<DownloadJob> {
case "GWP": case "GWP":
case "RGP": case "RGP":
case "RWP": case "RWP":
case "P": case "H":
// need replace to medium size // need replace to medium size
modSizeIndex = 1; modSizeIndex = 1;
break; break;
@ -119,8 +119,8 @@ public class GathererSymbols implements Iterable<DownloadJob> {
case "S": case "S":
symbol = "snow"; symbol = "snow";
break; break;
case "P": case "H":
symbol = "p"; symbol = "h";
break; break;
} }

View file

@ -47,7 +47,7 @@ public class ScryfallSymbolsSource implements Iterable<DownloadJob> {
"2/W", "2/U", "2/B", "2/R", "2/G", "2/W", "2/U", "2/B", "2/R", "2/G",
"C/W", "C/U", "C/B", "C/R", "C/G", "C/W", "C/U", "C/B", "C/R", "C/G",
"WP", "UP", "BP", "RP", "GP", "WP", "UP", "BP", "RP", "GP",
"X", "S", "T", "Q", "C", "E", "P"}; "X", "S", "T", "Q", "C", "E", "H"};
@Override @Override
public Iterator<DownloadJob> iterator() { public Iterator<DownloadJob> iterator() {

View file

@ -23,7 +23,7 @@ import java.util.UUID;
*/ */
public final class RageExtractor extends CardImpl { public final class RageExtractor extends CardImpl {
private static final FilterSpell filter = new FilterSpell("a spell with {P} in its mana cost"); private static final FilterSpell filter = new FilterSpell("a spell with {H} in its mana cost");
static { static {
filter.add(RageExtractorPredicate.instance); filter.add(RageExtractorPredicate.instance);