Adds missing venue prices for certain foods and reagents (#86873)

## About The Pull Request

Closes #60318
Need to make a unit test for these once I get some spare time

## Changelog
🆑
fix: Added missing venue prices for certain foods and reagents
/🆑
This commit is contained in:
SmArtKar
2024-09-28 04:22:18 +02:00
committed by GitHub
parent ff057be4e1
commit fb3ae625a8
7 changed files with 9 additions and 0 deletions
+1
View File
@@ -340,4 +340,5 @@ GLOBAL_VAR_INIT(chicks_from_eggs, 0)
)
tastes = list("custard" = 1)
foodtypes = MEAT | VEGETABLES
venue_value = FOOD_PRICE_NORMAL
crafting_complexity = FOOD_COMPLEXITY_3
+2
View File
@@ -290,6 +290,7 @@
tastes = list("rice and meat" = 4, "lettuce" = 2, "soy sauce" = 2)
trash_type = /obj/item/reagent_containers/cup/bowl
w_class = WEIGHT_CLASS_SMALL
venue_value = FOOD_PRICE_NORMAL
crafting_complexity = FOOD_COMPLEXITY_4
/obj/item/food/fish_poke
@@ -306,6 +307,7 @@
tastes = list("rice and fish" = 4, "lettuce" = 2, "soy sauce" = 2)
trash_type = /obj/item/reagent_containers/cup/bowl
w_class = WEIGHT_CLASS_SMALL
venue_value = FOOD_PRICE_NORMAL
crafting_complexity = FOOD_COMPLEXITY_4
////////////////////////////////////////////MEATS AND ALIKE////////////////////////////////////////////
+1
View File
@@ -124,6 +124,7 @@
tastes = list("nachos" = 2, "hot pepper" = 1)
foodtypes = VEGETABLES | FRIED | DAIRY
w_class = WEIGHT_CLASS_SMALL
venue_value = FOOD_PRICE_CHEAP
crafting_complexity = FOOD_COMPLEXITY_2
/obj/item/food/taco
@@ -41,6 +41,7 @@
/datum/reagent/carbon = 4,
)
tastes = list("toast" = 2, "cheese" = 3, "butter" = 1)
venue_value = FOOD_PRICE_NORMAL
crafting_complexity = FOOD_COMPLEXITY_3
/obj/item/food/sandwich/jelly
@@ -2638,6 +2638,7 @@
quality = DRINK_VERYGOOD
taste_description = "light gin with sweet ginger and cucumber"
chemical_flags = REAGENT_CAN_BE_SYNTHESIZED
glass_price = DRINK_PRICE_MEDIUM
/datum/reagent/consumable/ethanol/gin_garden/on_mob_life(mob/living/carbon/doll, seconds_per_tick, times_fired)
. = ..()
@@ -587,6 +587,7 @@
fallback_icon = 'icons/obj/drinks/drink_effects.dmi'
fallback_icon_state = "spraytan_fallback"
chemical_flags = REAGENT_CAN_BE_SYNTHESIZED
glass_price = DRINK_PRICE_HIGH
/datum/reagent/spraytan/expose_mob(mob/living/exposed_mob, methods=TOUCH, reac_volume, show_message = TRUE)
. = ..()
@@ -24,6 +24,7 @@
inverse_chem = null
fallback_icon = 'icons/obj/drinks/drink_effects.dmi'
fallback_icon_state = "acid_buffer_fallback"
glass_price = DRINK_PRICE_HIGH
//Consumes self on addition and shifts ph
/datum/reagent/reaction_agent/acidic_buffer/intercept_reagents_transfer(datum/reagents/target, amount)
@@ -52,6 +53,7 @@
inverse_chem = null
fallback_icon = 'icons/obj/drinks/drink_effects.dmi'
fallback_icon_state = "base_buffer_fallback"
glass_price = DRINK_PRICE_HIGH
/datum/reagent/reaction_agent/basic_buffer/intercept_reagents_transfer(datum/reagents/target, amount)
. = ..()