Files
VOREStation/code/modules/clothing/gloves/boxing.dm
T
Guti 29eaa9948e Adds clothing traits (#18804)
* clothes

* zap

* Makes boxing gloves use the new system

---------

Co-authored-by: Cameron Lennox <killer65311@gmail.com>
2025-11-21 06:38:43 -05:00

25 lines
911 B
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")
clothing_traits = list(TRAIT_NONLETHAL_BLOWS)
/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")