mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-24 21:40:55 +01:00
Under the Twin Suns: the S'rand'marr Sector (#15295)
This commit is contained in:
@@ -120,3 +120,17 @@
|
||||
combination_cook(CI)
|
||||
return
|
||||
..()
|
||||
|
||||
/obj/machinery/appliance/cooker/oven/adhomai
|
||||
name = "adhomian oven"
|
||||
desc = "A heavy and rustic adhomian oven. Perfect for a Tajaran grandma"
|
||||
icon_state = "adhomai_oven_open"
|
||||
|
||||
/obj/machinery/appliance/cooker/oven/adhomai/update_icon()
|
||||
if(!open)
|
||||
if(!stat)
|
||||
icon_state = "adhomai_ovenclosed_on"
|
||||
else
|
||||
icon_state = "adhomai_ovenclosed_off"
|
||||
else
|
||||
icon_state = "adhomai_oven_open"
|
||||
@@ -47,3 +47,27 @@
|
||||
if(isemptylist(pans))
|
||||
return
|
||||
add_overlay(pans)
|
||||
|
||||
/obj/machinery/appliance/cooker/stove/adhomai
|
||||
name = "adhomian stove"
|
||||
desc = "A rustic Adhomian stove. Warm enough to gather around the winter."
|
||||
icon_state = "adhomai_stove_off"
|
||||
|
||||
/obj/machinery/appliance/cooker/stove/adhomai/update_icon()
|
||||
cut_overlays()
|
||||
if(!stat)
|
||||
icon_state = "adhomai_stove_on"
|
||||
else
|
||||
icon_state = "adhomai_stove_off"
|
||||
if(!stat && temperature)
|
||||
switch(temperature)
|
||||
if(T0C to T20C)
|
||||
add_overlay("stove_fire0")
|
||||
if(T20C + 21 to T20C + 40)
|
||||
add_overlay("stove_fire1")
|
||||
if(T20C + 21 to T20C + 40)
|
||||
add_overlay("stove_fire2")
|
||||
if(T20C + 41 to T20C + 60)
|
||||
add_overlay("stove_fire3")
|
||||
if(T20C + 61 to INFINITY)
|
||||
add_overlay("stove_fire4")
|
||||
Reference in New Issue
Block a user