PE replaced with... You know what.

This commit is contained in:
Fermi
2019-06-13 04:32:52 +01:00
parent 026f29ba46
commit 097c338ded
2 changed files with 14 additions and 14 deletions
@@ -105,13 +105,13 @@
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/datum/status_effect/chem/PElarger /datum/status_effect/chem/penis_enlarger
id = "PElarger" id = "PElarger"
alert_type = null alert_type = null
var/bloodCalc var/bloodCalc
var/moveCalc var/moveCalc
/datum/status_effect/chem/PElarger/on_apply(mob/living/carbon/human/H)//Removes clothes, they're too small to contain you. You belong to space now. /datum/status_effect/chem/penis_enlarger/on_apply(mob/living/carbon/human/H)//Removes clothes, they're too small to contain you. You belong to space now.
investigate_log("[owner]'s dick has reached comical sizes. ID: [owner.id]") investigate_log("[owner]'s dick has reached comical sizes. ID: [owner.id]")
var/mob/living/carbon/human/o = owner var/mob/living/carbon/human/o = owner
var/items = o.get_contents() var/items = o.get_contents()
@@ -127,7 +127,7 @@
return ..() return ..()
/datum/status_effect/chem/PElarger/tick(mob/living/carbon/M) /datum/status_effect/chem/penis_enlarger/tick(mob/living/carbon/M)
var/mob/living/carbon/human/o = owner var/mob/living/carbon/human/o = owner
var/obj/item/organ/genital/penis/P = o.getorganslot("penis") var/obj/item/organ/genital/penis/P = o.getorganslot("penis")
moveCalc = 1+((round(P.length) - 21)/3) //effects how fast you can move moveCalc = 1+((round(P.length) - 21)/3) //effects how fast you can move
@@ -154,7 +154,7 @@
o.AdjustBloodVol(bloodCalc) o.AdjustBloodVol(bloodCalc)
..() ..()
/datum/status_effect/chem/PElarger/on_remove(mob/living/carbon/human/o) /datum/status_effect/chem/penis_enlarger/on_remove(mob/living/carbon/human/o)
investigate_log("[owner]'s dick has reduced to an acceptable size. ID: [owner.id]") investigate_log("[owner]'s dick has reduced to an acceptable size. ID: [owner.id]")
owner.remove_movespeed_modifier("hugedick") owner.remove_movespeed_modifier("hugedick")
owner.ResetBloodVol() owner.ResetBloodVol()
@@ -36,28 +36,28 @@
if(0 to 4) //If modest size if(0 to 4) //If modest size
length = cached_length length = cached_length
size = 1 size = 1
if(owner.has_status_effect(/datum/status_effect/chem/PElarger)) if(owner.has_status_effect(/datum/status_effect/chem/penis_enlarger))
o.remove_status_effect(/datum/status_effect/chem/PElarger) o.remove_status_effect(/datum/status_effect/chem/penis_enlarger)
if(5 to 10) //If modest size if(5 to 10) //If modest size
length = cached_length length = cached_length
size = 2 size = 2
if(owner.has_status_effect(/datum/status_effect/chem/PElarger)) if(owner.has_status_effect(/datum/status_effect/chem/penis_enlarger))
o.remove_status_effect(/datum/status_effect/chem/PElarger) o.remove_status_effect(/datum/status_effect/chem/penis_enlarger)
if(11 to 20) //If massive if(11 to 20) //If massive
length = cached_length length = cached_length
size = 3 size = 3
if(owner.has_status_effect(/datum/status_effect/chem/PElarger)) if(owner.has_status_effect(/datum/status_effect/chem/penis_enlarger))
o.remove_status_effect(/datum/status_effect/chem/PElarger) o.remove_status_effect(/datum/status_effect/chem/penis_enlarger)
if(21 to 35) //If massive and due for large effects if(21 to 35) //If massive and due for large effects
length = cached_length length = cached_length
size = 3 size = 3
if(!owner.has_status_effect(/datum/status_effect/chem/PElarger)) if(!owner.has_status_effect(/datum/status_effect/chem/penis_enlarger))
o.apply_status_effect(/datum/status_effect/chem/PElarger) o.apply_status_effect(/datum/status_effect/chem/penis_enlarger)
if(36 to INFINITY) //If comical if(36 to INFINITY) //If comical
length = cached_length length = cached_length
size = 4 //no new sprites for anything larger yet size = 4 //no new sprites for anything larger yet
if(!owner.has_status_effect(/datum/status_effect/chem/PElarger)) if(!owner.has_status_effect(/datum/status_effect/chem/penis_enlarger))
o.apply_status_effect(/datum/status_effect/chem/PElarger) o.apply_status_effect(/datum/status_effect/chem/penis_enlarger)
if (round(length) > round(prev_length)) if (round(length) > round(prev_length))
to_chat(o, "<span class='warning'>Your [pick(GLOB.gentlemans_organ_names)] [pick("swells up to", "flourishes into", "expands into", "bursts forth into", "grows eagerly into", "amplifys into")] a [uppertext(round(length))] inch penis.</b></span>") to_chat(o, "<span class='warning'>Your [pick(GLOB.gentlemans_organ_names)] [pick("swells up to", "flourishes into", "expands into", "bursts forth into", "grows eagerly into", "amplifys into")] a [uppertext(round(length))] inch penis.</b></span>")