mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-20 18:47:20 +01:00
Added Wasabi - a pungent spice found in basic nettles. (#15870)
This commit is contained in:
@@ -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),
|
||||
|
||||
|
||||
@@ -794,6 +794,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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user