Adds beef space ramen (#96393)

## About The Pull Request

Adds beef space ramen packets as an uncommon maintenance spawn. These
are small boxes that contain a brick of dehydrated space ramen and a
beef flavour sachet (these are all they can hold). These items can be
used on the soup range to create beef ramen.
## Why It's Good For The Game

The existing option for ramen leaves something to be desired. You just
add water and it magically heats itself. The ramen is treated as a
reagent rather than an object like other noodles.
## Changelog
🆑 cacogen
add: Adds packets of beef ramen as an uncommon maintenance spawn
/🆑
This commit is contained in:
cacogen
2026-06-10 09:08:10 +12:00
committed by GitHub
parent b49fef47a7
commit 51708d5504
9 changed files with 77 additions and 1 deletions
+11
View File
@@ -183,3 +183,14 @@
max_total_storage = WEIGHT_CLASS_SMALL * slots
. = ..()
set_holdable(/obj/item/fishing_lure) //can only hold lures
/datum/storage/box/ramen_beef
max_slots = 2
/datum/storage/box/ramen_beef/New(atom/parent, max_slots, max_specific_storage, max_total_storage, rustle_sound, remove_rustle_sound)
. = ..()
set_holdable(list(
/obj/item/reagent_containers/condiment/pack/beef_flavour,
/obj/item/food/spaghetti/ramen_dry,
))