mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 02:30:08 -08:00
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:
parent
f38da2052b
commit
82a7769cbd
3 changed files with 6 additions and 6 deletions
|
|
@ -35,7 +35,7 @@ public class GathererSymbols implements Iterable<DownloadJob> {
|
|||
"2/W", "2/U", "2/B", "2/R", "2/G",
|
||||
"C/W", "C/U", "C/B", "C/R", "C/G",
|
||||
"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;
|
||||
|
||||
public GathererSymbols() {
|
||||
|
|
@ -99,7 +99,7 @@ public class GathererSymbols implements Iterable<DownloadJob> {
|
|||
case "GWP":
|
||||
case "RGP":
|
||||
case "RWP":
|
||||
case "P":
|
||||
case "H":
|
||||
// need replace to medium size
|
||||
modSizeIndex = 1;
|
||||
break;
|
||||
|
|
@ -119,8 +119,8 @@ public class GathererSymbols implements Iterable<DownloadJob> {
|
|||
case "S":
|
||||
symbol = "snow";
|
||||
break;
|
||||
case "P":
|
||||
symbol = "p";
|
||||
case "H":
|
||||
symbol = "h";
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -47,7 +47,7 @@ public class ScryfallSymbolsSource implements Iterable<DownloadJob> {
|
|||
"2/W", "2/U", "2/B", "2/R", "2/G",
|
||||
"C/W", "C/U", "C/B", "C/R", "C/G",
|
||||
"WP", "UP", "BP", "RP", "GP",
|
||||
"X", "S", "T", "Q", "C", "E", "P"};
|
||||
"X", "S", "T", "Q", "C", "E", "H"};
|
||||
|
||||
@Override
|
||||
public Iterator<DownloadJob> iterator() {
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@ import java.util.UUID;
|
|||
*/
|
||||
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 {
|
||||
filter.add(RageExtractorPredicate.instance);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue