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 thingtype_defaults = {
52 symbols_passable = "."
54 thingprol_field_spreadable = lambda x, y: x in symbols_passable
55 thingprol_test_hook = lambda x: True
56 thingprol_post_create_hook = lambda x: None