Updates Rocky Motel (#28786)

* this motel rocks

* nvm i got chat gpt

* relocate icon

* oh it removed web commit
This commit is contained in:
kyunkyunkyun
2025-04-09 19:26:42 +00:00
committed by GitHub
parent 394a1fed34
commit bf28bfd604
18 changed files with 2250 additions and 1874 deletions
@@ -131,3 +131,10 @@
/obj/item/stock_parts/micro_laser = 2,
/obj/item/stock_parts/capacitor = 1,
)
/obj/machinery/cooking/deepfryer/loaded/Initialize(mapload)
. = ..()
for(var/i in 1 to length(surfaces))
var/datum/cooking_surface/surface = surfaces[i]
surface.container = new /obj/item/reagent_containers/cooking/deep_basket(src)
update_appearance()
+8
View File
@@ -200,3 +200,11 @@
/obj/item/stock_parts/micro_laser = 2,
/obj/item/stock_parts/matter_bin = 2,
)
/obj/machinery/cooking/grill/loaded/Initialize(mapload)
. = ..()
for(var/i in 1 to length(surfaces))
var/datum/cooking_surface/surface = surfaces[i]
surface.container = new /obj/item/reagent_containers/cooking/grill_grate(src)
stored_wood = 30
update_appearance()
+7
View File
@@ -164,3 +164,10 @@
/obj/item/stock_parts/capacitor = 1,
/obj/item/stock_parts/micro_laser = 2,
)
/obj/machinery/cooking/oven/loaded/Initialize(mapload)
. = ..()
for(var/i in 1 to length(surfaces))
var/datum/cooking_surface/surface = surfaces[i]
surface.container = new /obj/item/reagent_containers/cooking/oven(src)
update_appearance()
+10
View File
@@ -131,3 +131,13 @@
/obj/item/stock_parts/micro_laser = 2,
/obj/item/stock_parts/capacitor = 1,
)
/obj/machinery/cooking/stovetop/loaded/Initialize(mapload)
. = ..()
for(var/i in 1 to length(surfaces))
var/datum/cooking_surface/surface = surfaces[i]
if(i % 2 == 0)
surface.container = new /obj/item/reagent_containers/cooking/pot(src)
else
surface.container = new /obj/item/reagent_containers/cooking/pan(src)
update_appearance()