mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-01-26 17:22:56 +00:00
75 lines
2.5 KiB
Plaintext
75 lines
2.5 KiB
Plaintext
/obj/item/nitrilebox
|
|
name = "nitrile gloves box"
|
|
desc = "Contains nitrile gloves."
|
|
icon = 'icons/obj/storage.dmi'
|
|
icon_state = "nitrilebox"
|
|
item_state = "sheet-metal"
|
|
drop_sound = 'sound/items/drop/cardboardbox.ogg'
|
|
pickup_sound = 'sound/items/pickup/cardboardbox.ogg'
|
|
throwforce = 1
|
|
w_class = ITEMSIZE_NORMAL
|
|
throw_speed = 3
|
|
throw_range = 7
|
|
layer = OBJ_LAYER - 0.1
|
|
var/amount = 50 //How much paper is in the bin. Gloves, actually, but this code is copied from the paper bin code.
|
|
|
|
/obj/item/nitrilebox/MouseDrop(mob/user)
|
|
if((user == usr && (!( usr.restrained() ) && (!( usr.stat ) && (usr.contents.Find(src) || in_range(src, usr))))))
|
|
if(!istype(usr, /mob/living/carbon/slime) && !istype(usr, /mob/living/simple_animal))
|
|
if( !usr.get_active_hand() ) //if active hand is empty
|
|
var/mob/living/carbon/human/H = user
|
|
var/obj/item/organ/external/temp = H.organs_by_name[BP_R_HAND]
|
|
|
|
if (H.hand)
|
|
temp = H.organs_by_name[BP_L_HAND]
|
|
if(temp && !temp.is_usable())
|
|
to_chat(user, SPAN_NOTICE("You try to move your [temp.name], but cannot!"))
|
|
return
|
|
|
|
to_chat(user, SPAN_NOTICE("You pick up [src]."))
|
|
user.put_in_hands(src)
|
|
|
|
return
|
|
|
|
/obj/item/nitrilebox/attack_hand(mob/user)
|
|
if(ishuman(user))
|
|
var/mob/living/carbon/human/H = user
|
|
var/obj/item/organ/external/temp = H.organs_by_name[BP_R_HAND]
|
|
if (H.hand)
|
|
temp = H.organs_by_name[BP_L_HAND]
|
|
if(temp && !temp.is_usable())
|
|
to_chat(user, SPAN_NOTICE("You try to move your [temp.name], but cannot!"))
|
|
return
|
|
var/response = ""
|
|
if(amount > 0)
|
|
response = alert(user, "Do you take a pair of gloves?", "Take gloves?", "Yes", "No")
|
|
if (response != "Yes")
|
|
add_fingerprint(user)
|
|
return
|
|
amount--
|
|
var/obj/item/clothing/gloves/latex/nitrile/P
|
|
P = new()
|
|
P.forceMove(user.loc)
|
|
user.put_in_hands(P)
|
|
to_chat(user, SPAN_NOTICE("You take [P] out of [src]."))
|
|
else
|
|
to_chat(user, SPAN_NOTICE("[src] is empty!"))
|
|
|
|
add_fingerprint(user)
|
|
return
|
|
|
|
|
|
/obj/item/nitrilebox/attackby(obj/item/O, mob/user)
|
|
if(istype(O, /obj/item/clothing/gloves/latex/nitrile))
|
|
to_chat(user, SPAN_WARNING("The box is designed to not allow gloves to be put back in. Besides, it would be unsanitary."))
|
|
|
|
|
|
/obj/item/nitrilebox/examine(mob/user)
|
|
if(get_dist(src, user) <= 1)
|
|
if(amount)
|
|
to_chat(user, SPAN_NOTICE("There " + (amount > 1 ? "are [amount] pairs of gloves" : "is one pair of gloves") + " in the box."))
|
|
else
|
|
to_chat(user, SPAN_NOTICE("There are no gloves in the box. Time to throw it away."))
|
|
return
|
|
|