home · contact · privacy
Server: Add terrain description to things_here command.
[plomrogue] / server / config / world_data.py
index 193da78a4367286e575b0fb4eb77010f0764b608..ec1e9b15c7d52a24c88b1c99e2a59dec32296a9e 100644 (file)
@@ -13,7 +13,13 @@ world_db = {
     "PLUGIN": [],
     "ThingActions": {},
     "ThingTypes": {},
-    "Things": {}
+    "Things": {},
+    "terrain_names": {
+        " ": "UNKNOWN",
+        "X": "TREE",
+        "~": "SEA",
+        ".": "EARTH"
+    }
 }
 
 """Mapping of direction names to internal direction chars."""
@@ -32,3 +38,5 @@ thing_defaults = {
         "T_MEMDEPTHMAP": False,
         "fovmap": False
 }
+
+symbols_passable = "."