1 # This file is part of PlomRogue. PlomRogue is licensed under the GPL version 3
2 # or any later version. For details on its copyright, license, and warranties,
3 # see the file NOTICE in the root directory of the PlomRogue source package.
6 """World state database. With sane default values. (Randomness is in rand.)"""
25 """Mapping of direction names to internal direction chars."""
26 directions_db = {"east": "d", "south-east": "c", "south-west": "x",
27 "west": "s", "north-west": "w", "north-east": "e"}
38 "T_MEMDEPTHMAP": False,
42 symbols_passable = "."