BROKEN COMMIT. Just in case.
This commit is contained in:
@@ -76,55 +76,48 @@
|
||||
//Should I turn someone with meter wide... assets into a blob?
|
||||
//this is far too lewd wah
|
||||
/obj/item/organ/genital/breasts/update_size()//wah
|
||||
//var/mob/living/carbon/human/H = owner
|
||||
message_admins("Breast size at start: [size], [cached_size], [owner]")
|
||||
//var/sprite_accessory/breasts = mob/living/carbon/M
|
||||
if(cached_size < 0)//I don't actually know what round() does to negative numbers, so to be safe!!
|
||||
var/obj/item/organ/genital/breasts/B = owner.getorganslot("breasts")
|
||||
to_chat(owner, "<span class='warning'>You feel your breasts shrinking away from your body as your chest flattens out.</b></span>")
|
||||
B.Remove(owner)
|
||||
switch(round(cached_size))
|
||||
if(0)
|
||||
if(0) //If flatchested
|
||||
size = "flat"
|
||||
if(statuscheck == TRUE)
|
||||
message_admins("Attempting to remove.")
|
||||
owner.remove_status_effect(/datum/status_effect/chem/BElarger)
|
||||
statuscheck = FALSE
|
||||
if(1 to 8)
|
||||
if(1 to 8) //If modest size
|
||||
size = breast_sizes[round(cached_size)]
|
||||
if(statuscheck == TRUE)
|
||||
message_admins("Attempting to remove.")
|
||||
owner.remove_status_effect(/datum/status_effect/chem/BElarger)
|
||||
statuscheck = FALSE
|
||||
if(9 to 15)
|
||||
if(9 to 15) //If massive
|
||||
size = breast_sizes[round(cached_size)]
|
||||
if(statuscheck == FALSE)
|
||||
message_admins("Attempting to apply.")
|
||||
owner.apply_status_effect(/datum/status_effect/chem/BElarger)
|
||||
statuscheck = TRUE
|
||||
|
||||
if(16 to INFINITY)
|
||||
if(16 to INFINITY) //if Rediculous
|
||||
size = cached_size
|
||||
message_admins("Breast size: [size], [cached_size], [owner]")
|
||||
if(round(cached_size) < 16)//Because byond doesn't count from 0, I have to do this.
|
||||
if (prev_size == 0)
|
||||
prev_size = "flat"
|
||||
if(size == 0)//Bloody byond with it's counting from 1
|
||||
size = "flat"
|
||||
message_admins("1. [prev_size] vs [breast_values[size]]")
|
||||
if (!isnum(prev_size))
|
||||
breast_values[prev_size]
|
||||
if(!isnum(prev_size)//Bloody byond with it's counting from 1
|
||||
breast_values[prev_size]
|
||||
message_admins("2. [breast_values[size]] vs [breast_values[prev_size]]")
|
||||
if (breast_values[size] > breast_values[prev_size])
|
||||
to_chat(owner, "<span class='warning'>Your breasts [pick("swell up to", "flourish into", "expand into", "burst forth into", "grow eagerly into", "amplify into")] a [uppertext(size)]-cup.</b></span>")
|
||||
else if (breast_values[size] < breast_values[prev_size])
|
||||
to_chat(owner, "<span class='warning'>Your breasts [pick("shrink down to", "decrease into", "diminish into", "deflate into", "shrivel regretfully into", "shrivels into")] a [uppertext(size)]-cup.</b></span>")
|
||||
to_chat(owner, "<span class='warning'>Your breasts [pick("shrink down to", "decrease into", "diminish into", "deflate into", "shrivel regretfully into", "contracts into")] a [uppertext(size)]-cup.</b></span>")
|
||||
prev_size = size
|
||||
icon_state = "breasts_[shape]_[size]"
|
||||
owner.update_body()
|
||||
else
|
||||
if(!isnum(prev_size))
|
||||
prev_size = breast_values[prev_size]
|
||||
if(round(size) > round(prev_size))
|
||||
icon_state = sanitize_text("breasts_[shape]_[size]")
|
||||
|
||||
else (cached_size == 16.2)
|
||||
to_chat(owner, "<span class='warning'>Your breasts [pick("swell up to", "flourish into", "expand into", "burst forth into", "grow eagerly into", "amplify into")] a hefty [uppertext(size)]cm diameter bosom, taking both of your hands to hold!.</b></span>")
|
||||
else if (round(size) < round(prev_size))
|
||||
to_chat(owner, "<span class='warning'>Your breasts do something crazy that the big Fermis in the sky didn't account for.</b></span>")
|
||||
//breasts.icon_state = "breasts_[shape]_[size]_0_FRONT"
|
||||
owner.update_body()
|
||||
B.update_icon()
|
||||
|
||||
@@ -18,23 +18,50 @@
|
||||
var/knot_girth_ratio = KNOT_GIRTH_RATIO_DEF
|
||||
var/list/dickflags = list()
|
||||
var/list/knotted_types = list("knotted", "barbed, knotted")
|
||||
var/mob/living/carbon/human/o = owner
|
||||
var/statuscheck = FALSE
|
||||
var/prev_size = 6
|
||||
|
||||
|
||||
/obj/item/organ/genital/penis/update_size()
|
||||
if(length == cached_length)
|
||||
return
|
||||
switch(length)
|
||||
if(-INFINITY to 5)
|
||||
|
||||
if(cached_length < 0)//I don't actually know what round() does to negative numbers, so to be safe!!
|
||||
var/obj/item/organ/genital/penis/P = o.getorganslot("breasts")
|
||||
to_chat(o, "<span class='warning'>You feel your tallywacker shrinking away from your body as your groin flattens out!</b></span>")
|
||||
P.Remove(o)
|
||||
switch(round(cached_length))
|
||||
if(0 to 4) //If modest size
|
||||
length = cached_length
|
||||
size = 1
|
||||
if(5 to 9)
|
||||
if(statuscheck == TRUE)
|
||||
message_admins("Attempting to remove.")
|
||||
o.remove_status_effect(/datum/status_effect/chem/PElarger)
|
||||
statuscheck = FALSE
|
||||
if(5 to 8) //If modest size
|
||||
length = cached_length
|
||||
size = 2
|
||||
if(9 to INFINITY)
|
||||
size = 3//no new sprites for anything larger yet
|
||||
/* if(9 to 15)
|
||||
size = 3
|
||||
if(15 to INFINITY)
|
||||
size = 3*/
|
||||
if(statuscheck == TRUE)
|
||||
message_admins("Attempting to remove.")
|
||||
o.remove_status_effect(/datum/status_effect/chem/PElarger)
|
||||
statuscheck = FALSE
|
||||
if(9 to INFINITY) //If massive
|
||||
length = cached_length
|
||||
size = 3 //no new sprites for anything larger yet
|
||||
if(statuscheck == FALSE)
|
||||
message_admins("Attempting to apply.")
|
||||
o.apply_status_effect(/datum/status_effect/chem/PElarger)
|
||||
statuscheck = TRUE
|
||||
message_admins("Pinas size: [size], [cached_length], [o]")
|
||||
message_admins("2. size vs prev_size")
|
||||
if (round(length) > round(prev_size))
|
||||
to_chat(o, "<span class='warning'>Your [pick("phallus", "willy", "dick", "prick", "member", "tool", "gentleman's organ", "cock", "wang", "knob", "dong", "joystick", "pecker", "johnson", "weenie", "tadger", "schlong", "thirsty ferret", "baloney pony", "schlanger")] [pick("swells up to", "flourishes into", "expands into", "bursts forth into", "grows eagerly into", "amplifys into")] a [uppertext(size)] inch penis.</b></span>")
|
||||
else if (round(length) < round(prev_size))
|
||||
to_chat(o, "<span class='warning'>Your [pick("phallus", "willy", "dick", "prick", "member", "tool", "gentleman's organ", "cock", "wang", "knob", "dong", "joystick", "pecker", "johnson", "weenie", "tadger", "schlong", "thirsty ferret", "baloney pony", "schlanger")] [pick("shrinks down to", "decreases into", "diminishes into", "deflates into", "shrivels regretfully into", "contracts into")] a [uppertext(size)] inch penis.</b></span>")
|
||||
prev_size = length
|
||||
icon_state = sanitize_text("penis_[shape]_[size]")
|
||||
o.update_body()
|
||||
P.update_icon()
|
||||
girth = (length * girth_ratio)
|
||||
cached_length = length
|
||||
|
||||
/obj/item/organ/genital/penis/update_appearance()
|
||||
var/string = "penis_[GLOB.cock_shapes_icons[shape]]_[size]"
|
||||
@@ -48,7 +75,7 @@
|
||||
color = "#[skintone2hex(H.skin_tone)]"
|
||||
else
|
||||
color = "#[owner.dna.features["cock_color"]]"
|
||||
//owner.update_body()
|
||||
H.update_body()
|
||||
|
||||
/obj/item/organ/genital/penis/update_link()
|
||||
if(owner)
|
||||
|
||||
@@ -433,7 +433,6 @@
|
||||
overdose_threshold = 12
|
||||
metabolization_rate = 0.5
|
||||
var/mob/living/carbon/human/H
|
||||
var/target = get_bodypart(BODY_ZONE_CHEST)
|
||||
|
||||
|
||||
|
||||
@@ -465,10 +464,10 @@
|
||||
message_admins("Breast size: [B.size], [B.cached_size], [holder]")
|
||||
B.cached_size = B.cached_size + 0.1
|
||||
if (B.cached_size >= 8.5 && B.cached_size < 9)
|
||||
var/target = M.get_bodypart(BODY_ZONE_CHEST)
|
||||
to_chat(M, "<span class='warning'>Your breasts begin to strain against your clothes tightly!</b></span>")
|
||||
M.adjustOxyLoss(10, 0)
|
||||
M.apply_damage(5, BRUTE, target)
|
||||
|
||||
M.apply_damage(2, BRUTE, target)
|
||||
B.update()
|
||||
..()
|
||||
|
||||
@@ -485,17 +484,10 @@
|
||||
|
||||
if(P)
|
||||
P.length = P.length - 0.1
|
||||
if (P.length <= 0.1)
|
||||
to_chat(M, "<span class='warning'>You feel your penis shink, disappearing from your loins, leaving a strange smoothness in your pants.</b></span>")
|
||||
P.Remove(P)
|
||||
if(T)
|
||||
T.Remove(M)
|
||||
else if (P.length > 7)
|
||||
M.add_movespeed_modifier("hugedick", TRUE, 100, NONE, override = TRUE, multiplicative_slowdown = (P.length - 10.1))//Via la liberation
|
||||
M.next_move_modifier -= 0.1
|
||||
else
|
||||
M.remove_status_effect(/datum/status_effect/chem/PElarger)
|
||||
P.update()
|
||||
message_admins("Breast size: [P.size], [P.cached_size], [holder]")
|
||||
P.update()
|
||||
if(T)
|
||||
T.Remove(M)
|
||||
if(!V)
|
||||
var/obj/item/organ/genital/vagina/nV = new
|
||||
nV.Insert(M)
|
||||
@@ -514,7 +506,6 @@
|
||||
taste_description = "a salty and sticky substance."
|
||||
overdose_threshold = 12
|
||||
metabolization_rate = 0.5
|
||||
var/target get_bodypart(BODY_ZONE_CHEST)
|
||||
//var/mob/living/carbon/M
|
||||
//var/mob/living/carbon/human/species/S
|
||||
/*
|
||||
@@ -527,36 +518,47 @@
|
||||
var/mob/living/carbon/human/H
|
||||
|
||||
/datum/reagent/fermi/PElarger/on_mob_life(mob/living/carbon/M) //Increases penis size
|
||||
/*
|
||||
switch(current_cycle)
|
||||
if(0)
|
||||
*/
|
||||
|
||||
var/obj/item/organ/genital/breasts/B = M.getorganslot("breasts")
|
||||
if(!B) //If they don't have breasts, give them breasts.
|
||||
message_admins("No breasts found!")
|
||||
var/obj/item/organ/genital/breasts/nB = new
|
||||
nB.Insert(M)
|
||||
if(nB)
|
||||
if(M.dna.species.use_skintones && M.dna.features["genitals_use_skintone"])
|
||||
nB.color = skintone2hex(H.skin_tone)
|
||||
else if(M.dna.features["breasts_color"])
|
||||
nB.color = "#[M.dna.features["breasts_color"]]"
|
||||
else
|
||||
nB.color = skintone2hex(H.skin_tone)
|
||||
nB.size = "flat"
|
||||
|
||||
to_chat(M, "<span class='warning'>Your chest feels warm, tingling with newfound sensitivity.</b></span>")
|
||||
|
||||
B = nB
|
||||
//If they have them, increase size. If size is comically big, limit movement and rip clothes.
|
||||
message_admins("Breast size: [B.size], [B.cached_size], [holder]")
|
||||
B.cached_size = B.cached_size + 0.1
|
||||
|
||||
B.update()
|
||||
|
||||
var/obj/item/organ/genital/penis/P = M.getorganslot("penis")
|
||||
if(!P)
|
||||
message_admins("No penis found!")
|
||||
message_admins("No penis found!")//They do have a preponderance for escapism, or so I've heard.
|
||||
var/obj/item/organ/genital/penis/nP = new
|
||||
nP.Insert(M)
|
||||
if(nP)
|
||||
/*
|
||||
if(M.dna.species.use_skintones && H.dna.features["genitals_use_skintone"])
|
||||
nP.color = skintone2hex(H.skin_tone)
|
||||
else if(M.dna.features["cock_color"])
|
||||
nP.color = "#[M.dna.features["cock_color"]]"
|
||||
else*/
|
||||
//nP.color = skintone2hex(H.skin_tone)
|
||||
nP.length = 0.2
|
||||
to_chat(M, "<span class='warning'>Your groin feels warm, as you feel a new bulge down below.</b></span>")
|
||||
to_chat(M, "<span class='warning'>Your groin feels warm, as you feel a newly forming bulge down below.</b></span>")//OwO
|
||||
nP.cached_length = 0
|
||||
nP.prev_size = 0
|
||||
M.reagents.remove_reagent(src.id, 5)
|
||||
P = nP
|
||||
P.update_size()
|
||||
else
|
||||
P.length = P.length + 0.1
|
||||
if (P.length > 9)
|
||||
M.apply_status_effect(/datum/status_effect/chem/PElarger)
|
||||
M.add_movespeed_modifier("hugedick", TRUE, 100, NONE, override = TRUE, multiplicative_slowdown = (P.length - 10.1))
|
||||
M.next_move_modifier += 0.1
|
||||
else if (P.length > 8.5)
|
||||
if (P.cached_size >= 10.5 && P.cached_length < 11) //too low?
|
||||
M.apply_damage(2, BRUTE, target)
|
||||
var/target = M.get_bodypart(BODY_ZONE_CHEST)
|
||||
to_chat(M, "<span class='warning'>Your cock begin to strain against your clothes tightly!</b></span>")
|
||||
M.apply_damage(5, BRUTE, target)
|
||||
|
||||
@@ -586,13 +588,22 @@
|
||||
if(!T)
|
||||
var/obj/item/organ/genital/testicles/nT = new
|
||||
nT.Insert(M)
|
||||
|
||||
T = nT
|
||||
..()
|
||||
|
||||
|
||||
/datum/reagent/fermi/Astral // Gives you the ability to astral project for a moment!
|
||||
name = "Astrogen"
|
||||
id = "PElarger"
|
||||
id = "astral"
|
||||
description = "A volatile collodial mixture derived from various masculine solutions that encourages a larger gentleman's package via a potent testosterone mix." //The toxic masculinity thing is a joke because I thought it would be funny to include it in the reagents, but I don't think many would find it funny?
|
||||
color = "#H60584" // rgb: 96, 0, 255
|
||||
taste_description = "a salty and sticky substance."
|
||||
overdose_threshold = 12
|
||||
metabolization_rate = 0.5
|
||||
|
||||
/datum/reagent/fermi/Astral // Gives you the ability to astral project for a moment!
|
||||
name = "Astrogen"
|
||||
id = "astral"
|
||||
description = "A volatile collodial mixture derived from various masculine solutions that encourages a larger gentleman's package via a potent testosterone mix." //The toxic masculinity thing is a joke because I thought it would be funny to include it in the reagents, but I don't think many would find it funny?
|
||||
color = "#H60584" // rgb: 96, 0, 255
|
||||
taste_description = "a salty and sticky substance."
|
||||
|
||||
Reference in New Issue
Block a user