mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-01-05 07:02:36 +00:00
- Opaque windows (tinted and frosted) now look darker - Added a trashcart object (trash bin, behaves like a crate) - Added several recolored spacecash items. Some spawn in the vault. - Added a new type of cigar. - Applied the owl costume fixes by DabirA. They look strange when used with a backpack tho. - Overalls now work for all directions - Added thermal monocle object (thermoncle) - Removed the swat_suit (which was broken) and all it's references (from human.dm) git-svn-id: http://tgstation13.googlecode.com/svn/trunk@1261 316c924e-a436-60f5-8080-3fe189b3f50e
27 lines
986 B
Plaintext
27 lines
986 B
Plaintext
/obj/secure_closet/scientist/New()
|
|
..()
|
|
sleep(2)
|
|
new /obj/item/device/radio/headset/headset_sci( src )
|
|
new /obj/item/weapon/tank/air( src )
|
|
new /obj/item/clothing/mask/gas( src )
|
|
new /obj/item/clothing/suit/bio_suit/general( src )
|
|
new /obj/item/clothing/under/rank/scientist( src )
|
|
new /obj/item/clothing/shoes/white( src )
|
|
new /obj/item/clothing/gloves/latex( src )
|
|
new /obj/item/clothing/head/bio_hood/general( src )
|
|
new /obj/item/clothing/suit/labcoat(src)
|
|
return
|
|
|
|
/obj/secure_closet/RD/New()
|
|
..()
|
|
sleep(2)
|
|
new /obj/item/device/radio/headset/heads/rd( src )
|
|
new /obj/item/clothing/under/rank/research_director( src )
|
|
new /obj/item/weapon/tank/air( src )
|
|
new /obj/item/clothing/mask/gas( src )
|
|
new /obj/item/clothing/suit/bio_suit/scientist( src )
|
|
new /obj/item/clothing/shoes/white( src )
|
|
new /obj/item/clothing/gloves/latex( src )
|
|
new /obj/item/clothing/head/bio_hood/scientist( src )
|
|
new /obj/item/clothing/suit/labcoat(src)
|
|
return |