X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=client%2Fconfig%2Fworld_data.py;fp=client%2Fconfig%2Fworld_data.py;h=352d1a9f9b9de2e6123da3665b3be1994c2c097c;hb=3d4ef72a869787ade399af85a42ab0aef9d73766;hp=0000000000000000000000000000000000000000;hpb=0f6eaa570370b9339c30f5c616b3f744f3104a53;p=plomrogue diff --git a/client/config/world_data.py b/client/config/world_data.py new file mode 100644 index 0000000..352d1a9 --- /dev/null +++ b/client/config/world_data.py @@ -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 +}