Skip to content

Commit

Permalink
Merge pull request tgstation#42114 from 81Denton/runtime-tweaks
Browse files Browse the repository at this point in the history
Runtimestation tweaks
  • Loading branch information
optimumtact authored Jan 1, 2019
2 parents f0cdd84 + 1fec2a3 commit a5c5e8b
Show file tree
Hide file tree
Showing 3 changed files with 58 additions and 13 deletions.
39 changes: 26 additions & 13 deletions _maps/map_files/debug/runtimestation.dmm
Original file line number Diff line number Diff line change
Expand Up @@ -619,15 +619,11 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bP" = (
/obj/item/storage/box/beakers,
/obj/item/storage/box/syringes,
/obj/structure/table,
/obj/item/reagent_containers/glass/beaker/bluespace,
/obj/item/reagent_containers/glass/beaker/bluespace,
/obj/item/reagent_containers/syringe,
/obj/machinery/airalarm/unlocked{
pixel_y = 23
},
/obj/structure/table,
/obj/machinery/reagentgrinder,
/turf/open/floor/plasteel/dark,
/area/medical/chemistry)
"bQ" = (
Expand Down Expand Up @@ -964,6 +960,11 @@
/obj/effect/turf_decal/tile/blue{
dir = 8
},
/obj/structure/table,
/obj/item/gun/magic/wand/resurrection/debug,
/obj/item/gun/magic/wand/death/debug{
pixel_y = 10
},
/turf/open/floor/plasteel/white/corner{
dir = 1
},
Expand Down Expand Up @@ -1499,11 +1500,6 @@
},
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
"er" = (
/obj/item/gun/magic/staff/healing,
/obj/item/gun/magic/wand/resurrection/debug,
/turf/open/floor/plasteel,
/area/medical/medbay)
"es" = (
/obj/machinery/light,
/obj/machinery/clonepod,
Expand Down Expand Up @@ -2520,6 +2516,9 @@
/obj/structure/cable{
icon_state = "0-2"
},
/obj/structure/closet/secure_closet/chemical/heisenberg{
locked = 0
},
/turf/open/floor/plasteel,
/area/medical/chemistry)
"ii" = (
Expand Down Expand Up @@ -2770,6 +2769,16 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"EX" = (
/obj/structure/cable{
icon_state = "4-8"
},
/obj/structure/table,
/obj/item/screwdriver{
pixel_y = 10
},
/turf/open/floor/plasteel,
/area/medical/chemistry)
"If" = (
/obj/machinery/rnd/production/techfab/department,
/turf/open/floor/plasteel,
Expand Down Expand Up @@ -2910,6 +2919,10 @@
/obj/machinery/light{
dir = 4
},
/obj/machinery/vending/syndichem{
onstation = 0;
req_access = null
},
/turf/open/floor/plasteel,
/area/medical/chemistry)
"Xp" = (
Expand Down Expand Up @@ -8132,7 +8145,7 @@ aI
aI
ak
Ly
pQ
EX
Xg
Ce
oV
Expand Down Expand Up @@ -8780,7 +8793,7 @@ af
by
cz
by
er
cm
es
by
eu
Expand Down
21 changes: 21 additions & 0 deletions code/game/objects/items/storage/boxes.dm
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,16 @@
for(var/i in 1 to 7)
new /obj/item/reagent_containers/syringe(src)

/obj/item/storage/box/syringes/variety
name = "syringe variety box"

/obj/item/storage/box/syringes/variety/PopulateContents()
new /obj/item/reagent_containers/syringe(src)
new /obj/item/reagent_containers/syringe/lethal(src)
new /obj/item/reagent_containers/syringe/noreact(src)
new /obj/item/reagent_containers/syringe/piercing(src)
new /obj/item/reagent_containers/syringe/bluespace(src)

/obj/item/storage/box/medipens
name = "box of medipens"
desc = "A box full of epinephrine MediPens."
Expand Down Expand Up @@ -205,6 +215,17 @@
for(var/i in 1 to 7)
new /obj/item/reagent_containers/glass/beaker/bluespace(src)

/obj/item/storage/box/beakers/variety
name = "beaker variety box"

/obj/item/storage/box/beakers/variety/PopulateContents()
new /obj/item/reagent_containers/glass/beaker(src)
new /obj/item/reagent_containers/glass/beaker/large(src)
new /obj/item/reagent_containers/glass/beaker/plastic(src)
new /obj/item/reagent_containers/glass/beaker/meta(src)
new /obj/item/reagent_containers/glass/beaker/noreact(src)
new /obj/item/reagent_containers/glass/beaker/bluespace(src)

/obj/item/storage/box/medsprays
name = "box of medical sprayers"
desc = "A box full of medical sprayers, with unscrewable caps and precision spray heads."
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,3 +97,14 @@
new /obj/item/storage/box/pillbottles(src)
new /obj/item/storage/box/medsprays(src)
new /obj/item/storage/box/medsprays(src)

/obj/structure/closet/secure_closet/chemical/heisenberg //contains one of each beaker, syringe etc.
name = "advanced chemical closet"

/obj/structure/closet/secure_closet/chemical/heisenberg/PopulateContents()
..()
new /obj/item/reagent_containers/dropper(src)
new /obj/item/reagent_containers/dropper(src)
new /obj/item/storage/box/syringes/variety(src)
new /obj/item/storage/box/beakers/variety(src)
new /obj/item/clothing/glasses/science(src)

0 comments on commit a5c5e8b

Please sign in to comment.