/datum/keybinding/mob/target_head_cycle hotkey_keys = list("Numpad8") name = "target_head_cycle" full_name = "Target: Cycle head" description = "" category = CATEGORY_TARGETING /datum/keybinding/mob/target_head_cycle/down(client/user) user.body_toggle_head() return TRUE /datum/keybinding/mob/target_r_arm hotkey_keys = list("Numpad4") name = "target_r_arm" full_name = "Target: right arm" description = "" category = CATEGORY_TARGETING /datum/keybinding/mob/target_r_arm/down(client/user) user.body_r_arm() return TRUE /datum/keybinding/mob/target_body_chest hotkey_keys = list("Numpad5") name = "target_body_chest" full_name = "Target: Body" description = "" category = CATEGORY_TARGETING /datum/keybinding/mob/target_body_chest/down(client/user) user.body_chest() return TRUE /datum/keybinding/mob/target_left_arm hotkey_keys = list("Numpad6") name = "target_left_arm" full_name = "Target: left arm" description = "" category = CATEGORY_TARGETING /datum/keybinding/mob/target_left_arm/down(client/user) user.body_l_arm() return TRUE /datum/keybinding/mob/target_right_leg hotkey_keys = list("Numpad1") name = "target_right_leg" full_name = "Target: Right leg" description = "" category = CATEGORY_TARGETING /datum/keybinding/mob/target_right_leg/down(client/user) user.body_r_leg() return TRUE /datum/keybinding/mob/target_body_groin hotkey_keys = list("Numpad2") name = "target_body_groin" full_name = "Target: Groin" description = "" category = CATEGORY_TARGETING /datum/keybinding/mob/target_body_groin/down(client/user) user.body_groin() return TRUE /datum/keybinding/mob/target_left_leg hotkey_keys = list("Numpad3") name = "target_left_leg" full_name = "Target: left leg" description = "" category = CATEGORY_TARGETING /datum/keybinding/mob/target_left_leg/down(client/user) user.body_l_leg() return TRUE