mirror of
https://github.com/magefree/mage.git
synced 2025-12-23 20:11:59 -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
|
|
@ -28,7 +28,8 @@ 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");
|
||||
Rectangle r = new Rectangle(11, 11);
|
||||
|
|
|
|||
|
|
@ -114,6 +114,11 @@ public class FeedbackPanel extends javax.swing.JPanel {
|
|||
break;
|
||||
}
|
||||
this.btnSpecial.setVisible(special);
|
||||
this.btnSpecial.setText("Special");
|
||||
if (message.contains("P}")) {
|
||||
this.btnSpecial.setVisible(true);
|
||||
this.btnSpecial.setText("Pay 2 life");
|
||||
}
|
||||
handleOptions(options);
|
||||
this.revalidate();
|
||||
this.repaint();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue