mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-01-08 00:21:43 +00:00
49 lines
1.4 KiB
Plaintext
Executable File
49 lines
1.4 KiB
Plaintext
Executable File
/obj/structure/closet/secure_closet/scientist
|
|
name = "Scientist's Locker"
|
|
req_access = list(ACCESS_RESEARCH)
|
|
icon_state = "secureres1"
|
|
icon_closed = "secureres"
|
|
icon_locked = "secureres1"
|
|
icon_opened = "secureresopen"
|
|
icon_broken = "secureresbroken"
|
|
icon_off = "secureresoff"
|
|
|
|
New()
|
|
..()
|
|
sleep(2)
|
|
new /obj/item/wardrobe/scientist(src)
|
|
//
|
|
var/obj/item/weapon/storage/backpack/BPK = new /obj/item/weapon/storage/backpack(src)
|
|
var/obj/item/weapon/storage/box/B = new(BPK)
|
|
new /obj/item/weapon/pen(B)
|
|
new /obj/item/device/pda/toxins(src)
|
|
new /obj/item/weapon/tank/oxygen(src)
|
|
new /obj/item/clothing/mask/gas(src)
|
|
new /obj/item/device/radio/headset/headset_sci(src)
|
|
|
|
|
|
|
|
/obj/structure/closet/secure_closet/rd
|
|
name = "Research Director's Locker"
|
|
req_access = list(ACCESS_RD)
|
|
icon_state = "rdsecure1"
|
|
icon_closed = "rdsecure"
|
|
icon_locked = "rdsecure1"
|
|
icon_opened = "rdsecureopen"
|
|
icon_broken = "rdsecurebroken"
|
|
icon_off = "rdsecureoff"
|
|
|
|
New()
|
|
..()
|
|
sleep(2)
|
|
new /obj/item/wardrobe/rd(src)
|
|
//
|
|
var/obj/item/weapon/storage/backpack/BPK = new /obj/item/weapon/storage/backpack(src)
|
|
var/obj/item/weapon/storage/box/B = new(BPK)
|
|
new /obj/item/weapon/pen(B)
|
|
new /obj/item/weapon/clipboard(src)
|
|
new /obj/item/weapon/tank/air(src)
|
|
new /obj/item/clothing/mask/gas(src)
|
|
new /obj/item/device/flash(src)
|
|
new /obj/item/device/radio/headset/heads/rd(src)
|
|
// |