TG: - Brought 2.0.8 and uterus up to date with the new type paths.

- Added an atmostech belt that spawns with the same tools as the engineer full
belt, just the wire is replaced by an analyzer.
- Atmos techs now spawn with this belt
- Added a detective-styled personal closet, that contains a satchel, which
contains a wallet, which contains one or two spacecash items and a coin.
- Slightly redesigned two of the dorm rooms so they have this new cabinet -
closet with the stuff mentioned above.
- Slightly changed the spawn order of items in engineering closets so that
hazard vests spawn above toolboxes. Hopefully this will spare a few fiddly
clicks for engineers.
- Detective locker now spawns with the locked sprite
- Engineering now has the L2 radioactive suit lockers that contain rad suits
instead of that crate.
Revision: r3039
Author: 	 baloh.matevz
Date: 	Feb 5, 2012
This commit is contained in:
Ren Erthilo
2012-04-21 20:04:31 +01:00
parent 20f7be852d
commit bcebd2b7c4
3 changed files with 19 additions and 1 deletions

View File

@@ -464,6 +464,14 @@
/obj/structure/closet/secure_closet/personal/patient
name = "Patient's closet"
/obj/structure/closet/secure_closet/personal/cabinet
icon_state = "cabinetdetective_locked"
icon_closed = "cabinetdetective"
icon_locked = "cabinetdetective_locked"
icon_opened = "cabinetdetective_open"
icon_broken = "cabinetdetective_broken"
icon_off = "cabinetdetective_broken"
/obj/structure/closet/secure_closet/kitchen
name = "Kitchen Cabinet"
req_access = list(access_kitchen)

View File

@@ -21,6 +21,15 @@
new /obj/item/clothing/shoes/white( src )
return
/obj/structure/closet/secure_closet/personal/cabinet/New()
..()
spawn(4)
contents = list()
new /obj/item/weapon/storage/backpack/satchel( src )
new /obj/item/device/radio/headset( src )
return
/obj/structure/closet/secure_closet/personal/attackby(obj/item/weapon/W as obj, mob/user as mob)
if (src.opened)
if (istype(W, /obj/item/weapon/grab))
@@ -66,4 +75,4 @@
O.show_message(text("\blue The locker has been sliced open by [] with an energy blade!", user), 1, text("\red You hear metal being sliced and sparks flying."), 2)
else
user << "\red Access Denied"
return
return

View File

@@ -77,6 +77,7 @@
new /obj/item/weapon/wirecutters(src)
new /obj/item/weapon/cable_coil(src,30,pick("red","yellow"))
/obj/item/weapon/storage/belt/utility/atmostech/New()
..()
new /obj/item/weapon/screwdriver(src)