home · contact · privacy
Client: Restructure into modules below client/.
[plomrogue] / client / config / world_data.py
diff --git a/client/config/world_data.py b/client/config/world_data.py
new file mode 100644 (file)
index 0000000..352d1a9
--- /dev/null
@@ -0,0 +1,30 @@
+world_data = {
+    "avatar_position": [-1, -1],
+    "fov_map": "",
+    "inventory": [],
+    "inventory_selection": 0,
+    "lifepoints": -1,
+    "look": [],
+    "look_mode": False,
+    "look_scroll": 0,
+    "log": [
+"QUICK COMMAND OVERVIEW: "
+"Move through map with 'w', 'e', 's', 'd', 'x', 'c'. "
+"Pick up things with 'P', drop a thing selected from the inventory with 'D' "
+"or use it with 'P'. "
+"Move through inventory selection with 'j' and 'k'. "
+"Toggle looking around mode with 'l'. "
+"Scroll 'Things here' window with 'J' and 'K'. "
+"Let AI decide next move with 'A'. "
+"Quit with 'Q'. ",
+"STATS OVERVIEW: "
+"'T': Turn; 'H': Health (the higher, the better); "
+"'S': Satiation (the closer to zero, the better).",
+"See README file for more help."
+],
+    "map_center": [-1, -1],
+    "map_size": 0,
+    "mem_map": "",
+    "satiation": -1,
+    "turn": -1
+}