mirror of
https://github.com/Sandstorm-Station/Sandstorm-Station-13.git
synced 2026-08-22 12:47:43 +01:00
update content
This commit is contained in:
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user