mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2026-01-10 09:22:29 +00:00
- I agree that setting up as engineer is a pain, so engineers will now start out with a utility belt with everything from a mechanical toolbox in it (except for the analyzer) and a piece of wire in it. For the moment this spawns in their hand due to traitor assignment requiring the PDA to be in the belt slot. - Engineers now also spawn with a hardhat on - Hardhats removed from engineers lockers - A hardhat has been placed on the rack with the fire suit for a HoP-assigned engineers. - Utility belts on the racks reduced from 6 to 2 - Placed two empty syringes in hydroponics - Deleted all blob spawns and placed them again in hopes that they actually cause some damage now... git-svn-id: http://tgstation13.googlecode.com/svn/trunk@1492 316c924e-a436-60f5-8080-3fe189b3f50e
59 lines
2.4 KiB
Plaintext
59 lines
2.4 KiB
Plaintext
/obj/secure_closet/engineering_chief/New()
|
|
..()
|
|
sleep(2)
|
|
new /obj/item/blueprints( src )
|
|
new /obj/item/device/radio/headset/heads/ce( 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 ) Moved to RIG suit rack --errorage
|
|
//new /obj/item/clothing/ears/earmuffs( src ) useless --errorage
|
|
//new /obj/item/clothing/glasses/meson( src ) Moved to his desk --errorage
|
|
//new /obj/item/clothing/suit/fire/firefighter( 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 ) --Part of DangerCon 2011, approved by Urist_McDorf, --Errorage
|
|
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/largetank( src )
|
|
new /obj/item/weapon/weldingtool/largetank( src )
|
|
new /obj/item/weapon/weldingtool/largetank( 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 ) engineers now spawn with them --Errorage
|
|
//new /obj/item/clothing/ears/earmuffs( src ) useless --Errorage
|
|
new /obj/item/clothing/glasses/meson( src )
|
|
return |