mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-09 16:12:17 +00:00
Various fixes and bugfixes from live playtests
This commit is contained in:
@@ -5,7 +5,7 @@
|
||||
var/optimal_power = 0.1//cooking power at 100%
|
||||
|
||||
var/loss = 1 //Temp lost per proc when equalising
|
||||
var/resistance = 320000 //Resistance to heating. combines with active power usage to determine how long heating takes
|
||||
var/resistance = 32000 //Resistance to heating. combines with active power usage to determine how long heating takes. 32k by default.
|
||||
|
||||
var/light_x = 0
|
||||
var/light_y = 0
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
var/string = "It contains....</br>"
|
||||
for (var/atom/movable/A in contents)
|
||||
string += "[A.name] </br>"
|
||||
. += "<span class='notice'>string</span>"
|
||||
. += "<span class='notice'>[string]</span>"
|
||||
if (reagents.total_volume)
|
||||
. += "<span class='notice'>It contains [reagents.total_volume]u of reagents.</span>"
|
||||
|
||||
@@ -41,7 +41,7 @@
|
||||
if(!user.unEquip(I))
|
||||
return
|
||||
I.forceMove(src)
|
||||
to_chat(user, "<span class='notice'>You put the [I] into the [src]</span>")
|
||||
to_chat(user, "<span class='notice'>You put the [I] into the [src].</span>")
|
||||
return
|
||||
|
||||
/obj/item/weapon/reagent_containers/cooking_container/verb/empty()
|
||||
|
||||
@@ -9,6 +9,16 @@
|
||||
can_burn_food = 1
|
||||
stat = POWEROFF
|
||||
|
||||
appliancetype = GRILL
|
||||
|
||||
active_power_usage = 4 KILOWATTS
|
||||
idle_power_usage = 2 KILOWATTS
|
||||
|
||||
// Grill is faster to heat and setup than the rest.
|
||||
optimal_temp = 120 + T0C
|
||||
min_temp = 60 + T0C
|
||||
resistance = 8 KILOWATTS // Very fast to heat up.
|
||||
|
||||
container_type = /obj/item/weapon/reagent_containers/cooking_container/grill
|
||||
|
||||
/obj/machinery/appliance/grill/toggle_power()
|
||||
|
||||
Reference in New Issue
Block a user