home · contact · privacy
Transform items into food to replenish player energy.
[plomrogue2-experiments] / new / plomrogue / things.py
index 112a1ce9449399700afe28e33b4f4c1a52990c8e..f4cc2aeeae689d788223d648407bb9c2215985d0 100644 (file)
@@ -29,7 +29,12 @@ class Thing(ThingBase):
 
 
 class ThingItem(Thing):
-    type_ = 'item'
+    pass
+
+
+
+class ThingFood(ThingItem):
+    type_ = 'food'