home · contact · privacy
Add crates.
[plomrogue2] / plomrogue / things.py
index a0db94a0f639907d0cd1d35169c8d77cf3e19b9f..25197980ff860b165349ebd89fe98c2c06f5d45a 100644 (file)
@@ -456,6 +456,28 @@ class Thing_CookieSpawner(Thing):
 
 
 
+class Thing_Crate(Thing):
+    portable = True
+    symbol_hint = 'C'
+
+    def __init__(self, *args, **kwargs):
+        super().__init__(*args, **kwargs)
+        self.content = []
+
+    def accept(self, thing):
+        self.content += [thing]
+
+    def remove_from_crate(self, thing):
+        self.content.remove(thing)
+
+
+
+class Thing_CrateSpawner(ThingSpawner):
+    child_type = 'Crate'
+    symbol_hint = 'C'
+
+
+
 class ThingAnimate(Thing):
     weariness = 0