about summary refs log tree commit diff stats
path: root/src/com/fourisland
diff options
context:
space:
mode:
authorStarla Insigna <hatkirby@fourisland.com>2012-06-03 21:03:34 -0400
committerStarla Insigna <hatkirby@fourisland.com>2012-06-03 21:03:34 -0400
commit9f38ea990f484c919b8e7986cb38579fc22b78ec (patch)
tree6c5c9f68b1a1b6780be553471c6ee2be3973dea9 /src/com/fourisland
parenta095ccfa9d40d93e89f17acbcd4df04cebe71338 (diff)
downloadfrigidearth-9f38ea990f484c919b8e7986cb38579fc22b78ec.tar.gz
frigidearth-9f38ea990f484c919b8e7986cb38579fc22b78ec.tar.bz2
frigidearth-9f38ea990f484c919b8e7986cb38579fc22b78ec.zip
Changed color scheme to give game more of a "cold" feeling
Diffstat (limited to 'src/com/fourisland')
-rw-r--r--src/com/fourisland/frigidearth/Tile.java16
1 files changed, 13 insertions, 3 deletions
diff --git a/src/com/fourisland/frigidearth/Tile.java b/src/com/fourisland/frigidearth/Tile.java index cc128a6..be17d6c 100644 --- a/src/com/fourisland/frigidearth/Tile.java +++ b/src/com/fourisland/frigidearth/Tile.java
@@ -26,7 +26,7 @@ public enum Tile
26 26
27 public Color getBackgroundColor() 27 public Color getBackgroundColor()
28 { 28 {
29 return new Color(96, 51, 17); 29 return new Color(0, 63, 135);
30 } 30 }
31 }, 31 },
32 DirtFloor { 32 DirtFloor {
@@ -37,7 +37,7 @@ public enum Tile
37 37
38 public Color getBackgroundColor() 38 public Color getBackgroundColor()
39 { 39 {
40 return new Color(205, 127, 50); 40 return new Color(162, 181, 205);
41 } 41 }
42 }, 42 },
43 StoneWall { 43 StoneWall {
@@ -75,7 +75,7 @@ public enum Tile
75 75
76 public Color getBackgroundColor() 76 public Color getBackgroundColor()
77 { 77 {
78 return new Color(96, 51, 17); 78 return new Color(0, 63, 135);
79 } 79 }
80 }, 80 },
81 UpStairs { 81 UpStairs {
@@ -88,6 +88,11 @@ public enum Tile
88 { 88 {
89 return '>'; 89 return '>';
90 } 90 }
91
92 public Color getBackgroundColor()
93 {
94 return new Color(162, 181, 205);
95 }
91 }, 96 },
92 DownStairs { 97 DownStairs {
93 public boolean isBlocked() 98 public boolean isBlocked()
@@ -99,6 +104,11 @@ public enum Tile
99 { 104 {
100 return '<'; 105 return '<';
101 } 106 }
107
108 public Color getBackgroundColor()
109 {
110 return new Color(162, 181, 205);
111 }
102 }; 112 };
103 113
104 public abstract boolean isBlocked(); 114 public abstract boolean isBlocked();