Adding in some secret aphro :3

This commit is contained in:
AnonymousHybi
2018-03-22 17:46:59 +00:00
parent 2c4f33bdca
commit ce682ab5d7
2 changed files with 51 additions and 0 deletions
@@ -0,0 +1,50 @@
/// Recipes
/datum/chemical_reaction/aphrodisiac
name = "aphrodisiac"
id = "aphrodisiac"
result = "aphrodisiac"
required_reagents = list("carbon" = 2, "hydrogen" = 2, "oxygen" = 2, "water" = 1)
result_amount = 6
/datum/reagent/aphrodisiac
name = "aphrodisiac"
id = "aphrodisiac"
description = "You so horny."
taste_description = "sweetness"
reagent_state = LIQUID
color = "#FF9999"
scannable = 1
/datum/reagent/aphrodisiac/affect_blood(var/mob/living/carbon/M, var/alien, var/removed)
if(!M) return
if(prob(3))
M.emote(pick("blush", "moan", "moan", "giggle"))
// Unsure if we want to allow cumming. I'm gonna disable it for now.
/*
if(prob(1))
switch(M.gender)
if(MALE)
M.emote("mcum")
if(FEMALE)
M.emote("fcum")
if(PLURAL)
if(prob(50))
M.emote("mcum")
else
M.emote("fcum")
*/
// Disabled cause I'm unsure if we want to do this or not.
/*
/mob/living/proc/cum()
if(!check_has_mouth())
return
src.visible_message("<span class='warning'>[src] throws up!</span>","<span class='warning'>You throw up!</span>")
var/turf/simulated/T = get_turf(src) //TODO: Make add_blood_floor remove blood from human mobs
if(istype(T))
T.add_vomit_floor(src, 1)
*/