mirror of
https://github.com/CHOMPstation/CHOMPstation.git
synced 2026-08-26 21:46:51 +01:00
30 lines
1.1 KiB
Plaintext
30 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/weapon/W, mob/user)
|
|
if(istype(W, /obj/item/weapon/wirecutters) || istype(W, /obj/item/weapon/surgical/scalpel))
|
|
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")
|