mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 02:30:08 -08:00
Phyrexian mana support. NPH: Mutagenic Growth, Dismember.
This commit is contained in:
parent
3daed99bda
commit
84b79000ff
12 changed files with 267 additions and 15 deletions
|
|
@ -30,9 +30,10 @@ public class ManaSymbols {
|
|||
|
||||
static public void loadImages() {
|
||||
String[] symbols = new String[]{"0", "1", "10", "11", "12", "15", "16", "2", "3", "4", "5", "6", "7", "8", "9", "B", "BG",
|
||||
"BR", "G", "GU", "GW", "R", "RG", "RW", "S", "T", "U", "UB", "UR", "W", "WB", "WU", "X", "Y", "Z", "slash"};
|
||||
"BR", "G", "GU", "GW", "R", "RG", "RW", "S", "T", "U", "UB", "UR", "W", "WB", "WU",
|
||||
"WP", "UP", "BP", "RP", "GP", "X", "Y", "Z", "slash"};
|
||||
for (String symbol : symbols) {
|
||||
File file = new File(Constants.RESOURCE_PATH_MANA_LARGE + "/" + symbol + ".jpg");
|
||||
File file = new File(Constants.RESOURCE_PATH_MANA_MEDIUM + "/" + symbol + ".jpg");
|
||||
Rectangle r = new Rectangle(11, 11);
|
||||
try {
|
||||
Image image = UI.getImageIcon(file.getAbsolutePath()).getImage();
|
||||
|
|
|
|||
|
|
@ -39,6 +39,8 @@ public class GathererSymbols implements Iterable<DownloadJob> {
|
|||
"W/U", "U/B", "B/R", "R/G", "G/W", "W/B", "U/R", "B/G", "R/W", "G/U",
|
||||
|
||||
"2/W", "2/U", "2/B", "2/R", "2/G",
|
||||
|
||||
"WP", "UP", "BP", "RP", "GP",
|
||||
|
||||
"X", "S", "T", "Q"};
|
||||
private static final int minNumeric = 0, maxNumeric = 16;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue