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