forked from Skyrat-SS13/Skyrat-tg
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathmob.dm
47 lines (32 loc) · 1.07 KB
/
mob.dm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/datum/keybinding/mob/stop_pulling
hotkey_keys = list("C", "Delete")
/datum/keybinding/mob/swap_hands
hotkey_keys = list("X")
/datum/keybinding/mob/activate_inhand
hotkey_keys = list("Z")
/datum/keybinding/mob/drop_item
hotkey_keys = list("Q")
/datum/keybinding/mob/toggle_move_intent
hotkey_keys = list("Alt")
/datum/keybinding/mob/toggle_move_intent_alternative
hotkey_keys = list("Unbound")
/datum/keybinding/mob/target/head_cycle
hotkey_keys = list("Numpad8")
/datum/keybinding/mob/target/eyes
hotkey_keys = list("Numpad7")
/datum/keybinding/mob/target/mouth
hotkey_keys = list("Numpad9")
/datum/keybinding/mob/target/r_arm
hotkey_keys = list("Numpad4")
/datum/keybinding/mob/target/body_chest
hotkey_keys = list("Numpad5")
/datum/keybinding/mob/target/left_arm
hotkey_keys = list("Numpad6")
/datum/keybinding/mob/target/right_leg
hotkey_keys = list("Numpad1")
/datum/keybinding/mob/target/body_groin
hotkey_keys = list("Numpad2")
/datum/keybinding/mob/target/left_leg
hotkey_keys = list("Numpad3")
/datum/keybinding/mob/prevent_movement
hotkey_keys = list("Ctrl")