Skip to content

Commit

Permalink
map + circuit
Browse files Browse the repository at this point in the history
  • Loading branch information
Kapu1178 committed Aug 27, 2024
1 parent 7f1b24d commit 49c5643
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
1 change: 1 addition & 0 deletions _maps/map_files/Theseus/Theseus.dmm
Original file line number Diff line number Diff line change
Expand Up @@ -11249,6 +11249,7 @@
dir = 4
},
/obj/structure/noticeboard/directional/east,
/obj/machinery/sleeper/mancrowave,
/turf/open/floor/iron,
/area/station/medical/surgery/prep)
"edN" = (
Expand Down
5 changes: 3 additions & 2 deletions code/game/machinery/mancrowave.dm
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,13 @@
desc = "A large device with heating coils lining the inner walls."
base_icon_state = "mancrowave"
icon_state = "mancrowave_open"
circuit = /obj/item/circuitboard/machine/sleeper
circuit = /obj/item/circuitboard/machine/sleeper/mancrowave

light_color = LIGHT_COLOR_ORANGE

possible_chems = null

has_panel = FALSE
rotatable = FALSE
/// Automatically start cooking when an occupant enters
var/automatic = FALSE
/// Automatically eject the occupant on completion.
Expand Down
10 changes: 10 additions & 0 deletions code/game/objects/items/circuitboards/machine_circuitboards.dm
Original file line number Diff line number Diff line change
Expand Up @@ -744,6 +744,16 @@
name = "Party Pod (Machine Board)"
build_path = /obj/machinery/sleeper/party

/obj/item/circuitboard/machine/sleeper/mancrowave
name = "Thermal Homeostasis Regulator (Machine Board)"
build_path = /obj/machinery/sleeper/mancrowave
req_components = list(
/obj/item/stock_parts/scanning_module = 1,
/obj/item/stock_parts/micro_laser = 2,
/obj/item/stack/cable_coil = 1,
/obj/item/stack/sheet/glass = 2,
)

/obj/item/circuitboard/machine/smoke_machine
name = "Smoke Machine (Machine Board)"
greyscale_colors = CIRCUIT_COLOR_MEDICAL
Expand Down

0 comments on commit 49c5643

Please sign in to comment.