From c9744caa15350f07626676d0dc48e38be317494a Mon Sep 17 00:00:00 2001 From: troido Date: Fri, 18 Jan 2019 18:11:04 +0100 Subject: changed filenames for resource configs --- asciifarm/keybindings/default.json | 42 ++++++++++++++++++++++++++++++++++ asciifarm/keybindings/keybindings.json | 42 ---------------------------------- 2 files changed, 42 insertions(+), 42 deletions(-) create mode 100644 asciifarm/keybindings/default.json delete mode 100644 asciifarm/keybindings/keybindings.json (limited to 'asciifarm/keybindings') diff --git a/asciifarm/keybindings/default.json b/asciifarm/keybindings/default.json new file mode 100644 index 0000000..a816527 --- /dev/null +++ b/asciifarm/keybindings/default.json @@ -0,0 +1,42 @@ +{ +"actions": { +"w": ["move", "north"], +"s": ["move", "south"], +"d": ["move", "east"], +"a": ["move", "west"], +"KEY_UP": ["move", "north"], +"KEY_DOWN": ["move", "south"], +"KEY_RIGHT": ["move", "east"], +"KEY_LEFT": ["move", "west"], +"k": ["move", "north"], +"j": ["move", "south"], +"l": ["move", "east"], +"h": ["move", "west"], +"e": ["input", ["take"]], +"q": ["unuse"], +"Q": ["take"], +"E": ["use"], +"R": ["input", ["interact"]], +"r": ["input", ["interact", [null, "north", "south", "east", "west"]]], +"x": ["selectitem", -1, true, true], +"c": ["selectitem", 1, true, true], +"v": ["selectwidget", -1, true, true], +"b": ["selectwidget", 1, true, true], +"-": ["selectitem", -1, true, true], +"+": ["selectitem", 1, true, true], +"/": ["selectwidget", -1, true, true], +"*": ["selectwidget", 1, true, true], +"f": ["input", ["attack", [null, "north", "south", "east", "west"]]], +"F": ["input", ["attack"]], +"W": ["input", ["attack", "north"]], +"S": ["input", ["attack", "south"]], +"D": ["input", ["attack", "east"]], +"A": ["input", ["attack", "west"]], +"t": ["runinput"], +"NEWLINE": ["runinput"], +"KEY_PPAGE": ["scrollchat", 1], +"KEY_NPAGE": ["scrollchat", -1], +"/": ["runinput", "/"] +}, +"help": "Controls:\n wasd or arrows:\n Move around\n e: Grab\n q: Drop/unequip\n selected\n r: Interact\n f: Attack\n t: Chat\n E: Use selected\n Q: Take selected\n xc: select item\n vb: select menu\n ctrl-c: close client" +} diff --git a/asciifarm/keybindings/keybindings.json b/asciifarm/keybindings/keybindings.json deleted file mode 100644 index a816527..0000000 --- a/asciifarm/keybindings/keybindings.json +++ /dev/null @@ -1,42 +0,0 @@ -{ -"actions": { -"w": ["move", "north"], -"s": ["move", "south"], -"d": ["move", "east"], -"a": ["move", "west"], -"KEY_UP": ["move", "north"], -"KEY_DOWN": ["move", "south"], -"KEY_RIGHT": ["move", "east"], -"KEY_LEFT": ["move", "west"], -"k": ["move", "north"], -"j": ["move", "south"], -"l": ["move", "east"], -"h": ["move", "west"], -"e": ["input", ["take"]], -"q": ["unuse"], -"Q": ["take"], -"E": ["use"], -"R": ["input", ["interact"]], -"r": ["input", ["interact", [null, "north", "south", "east", "west"]]], -"x": ["selectitem", -1, true, true], -"c": ["selectitem", 1, true, true], -"v": ["selectwidget", -1, true, true], -"b": ["selectwidget", 1, true, true], -"-": ["selectitem", -1, true, true], -"+": ["selectitem", 1, true, true], -"/": ["selectwidget", -1, true, true], -"*": ["selectwidget", 1, true, true], -"f": ["input", ["attack", [null, "north", "south", "east", "west"]]], -"F": ["input", ["attack"]], -"W": ["input", ["attack", "north"]], -"S": ["input", ["attack", "south"]], -"D": ["input", ["attack", "east"]], -"A": ["input", ["attack", "west"]], -"t": ["runinput"], -"NEWLINE": ["runinput"], -"KEY_PPAGE": ["scrollchat", 1], -"KEY_NPAGE": ["scrollchat", -1], -"/": ["runinput", "/"] -}, -"help": "Controls:\n wasd or arrows:\n Move around\n e: Grab\n q: Drop/unequip\n selected\n r: Interact\n f: Attack\n t: Chat\n E: Use selected\n Q: Take selected\n xc: select item\n vb: select menu\n ctrl-c: close client" -} -- cgit