home · contact · privacy
Client: Make worldstate file data reading order configurable.
[plomrogue] / client / config / world_data.py
1 world_data = {
2     "avatar_position": [-1, -1],
3     "fov_map": "",
4     "inventory": [],
5     "inventory_selection": 0,
6     "lifepoints": -1,
7     "look": [],
8     "look_mode": False,
9     "look_scroll": 0,
10     "log": [
11 "QUICK COMMAND OVERVIEW: "
12 "Move through map with 'w', 'e', 's', 'd', 'x', 'c'. "
13 "Pick up things with 'P', drop a thing selected from the inventory with 'D' "
14 "or use it with 'P'. "
15 "Move through inventory selection with 'j' and 'k'. "
16 "Toggle looking around mode with 'l'. "
17 "Scroll 'Things here' window with 'J' and 'K'. "
18 "Let AI decide next move with 'A'. "
19 "Quit with 'Q'. ",
20 "STATS OVERVIEW: "
21 "'T': Turn; 'H': Health (the higher, the better); "
22 "'S': Satiation (the closer to zero, the better).",
23 "See README file for more help."
24 ],
25     "map_center": [-1, -1],
26     "map_size": 0,
27     "mem_map": "",
28     "satiation": -1,
29     "turn": -1
30 }