mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-01-26 17:31:58 +00:00
Improved closet/secure closet/crate code a bit. (Updated the paths on the map.) git-svn-id: http://tgstation13.googlecode.com/svn/trunk@2585 316c924e-a436-60f5-8080-3fe189b3f50e
37 lines
1.0 KiB
Plaintext
37 lines
1.0 KiB
Plaintext
/obj/structure/closet/secure_closet/scientist
|
|
name = "Scientist Locker"
|
|
req_access = list(access_tox_storage)
|
|
|
|
|
|
New()
|
|
..()
|
|
sleep(2)
|
|
new /obj/item/clothing/under/rank/scientist(src)
|
|
new /obj/item/clothing/suit/labcoat(src)
|
|
new /obj/item/clothing/shoes/white(src)
|
|
new /obj/item/device/radio/headset/headset_sci(src)
|
|
new /obj/item/weapon/tank/air(src)
|
|
new /obj/item/clothing/mask/gas(src)
|
|
return
|
|
|
|
|
|
|
|
/obj/structure/closet/secure_closet/RD
|
|
name = "Research Director"
|
|
req_access = list(access_rd)
|
|
|
|
|
|
New()
|
|
..()
|
|
sleep(2)
|
|
new /obj/item/clothing/suit/bio_suit/scientist(src)
|
|
new /obj/item/clothing/head/bio_hood/scientist(src)
|
|
new /obj/item/clothing/under/rank/research_director(src)
|
|
new /obj/item/clothing/suit/labcoat(src)
|
|
new /obj/item/clothing/shoes/white(src)
|
|
new /obj/item/clothing/gloves/latex(src)
|
|
new /obj/item/device/radio/headset/heads/rd(src)
|
|
new /obj/item/weapon/tank/air(src)
|
|
new /obj/item/clothing/mask/gas(src)
|
|
new /obj/item/device/flash(src)
|
|
return |