X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=server%2Fconfig%2Fworld_data.py;h=ec1e9b15c7d52a24c88b1c99e2a59dec32296a9e;hb=8c32a319ac3378e5c07f4d2cc34d671f5efdb1d1;hp=193da78a4367286e575b0fb4eb77010f0764b608;hpb=599249e2b0b374b12e65fb92a9a6dc524afba40f;p=plomrogue diff --git a/server/config/world_data.py b/server/config/world_data.py index 193da78..ec1e9b1 100644 --- a/server/config/world_data.py +++ b/server/config/world_data.py @@ -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 = "."