update content

This commit is contained in:
SandPoot
2023-06-20 15:39:24 -03:00
parent 9ab5c245bb
commit 15d52e5b15
18 changed files with 416 additions and 250 deletions
@@ -0,0 +1,13 @@
/datum/reagent/drug/anaphrodisiac/on_mob_life(mob/living/M)
if(M && M.client?.prefs.arousable)
M.add_lust(max(2, M.get_lust() / 5) * -1)
if(prob(0.5))
to_chat(M, span_warning("You don't feel quite like it."))
return ..()
/datum/reagent/drug/anaphrodisiacplus/on_mob_life(mob/living/M)
if(M && M.client?.prefs.arousable)
M.add_lust(max(10, M.get_lust() / 4) * -1)
if(prob(0.2))
to_chat(M, span_boldwarning("Nope, certainly don't feel like it."))
return ..()
@@ -16,6 +16,17 @@
if(method==PATCH || method==INGEST || method==INJECT || (method == VAPOR && prob(min(reac_volume,100)*(1 - touch_protection))))
L.ForceContractDisease(new /datum/disease/transformation/dragon(), FALSE, TRUE)
/datum/reagent/consumable/semen
// Prevents dripping from drinking a glass or other weird cases
var/amount_to_drip = 0
/datum/reagent/consumable/semen/on_mob_life(mob/living/carbon/M)
. = ..()
if(amount_to_drip && M.is_groin_exposed())
amount_to_drip = max(0, amount_to_drip - metabolization_rate)
var/obj/effect/decal/cleanable/semendrip/drip = new(get_turf(M))
drip.add_blood_DNA(data)
/*/datum/reagent/dragon_blood/admin
name = "Special dragon blood"
description = "It looks weird"