Skip to content

Commit

Permalink
Changing some spiciness descriptions for Tesh.
Browse files Browse the repository at this point in the history
  • Loading branch information
MistakeNot4892 committed Aug 10, 2023
1 parent f527687 commit 1d03634
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 9 deletions.
36 changes: 29 additions & 7 deletions code/modules/food/food/snacks.dm
Original file line number Diff line number Diff line change
Expand Up @@ -5229,7 +5229,11 @@
nachotrans = /obj/item/reagent_containers/food/snacks/chip/nacho/salsa
chiptrans = /obj/item/reagent_containers/food/snacks/chip/salsa
icon_state = "dip_salsa"
nutriment_desc = list("spicy tomato" = 20)
nutriment_desc = list(
TASTE_STRING_DEFAULT = list("spicy tomato" = 20),
SPECIES_TESHARI = list("fruity notes" = 10, "rich tomato" = 10)
)

nutriment_amt = 20
nutriment_allergens = ALLERGEN_VEGETABLE

Expand Down Expand Up @@ -5350,7 +5354,10 @@
icon_state = "burrito_cheese_spicy"
bitesize = 4
center_of_mass = list("x"=16, "y"=16)
nutriment_desc = list("tortilla" = 2, "cheese" = 2, "spicy beans" = 2, "chili peppers" = 2)
nutriment_desc = list(
TASTE_STRING_DEFAULT = list("tortilla" = 2, "cheese" = 2, "spicy beans" = 2, "chili peppers" = 2),
SPECIES_TESHARI = list("tortilla" = 2, "cheese" = 2, "beans" = 2, "fruity peppers" = 2)
)
nutriment_amt = 6
nutriment_allergens = ALLERGEN_GRAINS|ALLERGEN_MEAT|ALLERGEN_DAIRY|ALLERGEN_BEANS

Expand All @@ -5363,7 +5370,10 @@
desc = "A super spicy vegetarian burrito."
icon_state = "fuegoburrito"
nutriment_amt = 6
nutriment_desc = list("chili peppers" = 2, "spicy beans" = 2, "tortilla" = 2)
nutriment_desc = list(
TASTE_STRING_DEFAULT = list("chili peppers" = 2, "spicy beans" = 2, "tortilla" = 2),
SPECIES_TESHARI = list("fruity peppers" = 2, "beans" = 2, "tortilla" = 2)
)
nutriment_allergens = ALLERGEN_GRAINS|ALLERGEN_BEANS
bitesize = 2

Expand Down Expand Up @@ -5610,7 +5620,10 @@
trash = /obj/item/trash/snack_bowl
filling_color = "#4f2100"
nutriment_amt = 12
nutriment_desc = list("fried egg" = 4, "sauted vegetables" = 4, "spicy gochujang" = 4)
nutriment_desc = list(
TASTE_STRING_DEFAULT = list("fried egg" = 4, "sauted vegetables" = 4, "spicy gochujang" = 4),
SPECIES_TESHARI = list("fried egg" = 4, "sauted vegetables" = 4, "rich gochujang" = 4)
)
nutriment_allergens = ALLERGEN_VEGETABLE|ALLERGEN_EGGS|ALLERGEN_GRAINS
center_of_mass = list("x"=15, "y"=9)
bitesize = 4
Expand Down Expand Up @@ -6897,7 +6910,10 @@
icon_state = "weebonuts"
trash = /obj/item/trash/weebonuts
desc = "A bag of Red Alert! brand spicy nuts. Goes well with your beer!"
nutriment_desc = list("nuts" = 4, "spicyness" = 1)
nutriment_desc = list(
TASTE_STRING_DEFAULT = list("nuts" = 4, "spicyness" = 1),
SPECIES_TESHARI = list("nuts" = 4, "a strange, cloying aftertaste" = 1)
)
nutriment_amt = 5
nutriment_allergens = ALLERGEN_SEEDS
bitesize = 2
Expand All @@ -6912,7 +6928,10 @@
icon_state = "wasabi_peas"
trash = /obj/item/trash/wasabi_peas
desc = "A bag of Hadokikku brand wasabi peas, a delicious snack most definitely not imported directly from Sol, despite the advertisements."
nutriment_desc = list("peas" = 4, "spicyness" = 1)
nutriment_desc = list(
TASTE_STRING_DEFAULT = list("peas" = 4, "spicyness" = 1),
SPECIES_TESHARI = list("peas" = 4, "a strange, cloying aftertaste" = 1)
)
nutriment_amt = 6
nutriment_allergens = ALLERGEN_VEGETABLE
bitesize = 2
Expand Down Expand Up @@ -7474,7 +7493,10 @@
trash = /obj/item/trash/asian_bowl
bitesize = 2
nutriment_amt = 6
nutriment_desc = list("spicyness" = 4, "sourness" = 4, "tofu" = 1)
nutriment_desc = list(
TASTE_STRING_DEFAULT = list("spicyness" = 4, "sourness" = 4, "tofu" = 1),
SPECIES_TESHARI = list("cloying heat" = 4, "sourness" = 4, "tofu" = 1)
)
nutriment_allergens = ALLERGEN_FUNGI|ALLERGEN_BEANS|ALLERGEN_VEGETABLE

/obj/item/reagent_containers/food/snacks/hotandsoursoup/Initialize()
Expand Down
10 changes: 8 additions & 2 deletions code/modules/reagents/reagents/food_drinks.dm
Original file line number Diff line number Diff line change
Expand Up @@ -745,7 +745,10 @@
name = "Capsaicin Oil"
id = "capsaicin"
description = "This is what makes chilis hot."
taste_description = "spiciness"
taste_description = list(
TASTE_STRING_DEFAULT = list("spiciness" = 10),
SPECIES_TESHARI = list("cloying richness" = 10)
)
taste_mult = 1.5
reagent_state = LIQUID
ingest_met = REM
Expand Down Expand Up @@ -3858,7 +3861,10 @@
name = "Redeemer's Brew"
id = "unathiliquor"
description = "This barely qualifies as a drink, and could give jet fuel a run for its money. Also known to cause feelings of euphoria and numbness."
taste_description = "spiced numbness"
taste_description = list(
TASTE_STRING_DEFAULT = list("spiced numbness" = 10),
SPECIES_TESHARI = list("rich numbness" = 10)
)
color = "#242424"
strength = 5

Expand Down

0 comments on commit 1d03634

Please sign in to comment.