X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=server%2Fconfig%2Fworld_data.py;h=8e5a781dac66acc70b10b4f8555b8e110ee23d0f;hb=72f01c15fb5297de8237a333adcce904ac1e3903;hp=e9c6bac21551e7b78b36c295c48e9a76d480c3db;hpb=0a56367e8396b2ece4c1bce8a25e93ceabd901c1;p=plomrogue diff --git a/server/config/world_data.py b/server/config/world_data.py index e9c6bac..8e5a781 100644 --- a/server/config/world_data.py +++ b/server/config/world_data.py @@ -10,11 +10,48 @@ world_db = { "PLAYER_TYPE": 0, "WORLD_ACTIVE": 0, "MAP": False, + "PLUGIN": [], "ThingActions": {}, "ThingTypes": {}, - "Things": {} + "Things": {}, + "terrain_names": { + " ": "UNKNOWN", + "X": "TREE", + "~": "SEA", + ".": "EARTH" + } } """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 +} + +thingtype_defaults = { + "TT_NAME": "(none)", + "TT_TOOLPOWER": 0, + "TT_LIFEPOINTS": 0, + "TT_PROLIFERATE": 0, + "TT_START_NUMBER": 0, + "TT_SYMBOL": "?", + "TT_TOOL": "" +} + +symbols_passable = "." +symbols_hide = "X" + +thingprol_field_spreadable = lambda x, y: x in symbols_passable +thingprol_test_hook = lambda x: True +thingprol_post_create_hook = lambda x: None