Skip to content

Commit

Permalink
Lets try this
Browse files Browse the repository at this point in the history
  • Loading branch information
Gw0sty committed Dec 4, 2024
1 parent a77a3a7 commit 04792fa
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 6 deletions.
5 changes: 1 addition & 4 deletions _maps/map_files/generic/CentCom.dmm
Original file line number Diff line number Diff line change
Expand Up @@ -25736,9 +25736,6 @@
},
/turf/open/floor/iron/dark/smooth_large,
/area/centcom/central_command_areas/retirement_yard)
"tcJ" = (
/turf/open/floor/iron/dark,
/area/cruiser_dock)
"tez" = (
/obj/machinery/door/airlock/centcom{
name = "Raziel's Theatre"
Expand Down Expand Up @@ -74119,7 +74116,7 @@ anV
anV
anV
anV
tcJ
anV
anV
anV
anV
Expand Down
6 changes: 4 additions & 2 deletions _maps/shuttles/nova/goldeneye_cruiser.dmm
Original file line number Diff line number Diff line change
Expand Up @@ -481,9 +481,11 @@
/turf/open/floor/iron/dark/textured_large,
/area/shuttle/syndicate/cruiser/medical)
"wb" = (
/obj/structure/table/optable,
/obj/effect/turf_decal/bot,
/obj/machinery/defibrillator_mount/loaded/directional/north,
/obj/machinery/stasis{
dir = 1
},
/turf/open/floor/iron/dark/textured_large,
/area/shuttle/syndicate/cruiser/medical)
"ws" = (
Expand Down Expand Up @@ -638,7 +640,7 @@
/turf/open/floor/iron/dark/textured_large,
/area/shuttle/syndicate/cruiser/brig)
"FM" = (
/obj/machinery/smartfridge/chemistry/preloaded,
/obj/machinery/smartfridge/assualt/preloaded,
/turf/open/floor/iron/dark/textured_large,
/area/shuttle/syndicate/cruiser/medical)
"FO" = (
Expand Down
14 changes: 14 additions & 0 deletions monkestation/code/modules/food_and_drinks/machinery/smartfridge.dm
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,17 @@

/obj/machinery/smartfridge/ui_static_data(mob/user)
return list("ui_theme" = tgui_theme)

/obj/machinery/smartfridge/assualt
name = "smart chemical storage"
desc = "A refrigerated storage unit for curing a few dire aliments."

/obj/machinery/smartfridge/assualt/preloaded
initial_contents = list(
/obj/item/reagent_containers/pill/epinephrine = 12,
/obj/item/reagent_containers/pill/multiver = 5,
/obj/item/reagent_containers/cup/bottle/epinephrine = 1,
/obj/item/reagent_containers/cup/bottle/multiver = 1,
/obj/item/reagent_containers/cup/bottle/formaldehyde,
/obj/item/reagent_containers/cup/beaker/large/synthflesh = 2,
/obj/item/reagent_containers/cup/beaker/large/plasma = 2,)
Original file line number Diff line number Diff line change
Expand Up @@ -54,3 +54,11 @@
pour_amount = "10_25"

return prob(1) ? rare_pouring_sound[pour_amount] : pick(pouring_sounds_categorized[pour_amount])

/obj/item/reagent_containers/cup/beaker/large/synthflesh
name = "large synthflesh beaker"
list_reagents = list(/datum/reagent/medicine/c2/synthflesh = 100)

/obj/item/reagent_containers/cup/beaker/large/plasma
name = "large plasma beaker"
list_reagents = list(/datum/reagent/toxin/plasma = 100)

0 comments on commit 04792fa

Please sign in to comment.