This commit is contained in:
TrilbySpaceClone
2019-08-11 11:47:56 -04:00
parent 5bd6f88226
commit 821463f59c
7 changed files with 54 additions and 2 deletions
@@ -881,3 +881,20 @@
to_chat(M, "<span class = 'notice'>[pick("Diamond skies where white deer fly.","Sipping strawberry tea.","Silver raindrops drift through timeless, Neverending June.","Crystal ... pearls free, with love!","Beaming love into me.")]</span>")
..()
. = 1
/datum/reagent/consumable/catnip_tea
name = "Catnip Tea"
id = "catnip_tea"
description = "A sleepy and tasty catnip tea!"
color = "#101000" // rgb: 16, 16, 0
nutriment_factor = 0
taste_description = "sugar and catnip"
glass_icon_state = "teaglass"
glass_name = "glass of catnip tea"
glass_desc = "A purfect drink for a cat."
/datum/reagent/consumable/catnip_tea/on_mob_life(mob/living/carbon/M)
M.emote("nya")
to_chat(M, "<span class = 'notice'>[pick("Headpats feel nice.", "Backrubs would be nice.", "Mew")]</span>")
M.adjustArousalLoss(5)
M.adjustStaminaLoss(3)
@@ -1962,3 +1962,15 @@
/datum/reagent/changeling_string/Destroy()
qdel(original_dna)
return ..()
/datum/reagent/pax/catnip
name = "catnip"
id = "catnip"
taste_description = "grass"
description = "A colorless liquid that makes people more peaceful and felines more happy."
metabolization_rate = 1.75 * REAGENTS_METABOLISM
/datum/reagent/pax/catnip/on_mob_life(mob/living/carbon/M)
M.emote("nya")
to_chat(M, "<span class = 'notice'>[pick("Headpats feel nice.", "The feeling of a hairball...", "Backrubs would be nice.", "Whats behind those doors?")]</span>")
M.adjustArousalLoss(2)