home · contact · privacy
Server: Make default thing attributes configurable.
[plomrogue] / server / config / world_data.py
index e8639c5b551494f4e4a92952e650bb9b5ac31664..193da78a4367286e575b0fb4eb77010f0764b608 100644 (file)
@@ -19,3 +19,16 @@ world_db = {
 """Mapping of direction names to internal direction chars."""
 directions_db = {"east": "d", "south-east": "c", "south-west": "x",
                  "west": "s", "north-west": "w", "north-east": "e"}
+
+thing_defaults = {
+        "T_ARGUMENT": 0,
+        "T_PROGRESS": 0,
+        "T_SATIATION": 0,
+        "T_COMMAND": 0,
+        "T_CARRIES": [],
+        "carried": False,
+        "T_MEMTHING": [],
+        "T_MEMMAP": False,
+        "T_MEMDEPTHMAP": False,
+        "fovmap": False
+}