Support displaying Chaos icon in details

This commit is contained in:
drdev
2013-11-14 09:20:29 +00:00
parent 5548c71bda
commit ee00b544f7
4 changed files with 2 additions and 2 deletions

View File

@@ -173,7 +173,6 @@ public class CardRulesReader {
case 'O':
if ("Oracle".equals(key)) {
this.faces[this.curFace].setOracleText(value);
}
break;
@@ -224,7 +223,6 @@ public class CardRulesReader {
}
break;
}
}
/**

View File

@@ -1323,6 +1323,7 @@ public enum FSkin {
IMG_SNOW (new int[] {320, 160, 40, 40}), /** */
IMG_TAP (new int[] {660, 440, 20, 20}), /** */
IMG_UNTAP (new int[] {640, 460, 20, 20}), /** */
IMG_CHAOS (new int[] {320, 400, 40, 40}), /** */
IMG_SLASH (new int[] {660, 400, 10, 13}), /** */
IMG_ATTACK (new int[] {160, 320, 80, 80, 32, 32}), /** */
IMG_DEFEND (new int[] {160, 400, 80, 80, 32, 32}), /** */
@@ -1919,6 +1920,7 @@ public enum FSkin {
addEncodingSymbol("X", ColorlessManaImages.IMG_X);
addEncodingSymbol("Y", ColorlessManaImages.IMG_Y);
addEncodingSymbol("Z", ColorlessManaImages.IMG_Z);
addEncodingSymbol("C", GameplayImages.IMG_CHAOS);
addEncodingSymbol("Q", GameplayImages.IMG_UNTAP);
addEncodingSymbol("S", GameplayImages.IMG_SNOW);
addEncodingSymbol("T", GameplayImages.IMG_TAP);