Files
Polaris/code/modules/clothing/gloves/boxing.dm
2022-04-17 19:14:32 -08:00

32 lines
1.1 KiB
Plaintext

/obj/item/clothing/gloves/boxing
name = "boxing gloves"
desc = "Because you really needed another excuse to punch your crewmates."
icon_state = "boxing"
item_state_slots = list(slot_r_hand_str = "red", slot_l_hand_str = "red")
/*
/obj/item/clothing/gloves/boxing/attackby(obj/item/W, mob/user)
if(W.is_wirecutter() || istype(W, /obj/item/surgical/scalpel))
to_chat(user, "<span class='notice'>That won't work.</span>") //Nope
return
..()
*/
/obj/item/clothing/gloves/boxing/green
icon_state = "boxinggreen"
item_state_slots = list(slot_r_hand_str = "green", slot_l_hand_str = "green")
/obj/item/clothing/gloves/boxing/blue
icon_state = "boxingblue"
item_state_slots = list(slot_r_hand_str = "blue", slot_l_hand_str = "blue")
/obj/item/clothing/gloves/boxing/yellow
icon_state = "boxingyellow"
item_state_slots = list(slot_r_hand_str = "yellow", slot_l_hand_str = "yellow")
/obj/item/clothing/gloves/white
name = "white gloves"
desc = "These look pretty fancy."
icon_state = "latex"
item_state_slots = list(slot_r_hand_str = "white", slot_l_hand_str = "white")