about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--src/com/fourisland/frigidearth/Item.java120
1 files changed, 120 insertions, 0 deletions
diff --git a/src/com/fourisland/frigidearth/Item.java b/src/com/fourisland/frigidearth/Item.java index 63f2f02..d58f3c3 100644 --- a/src/com/fourisland/frigidearth/Item.java +++ b/src/com/fourisland/frigidearth/Item.java
@@ -170,6 +170,126 @@ public enum Item
170 return ItemType.Shoes; 170 return ItemType.Shoes;
171 } 171 }
172 }, 172 },
173 GlassHelmet {
174 public String getItemName()
175 {
176 return "Glass Helmet";
177 }
178
179 public char getDisplayCharacter()
180 {
181 return '^';
182 }
183
184 public Color getDisplayColor()
185 {
186 return Color.CYAN;
187 }
188
189 public ItemType getItemType()
190 {
191 return ItemType.Helmet;
192 }
193
194 public int getDefense()
195 {
196 return 0;
197 }
198 },
199 GlassSword {
200 public String getItemName()
201 {
202 return "Glass Sword";
203 }
204
205 public char getDisplayCharacter()
206 {
207 return '/';
208 }
209
210 public Color getDisplayColor()
211 {
212 return Color.CYAN;
213 }
214
215 public ItemType getItemType()
216 {
217 return ItemType.Sword;
218 }
219
220 public int getAttackPower()
221 {
222 return 0;
223 }
224 },
225 GlassShield {
226 public String getItemName()
227 {
228 return "Glass Shield";
229 }
230
231 public char getDisplayCharacter()
232 {
233 return 'O';
234 }
235
236 public Color getDisplayColor()
237 {
238 return Color.CYAN;
239 }
240
241 public ItemType getItemType()
242 {
243 return ItemType.Shield;
244 }
245
246 public int getDefense()
247 {
248 return 0;
249 }
250 },
251 WeddingRing {
252 public String getItemName()
253 {
254 return "Wedding Ring";
255 }
256
257 public char getDisplayCharacter()
258 {
259 return 'o';
260 }
261
262 public Color getDisplayColor()
263 {
264 return Color.YELLOW;
265 }
266
267 public ItemType getItemType()
268 {
269 return ItemType.Ring;
270 }
271 },
272 GlassSlippers {
273 public String getItemName()
274 {
275 return "Glass Slippers";
276 }
277
278 public char getDisplayCharacter()
279 {
280 return 'd';
281 }
282
283 public Color getDisplayColor()
284 {
285 return Color.CYAN;
286 }
287
288 public ItemType getItemType()
289 {
290 return ItemType.Shoes;
291 }
292 },
173 Key { 293 Key {
174 public String getItemName() 294 public String getItemName()
175 { 295 {