home · contact · privacy
Expand terrain and thing content.
[plomrogue2] / plomrogue / things.py
index 98a5995cf5d46824d5f9fee9ebb2ff1a50cc1510..0a06601e8a3836a77cd05602ff010467c2560e92 100644 (file)
@@ -35,8 +35,14 @@ class Thing(ThingBase):
 
 
 
-class Thing_Stone(Thing):
-    symbol_hint = 'o'
+class Thing_Item(Thing):
+    symbol_hint = 'i'
+
+
+
+class Thing_Furniture(Thing):
+    symbol_hint = 'h'
+
 
 
 class ThingAnimate(Thing):