mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-28 18:11:16 +00:00
Splits the restrained() proc into component traits: TRAIT_HANDS_BLOCKED for the general inability to use hands and TRAIT_RESTRAINED for the more specific condition that permits arrests.
Code moved away from the update_mobility() proc so it doesn't have to wait for an update, instead changing based on events. The idea is to eventually kill that proc.
Wrapper proc added for setting the handcuffed value so we can react to the event of it changing.
Kills the RestrainedClickOn() proc. That is now just an UnarmedAttack(), in where the ability to use hands can be checked. Monkeys keep their bite attack and humans their self-examine.
133 lines
3.5 KiB
Plaintext
133 lines
3.5 KiB
Plaintext
/obj/item/folder
|
|
name = "folder"
|
|
desc = "A folder."
|
|
icon = 'icons/obj/bureaucracy.dmi'
|
|
icon_state = "folder"
|
|
w_class = WEIGHT_CLASS_SMALL
|
|
pressure_resistance = 2
|
|
resistance_flags = FLAMMABLE
|
|
|
|
/obj/item/folder/suicide_act(mob/living/user)
|
|
user.visible_message("<span class='suicide'>[user] begins filing an imaginary death warrant! It looks like [user.p_theyre()] trying to commit suicide!</span>")
|
|
return OXYLOSS
|
|
|
|
/obj/item/folder/blue
|
|
desc = "A blue folder."
|
|
icon_state = "folder_blue"
|
|
|
|
/obj/item/folder/red
|
|
desc = "A red folder."
|
|
icon_state = "folder_red"
|
|
|
|
/obj/item/folder/yellow
|
|
desc = "A yellow folder."
|
|
icon_state = "folder_yellow"
|
|
|
|
/obj/item/folder/white
|
|
desc = "A white folder."
|
|
icon_state = "folder_white"
|
|
|
|
|
|
/obj/item/folder/update_overlays()
|
|
. = ..()
|
|
if(contents.len)
|
|
. += "folder_paper"
|
|
|
|
|
|
/obj/item/folder/attackby(obj/item/W, mob/user, params)
|
|
if(burn_paper_product_attackby_check(W, user))
|
|
return
|
|
if(istype(W, /obj/item/paper) || istype(W, /obj/item/photo) || istype(W, /obj/item/documents))
|
|
if(!user.transferItemToLoc(W, src))
|
|
return
|
|
to_chat(user, "<span class='notice'>You put [W] into [src].</span>")
|
|
update_icon()
|
|
else if(istype(W, /obj/item/pen))
|
|
if(!user.is_literate())
|
|
to_chat(user, "<span class='notice'>You scribble illegibly on the cover of [src]!</span>")
|
|
return
|
|
|
|
var/inputvalue = stripped_input(user, "What would you like to label the folder?", "Folder Labelling", "", MAX_NAME_LEN)
|
|
|
|
if(!inputvalue)
|
|
return
|
|
|
|
if(user.canUseTopic(src, BE_CLOSE))
|
|
name = "folder[(inputvalue ? " - '[inputvalue]'" : null)]"
|
|
|
|
|
|
/obj/item/folder/Destroy()
|
|
for(var/obj/important_thing in contents)
|
|
if(!(important_thing.resistance_flags & INDESTRUCTIBLE))
|
|
continue
|
|
important_thing.forceMove(drop_location()) //don't destroy round critical content such as objective documents.
|
|
return ..()
|
|
|
|
|
|
/obj/item/folder/attack_self(mob/user)
|
|
var/dat = "<title>[name]</title>"
|
|
|
|
for(var/obj/item/I in src)
|
|
dat += "<A href='?src=[REF(src)];remove=[REF(I)]'>Remove</A> - <A href='?src=[REF(src)];read=[REF(I)]'>[I.name]</A><BR>"
|
|
user << browse(dat, "window=folder")
|
|
onclose(user, "folder")
|
|
add_fingerprint(usr)
|
|
|
|
|
|
/obj/item/folder/Topic(href, href_list)
|
|
..()
|
|
if(usr.stat != CONSCIOUS || HAS_TRAIT(usr, TRAIT_HANDS_BLOCKED))
|
|
return
|
|
|
|
if(usr.contents.Find(src))
|
|
|
|
if(href_list["remove"])
|
|
var/obj/item/I = locate(href_list["remove"]) in src
|
|
if(istype(I))
|
|
I.forceMove(usr.loc)
|
|
usr.put_in_hands(I)
|
|
|
|
if(href_list["read"])
|
|
var/obj/item/I = locate(href_list["read"]) in src
|
|
if(istype(I))
|
|
usr.examinate(I)
|
|
|
|
//Update everything
|
|
attack_self(usr)
|
|
update_icon()
|
|
|
|
/obj/item/folder/documents
|
|
name = "folder- 'TOP SECRET'"
|
|
desc = "A folder stamped \"Top Secret - Property of Nanotrasen Corporation. Unauthorized distribution is punishable by death.\""
|
|
|
|
/obj/item/folder/documents/Initialize()
|
|
. = ..()
|
|
new /obj/item/documents/nanotrasen(src)
|
|
update_icon()
|
|
|
|
/obj/item/folder/syndicate
|
|
icon_state = "folder_syndie"
|
|
name = "folder- 'TOP SECRET'"
|
|
desc = "A folder stamped \"Top Secret - Property of The Syndicate.\""
|
|
|
|
/obj/item/folder/syndicate/red
|
|
icon_state = "folder_sred"
|
|
|
|
/obj/item/folder/syndicate/red/Initialize()
|
|
. = ..()
|
|
new /obj/item/documents/syndicate/red(src)
|
|
update_icon()
|
|
|
|
/obj/item/folder/syndicate/blue
|
|
icon_state = "folder_sblue"
|
|
|
|
/obj/item/folder/syndicate/blue/Initialize()
|
|
. = ..()
|
|
new /obj/item/documents/syndicate/blue(src)
|
|
update_icon()
|
|
|
|
/obj/item/folder/syndicate/mining/Initialize()
|
|
. = ..()
|
|
new /obj/item/documents/syndicate/mining(src)
|
|
update_icon()
|