Add nothingburgers for real. (#31823)

* Add nothingburgers.

* Remove duplicate var. Thanks, linters!
This commit is contained in:
Alan
2026-04-09 00:36:47 -04:00
committed by GitHub
parent 60a746145d
commit ab0e348318
3 changed files with 16 additions and 0 deletions
@@ -670,3 +670,12 @@
steps = list(
PCWJ_ADD_ITEM(/obj/item/food/tapiocadough)
)
/datum/cooking/recipe/nothingburger
container_type = /obj/item/reagent_containers/cooking/board
product_type = /obj/item/food/burger/nothing
catalog_category = COOKBOOK_CATEGORY_BURGS
steps = list(
PCWJ_ADD_ITEM(/obj/item/food/bun),
PCWJ_ADD_REAGENT("nothing", 10),
)
@@ -338,6 +338,13 @@
list_reagents = list("nutriment" = 6, "cherryjelly" = 5, "vitamin" = 1)
goal_difficulty = FOOD_GOAL_NORMAL
/obj/item/food/burger/nothing
name = "nothingburger"
desc = "You really expected more out of this."
icon_state = "nothingburger1"
bitesize = 5
list_reagents = list("nothing" = 10)
tastes = list("nothing" = 4, "absolutely nothing" = 1, "ambient temperature" = 2)
//////////////////////
// Sandwiches //