Files
Polaris/code/game/objects/closets/secure/engineering.dm
rastaf.zero@gmail.com 3e256c12f0 Reordered items in CE closet
Unconscious mobs:
-won't more get messages "someone bumps into someone"
-now cannot toggle jumpsuit sensors
-same for blender
Kitchen machinery now requires and uses power.
APC window now correctly autorefreshing.



git-svn-id: http://tgstation13.googlecode.com/svn/trunk@715 316c924e-a436-60f5-8080-3fe189b3f50e
2010-12-27 21:56:28 +00:00

59 lines
2.1 KiB
Plaintext

/obj/secure_closet/engineering_chief/New()
..()
sleep(2)
new /obj/item/blueprints( src )
new /obj/item/device/radio/headset/headset_eng( src )
new /obj/item/clothing/under/rank/chief_engineer( src )
new /obj/item/clothing/gloves/yellow( src )
new /obj/item/clothing/shoes/brown( src )
new /obj/item/weapon/storage/toolbox/mechanical( src )
new /obj/item/clothing/shoes/magboots( src )
new /obj/item/clothing/ears/earmuffs( src )
new /obj/item/clothing/glasses/meson( src )
new /obj/item/clothing/suit/fire( src )
new /obj/item/clothing/suit/hazardvest( src )
new /obj/item/clothing/mask/gas( src )
new /obj/item/clothing/head/helmet/welding( src )
new /obj/item/clothing/head/helmet/hardhat( src )
new /obj/item/device/multitool( src )
new /obj/item/device/flash( src )
return
/obj/secure_closet/engineering_electrical/New()
..()
sleep(2)
new /obj/item/clothing/gloves/yellow( src )
new /obj/item/clothing/gloves/yellow( src )
new /obj/item/clothing/gloves/yellow( src )
new /obj/item/weapon/storage/toolbox/electrical( src )
new /obj/item/weapon/storage/toolbox/electrical( src )
new /obj/item/weapon/storage/toolbox/electrical( src )
new /obj/item/device/multitool( src )
new /obj/item/device/multitool( src )
new /obj/item/device/multitool( src )
return
/obj/secure_closet/engineering_welding/New()
..()
sleep(2)
new /obj/item/clothing/head/helmet/welding( src )
new /obj/item/clothing/head/helmet/welding( src )
new /obj/item/clothing/head/helmet/welding( src )
new /obj/item/weapon/weldingtool( src )
new /obj/item/weapon/weldingtool( src )
new /obj/item/weapon/weldingtool( src )
return
/obj/secure_closet/engineering_personal/New()
..()
sleep(2)
new /obj/item/weapon/storage/toolbox/mechanical( src )
new /obj/item/device/radio/headset/headset_eng( src )
new /obj/item/clothing/under/rank/engineer( src )
new /obj/item/clothing/shoes/orange( src )
new /obj/item/clothing/suit/hazardvest( src )
new /obj/item/clothing/mask/gas( src )
new /obj/item/clothing/head/helmet/hardhat( src )
new /obj/item/clothing/ears/earmuffs( src )
new /obj/item/clothing/glasses/meson( src )
return