From 281676bfa6a06c379887e5c8bb6d28217394a3e2 Mon Sep 17 00:00:00 2001 From: Starla Insigna Date: Wed, 6 Jun 2012 08:22:54 -0400 Subject: Added some worthless equippable items --- src/com/fourisland/frigidearth/Item.java | 120 +++++++++++++++++++++++++++++++ 1 file changed, 120 insertions(+) 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 return ItemType.Shoes; } }, + GlassHelmet { + public String getItemName() + { + return "Glass Helmet"; + } + + public char getDisplayCharacter() + { + return '^'; + } + + public Color getDisplayColor() + { + return Color.CYAN; + } + + public ItemType getItemType() + { + return ItemType.Helmet; + } + + public int getDefense() + { + return 0; + } + }, + GlassSword { + public String getItemName() + { + return "Glass Sword"; + } + + public char getDisplayCharacter() + { + return '/'; + } + + public Color getDisplayColor() + { + return Color.CYAN; + } + + public ItemType getItemType() + { + return ItemType.Sword; + } + + public int getAttackPower() + { + return 0; + } + }, + GlassShield { + public String getItemName() + { + return "Glass Shield"; + } + + public char getDisplayCharacter() + { + return 'O'; + } + + public Color getDisplayColor() + { + return Color.CYAN; + } + + public ItemType getItemType() + { + return ItemType.Shield; + } + + public int getDefense() + { + return 0; + } + }, + WeddingRing { + public String getItemName() + { + return "Wedding Ring"; + } + + public char getDisplayCharacter() + { + return 'o'; + } + + public Color getDisplayColor() + { + return Color.YELLOW; + } + + public ItemType getItemType() + { + return ItemType.Ring; + } + }, + GlassSlippers { + public String getItemName() + { + return "Glass Slippers"; + } + + public char getDisplayCharacter() + { + return 'd'; + } + + public Color getDisplayColor() + { + return Color.CYAN; + } + + public ItemType getItemType() + { + return ItemType.Shoes; + } + }, Key { public String getItemName() { -- cgit 1.4.1