Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Wasabi - a pungent spice found in basic nettles. #15870

Merged
merged 1 commit into from May 5, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions code/modules/food_and_drinks/food/condiment.dm
Expand Up @@ -23,6 +23,7 @@
"sodiumchloride" = list("saltshakersmall", "salt shaker", "Salt. From space oceans, presumably"),
"blackpepper" = list("peppermillsmall", "pepper mill", "Often used to flavor food or make people sneeze"),
"cornoil" = list("oliveoil", "corn oil bottle", "A delicious oil used in cooking. Made from corn"),
"wasabi" = list("wasabitube", "wasabi bottle", "A pungent paste commonly served in tiny amounts with sushi. Spicy!"),
"sugar" = list("emptycondiment", "sugar bottle", "Tasty spacey sugar!"))
var/originalname = "condiment" //Can't use initial(name) for this. This stores the name set by condimasters.

Expand Down
2 changes: 1 addition & 1 deletion code/modules/hydroponics/grown/nettle.dm
Expand Up @@ -11,7 +11,7 @@
growthstages = 5
genes = list(/datum/plant_gene/trait/repeated_harvest, /datum/plant_gene/trait/plant_type/weed_hardy)
mutatelist = list(/obj/item/seeds/nettle/death)
reagents_add = list("sacid" = 0.5)
reagents_add = list("wasabi" = 0.15)

/obj/item/seeds/nettle/death
name = "pack of death-nettle seeds"
Expand Down
Expand Up @@ -30,7 +30,7 @@
/obj/item/stack/sheet/mineral/tranquillite = list("nothing" = 20),
/obj/item/stack/sheet/mineral/silver = list("silver" = 20),
/obj/item/stack/sheet/mineral/gold = list("gold" = 20),
/obj/item/grown/nettle/basic = list("sacid" = 0),
/obj/item/grown/nettle/basic = list("wasabi" = 0),
/obj/item/grown/nettle/death = list("facid" = 0, "sacid" = 0),
/obj/item/grown/novaflower = list("capsaicin" = 0, "condensedcapsaicin" = 0),

Expand Down
15 changes: 15 additions & 0 deletions code/modules/reagents/chemistry/reagents/food.dm
Expand Up @@ -791,6 +791,21 @@
color = "#B4641B"
taste_description = "gravy"

/datum/reagent/consumable/wasabi
name = "Wasabi"
id = "wasabi"
description = "A pungent green paste often served with sushi. Consuming too much causes an uncomfortable burning sensation in the nostrils."
reagent_state = LIQUID
color = "#80942F"
taste_description = "pungency"

/datum/reagent/consumable/wasabi/reaction_mob(mob/living/M, method=REAGENT_TOUCH, volume)
if(method == REAGENT_INGEST)
if(volume <= 1)
to_chat(M, "<span class='notice'>Your nostrils tingle briefly.</span>")
else
to_chat(M, "<span class='warning'>Your nostrils burn uncomfortably!</span>")
M.adjustFireLoss(1)

///Food Related, but non-nutritious

Expand Down
Binary file modified icons/obj/food/containers.dmi
Binary file not shown.