mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-09 16:12:17 +00:00
24 lines
1.0 KiB
Plaintext
24 lines
1.0 KiB
Plaintext
/obj/machinery/appliance/cooker/oven
|
|
name = "oven"
|
|
desc = "Cookies are ready, dear."
|
|
icon = 'icons/obj/cooking_machines.dmi'
|
|
icon_state = "oven_off"
|
|
on_icon = "oven_on"
|
|
off_icon = "oven_off"
|
|
cook_type = "baked"
|
|
cook_time = 300
|
|
food_color = "#A34719"
|
|
can_burn_food = 1
|
|
cooked_sound = 'sound/machines/ding.ogg'
|
|
|
|
output_options = list(
|
|
"Personal Pizza" = /obj/item/weapon/reagent_containers/food/snacks/variable/pizza,
|
|
"Bread" = /obj/item/weapon/reagent_containers/food/snacks/variable/bread,
|
|
"Pie" = /obj/item/weapon/reagent_containers/food/snacks/variable/pie,
|
|
"Small Cake" = /obj/item/weapon/reagent_containers/food/snacks/variable/cake,
|
|
"Hot Pocket" = /obj/item/weapon/reagent_containers/food/snacks/variable/pocket,
|
|
"Kebab" = /obj/item/weapon/reagent_containers/food/snacks/variable/kebab,
|
|
"Waffles" = /obj/item/weapon/reagent_containers/food/snacks/variable/waffles,
|
|
"Cookie" = /obj/item/weapon/reagent_containers/food/snacks/variable/cookie,
|
|
"Donut" = /obj/item/weapon/reagent_containers/food/snacks/variable/donut,
|
|
) |