mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-22 04:30:44 +01:00
## About The Pull Request Ports the Experimental Holotool from yogstation. An RD item that is all the tools in a compact package. ## Why It's Good For The Game RD has nothing interesting except the armor that kills you if you use it, and many people dont because of that. This gives a unique, interesting item that is useful to their kit, much like the CMO's hypo. ## Proof Of Testing <details> <summary>Screenshots/Videos</summary> <img width="273" height="314" alt="image" src="https://github.com/user-attachments/assets/7111c679-928c-4069-a4d9-ab93588d9daf" /> <img width="127" height="83" alt="image" src="https://github.com/user-attachments/assets/86346c30-3ae3-449d-b40a-3c26b05f6949" /> </details> ## Changelog 🆑 add: The RD now has an Experimental Holotool! It starts in their locker. /🆑
45 lines
1.6 KiB
Plaintext
Executable File
45 lines
1.6 KiB
Plaintext
Executable File
/obj/structure/closet/secure_closet/research_director
|
|
name = "research director's locker"
|
|
req_access = list(ACCESS_RD)
|
|
icon_state = "rd"
|
|
|
|
/obj/structure/closet/secure_closet/research_director/PopulateContents()
|
|
..()
|
|
|
|
new /obj/item/clothing/suit/bio_suit/scientist(src)
|
|
new /obj/item/clothing/head/bio_hood/scientist(src)
|
|
new /obj/item/storage/bag/garment/research_director(src)
|
|
new /obj/item/computer_disk/command/rd(src)
|
|
new /obj/item/radio/headset/heads/rd(src)
|
|
new /obj/item/megaphone/command(src)
|
|
new /obj/item/storage/lockbox/medal/sci(src)
|
|
new /obj/item/assembly/flash/handheld(src)
|
|
new /obj/item/door_remote/research_director(src)
|
|
new /obj/item/circuitboard/machine/techfab/department/science(src)
|
|
new /obj/item/storage/photo_album/rd(src)
|
|
new /obj/item/storage/box/skillchips/science(src)
|
|
new /obj/item/card/id/departmental_budget/sci(src) //SKYRAT EDIT ADDITION
|
|
new /obj/item/holotool(src) // BUBBER EDIT ADDITION
|
|
|
|
/obj/structure/closet/secure_closet/research_director/populate_contents_immediate()
|
|
. = ..()
|
|
|
|
// Traitor steal objectives
|
|
new /obj/item/clothing/suit/armor/reactive/teleport(src)
|
|
new /obj/item/laser_pointer(src)
|
|
|
|
/obj/structure/closet/secure_closet/cytology
|
|
name = "cytology equipment locker"
|
|
icon_state = "science"
|
|
req_access = list(ACCESS_RESEARCH)
|
|
|
|
/obj/structure/closet/secure_closet/cytology/PopulateContents()
|
|
. = ..()
|
|
new /obj/item/pushbroom(src)
|
|
new /obj/item/storage/bag/xeno(src)
|
|
new /obj/item/storage/box/petridish(src)
|
|
for(var/i in 1 to 2)
|
|
new /obj/item/biopsy_tool(src)
|
|
new /obj/item/storage/box/swab(src)
|
|
new /obj/item/reagent_containers/condiment/protein(src)
|