Files
Paradise/code/game/objects/closets/secure/research.dm
Melvin Melonstorm 8c0290bce0 FINALLY made the captain's PDA not start out with messaging disabled,
and also fixed Scientist's closets, probably. Added a missing window in
the map.
2012-02-16 19:40:58 +01:00

36 lines
1.0 KiB
Plaintext
Executable File

/obj/structure/closet/secure_closet/rd
name = "Research Director's Locker"
req_access = list(access_rd)
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)
//
/obj/structure/closet/secure_closet/scientist
name = "Scientist's Locker"
req_access = list(access_research)
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)