diff --git a/code/modules/cooking/machinery/commissary.dm b/code/modules/cooking/machinery/commissary.dm index 55f535f447a..082632a5839 100644 --- a/code/modules/cooking/machinery/commissary.dm +++ b/code/modules/cooking/machinery/commissary.dm @@ -590,6 +590,7 @@ // Tajara /obj/item/reagent_containers/food/drinks/cans/hrozamal_soda = 5, /obj/item/reagent_containers/food/drinks/cans/adhomai_milk = 3, + /obj/item/reagent_containers/food/drinks/cans/earthen_juice = 3, // Milk /obj/item/reagent_containers/food/drinks/cans/beetle_milk = 5, /obj/item/reagent_containers/food/drinks/carton/small/milk = 5, diff --git a/code/modules/reagents/reagent_containers/food/cans.dm b/code/modules/reagents/reagent_containers/food/cans.dm index d100b29a55f..18aeb200c12 100644 --- a/code/modules/reagents/reagent_containers/food/cans.dm +++ b/code/modules/reagents/reagent_containers/food/cans.dm @@ -474,6 +474,16 @@ reagents_to_add = list(/singleton/reagent/drink/milk/adhomai/fermented = 30) +/obj/item/reagent_containers/food/drinks/cans/earthen_juice + name = "earthen-root juice" + desc = "A can of earthen-root juice, imported from Adhomai." + icon_state = "earthen_can" + item_state = "earthen_can" + center_of_mass = list("x"=16, "y"=10) + desc_extended = "The Earthen-Root, or Binajr-nab'at, is a herbaceous plant native to the region of the Northern Harr'masir, and is popular in the New Kingdom of Adhomai due to it's resilience in harsh environments. Common uses for the Earth-Root, besides being used in dishes, include distillation to brew alcoholic beverages, extraction of the blue pigment for the fabrication of dyes, and the production of sugar." + + reagents_to_add = list(/singleton/reagent/drink/earthenrootjuice = 30) + /obj/item/reagent_containers/food/drinks/cans/beetle_milk name = "\improper Hakhma Milk" desc = "A can of Hakhma beetle milk, sourced from Scarab and Drifter communities." diff --git a/code/modules/reagents/reagent_containers/food/lunch.dm b/code/modules/reagents/reagent_containers/food/lunch.dm index 566e1d5f9b9..b45181000a5 100644 --- a/code/modules/reagents/reagent_containers/food/lunch.dm +++ b/code/modules/reagents/reagent_containers/food/lunch.dm @@ -32,7 +32,13 @@ GLOBAL_LIST_INIT(lunchables_lunches_, list( /obj/item/reagent_containers/food/snacks/stokkebab, /obj/item/reagent_containers/food/snacks/batwings, /obj/item/reagent_containers/food/snacks/salad/earthenroot, - /obj/item/reagent_containers/food/snacks/pepperoniroll + /obj/item/reagent_containers/food/snacks/pepperoniroll, + /obj/item/reagent_containers/food/snacks/hardbread, + /obj/item/reagent_containers/food/snacks/nomadskewer, + /obj/item/reagent_containers/food/snacks/earthenroot_mash, + /obj/item/reagent_containers/food/snacks/earthenroot_fries, + /obj/item/reagent_containers/food/snacks/explorer_ration, + /obj/item/reagent_containers/food/snacks/clam_pasta )) GLOBAL_LIST_INIT(lunchables_snacks_, list( @@ -81,7 +87,10 @@ GLOBAL_LIST_INIT(lunchables_snacks_, list( /obj/item/reagent_containers/food/snacks/honeybun, /obj/item/reagent_containers/food/snacks/stuffed_meatball, /obj/item/reagent_containers/food/snacks/grilled_peppers, - /obj/item/reagent_containers/food/snacks/salmiak + /obj/item/reagent_containers/food/snacks/salmiak, + /obj/item/reagent_containers/food/snacks/chip/miniavah/full, + /obj/item/reagent_containers/food/snacks/zkahnkowaslice/filled, + /obj/item/reagent_containers/food/snacks/dirt_roast )) GLOBAL_LIST_INIT(lunchables_drinks_, list( @@ -118,7 +127,8 @@ GLOBAL_LIST_INIT(lunchables_drinks_, list( /obj/item/reagent_containers/food/drinks/cans/zorasoda/lemonlime, /obj/item/reagent_containers/food/drinks/cans/zorasoda/xuizi, /obj/item/reagent_containers/food/drinks/cans/zorasoda/dyn, - /obj/item/reagent_containers/food/drinks/cans/zorasoda/buzz + /obj/item/reagent_containers/food/drinks/cans/zorasoda/buzz, + /obj/item/reagent_containers/food/drinks/cans/earthen_juice )) GLOBAL_LIST_INIT(lunchables_vaurca_, list( diff --git a/code/modules/reagents/reagent_containers/food/snacks/cultural/tajara.dm b/code/modules/reagents/reagent_containers/food/snacks/cultural/tajara.dm index 27574938fd7..53aa460cea1 100644 --- a/code/modules/reagents/reagent_containers/food/snacks/cultural/tajara.dm +++ b/code/modules/reagents/reagent_containers/food/snacks/cultural/tajara.dm @@ -320,6 +320,10 @@ bitten_state = "avah_half" bitesize = 3 +/obj/item/reagent_containers/food/snacks/chip/miniavah/full + reagents_to_add = list(/singleton/reagent/nutriment = 3, /singleton/reagent/nutriment/protein = 3) + reagent_data = list(/singleton/reagent/nutriment = list("baked dough" = 3), /singleton/reagent/nutriment/protein = list("savoury meat" = 3)) + /obj/item/reagent_containers/food/snacks/chip/miniavah/cheese name = "cheese mini-avah" desc = "A miniature avah filled with meat. This one has cheese on it." diff --git a/html/changelogs/LunchboxAdditions.yml b/html/changelogs/LunchboxAdditions.yml new file mode 100644 index 00000000000..169a7d59254 --- /dev/null +++ b/html/changelogs/LunchboxAdditions.yml @@ -0,0 +1,8 @@ +author: TheGreyWolf + +delete-after: True + +changes: + - rscadd: "Added the following options as food in the lunchbox: Hard bread, nomad skewer, mashed earthen-root, earthen-root fries, scout ration and ras'val pasta." + - rscadd: "Added the following options as snacks in the lunchbox: A singular mini-avah, zkahnkowa slice, roasted dirtberries." + - rscadd: "Canned earthen-root juice was added to the commissary drink restock pack and as an option to the lunchbox." diff --git a/icons/obj/item/reagent_containers/food/drinks/soda.dmi b/icons/obj/item/reagent_containers/food/drinks/soda.dmi index 3d9703b8f0f..503d0a59868 100644 Binary files a/icons/obj/item/reagent_containers/food/drinks/soda.dmi and b/icons/obj/item/reagent_containers/food/drinks/soda.dmi differ