Phyrexian mana support. NPH: Mutagenic Growth, Dismember.

This commit is contained in:
magenoxx 2011-05-29 23:12:21 +04:00
parent 3daed99bda
commit 84b79000ff
12 changed files with 267 additions and 15 deletions

View file

@ -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);

View file

@ -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();