/datum/status_effect/chem/SGDF id = "SGDF" var/mob/living/fermi_Clone /datum/status_effect/chem/SGDF/on_apply() message_admins("SGDF status appied") var/typepath = owner.type fermi_Clone = new typepath(owner.loc) var/mob/living/carbon/M = owner var/mob/living/carbon/C = fermi_Clone //fermi_Clone = new typepath(get_turf(M)) //var/mob/living/carbon/C = fermi_Clone //var/mob/living/carbon/SM = fermi_Gclone if(istype(C) && istype(M)) C.real_name = M.real_name M.dna.transfer_identity(C, transfer_SE=1) C.updateappearance(mutcolor_update=1) return ..() /datum/status_effect/chem/SGDF/tick() //message_admins("SDGF ticking") if(owner.stat == DEAD) message_admins("SGDF status swapping") if(fermi_Clone && fermi_Clone.stat != DEAD) if(owner.mind) owner.mind.transfer_to(fermi_Clone) owner.visible_message("Lucidity shoots to your previously blank mind as your mind suddenly finishes the cloning process. You marvel for a moment at yourself, as your mind subconciously recollects all your memories up until the point when you cloned yourself. curiously, you find that you memories are blank after you ingested the sythetic serum, leaving you to wonder where the other you is.") fermi_Clone.visible_message("Lucidity shoots to your previously blank mind as your mind suddenly finishes the cloning process. You marvel for a moment at yourself, as your mind subconciously recollects all your memories up until the point when you cloned yourself. curiously, you find that you memories are blank after you ingested the sythetic serum, leaving you to wonder where the other you is.") fermi_Clone = null owner.remove_status_effect(src) // to_chat(owner, "[linked_extract] desperately tries to move your soul to a living body, but can't find one!") ..() /datum/status_effect/chem/BElarger id = "BElarger" //var/list/items = list() //var/items = o.get_contents() //mob/living/carbon/M = M tried, no dice //owner, tried, no dice /datum/status_effect/chem/BElarger/on_apply(mob/living/carbon/human/H)//Removes clothes, they're too small to contain you. You belong to space now. var/mob/living/carbon/human/o = owner var/items = o.get_contents() for(var/obj/item/W in items) if(W == o.w_uniform || W == o.wear_suit) o.dropItemToGround(W, TRUE) playsound(o.loc, 'sound/items/poster_ripped.ogg', 50, 1) //message_admins("BElarge started!") o.visible_message("[o]'s chest suddenly bursts forth, ripping their clothes off!'") to_chat(o, "Your clothes give, ripping into peices under the strain of your swelling breasts! Unless you manage to reduce the size of your breasts, there's no way you're going to be able to put anything on over these melons..!") return ..() /datum/status_effect/chem/BElarger/tick(mob/living/carbon/human/H)//If you try to wear clothes, you fail. Slows you down if you're comically huge var/mob/living/carbon/human/o = owner var/obj/item/organ/genital/breasts/B = o.getorganslot("breasts") var/items = o.get_contents() for(var/obj/item/W in items) if(W == o.w_uniform || W == o.wear_suit) o.dropItemToGround(W, TRUE) playsound(o.loc, 'sound/items/poster_ripped.ogg', 50, 1) to_chat(owner, "Your enormous breasts are way too large to fit anything over them!") //message_admins("BElarge tick!") /* var/items = o.get_contents() for(var/obj/item/W in items) if(W == o.w_uniform || W == o.wear_suit) o.dropItemToGround(W) //items |= owner.get_equipped_items(TRUE) //owner.dropItemToGround(owner.wear_suit) //owner.dropItemToGround(owner.w_uniform) */ switch(round(B.cached_size)) if(9) if (!(B.breast_sizes[B.prev_size] == B.size)) o.remove_movespeed_modifier("megamilk") o.next_move_modifier = 1 if(10 to INFINITY) if (!(B.breast_sizes[B.prev_size] == B.size)) to_chat(H, "Your indulgent busom is so substantial, it's affecting your movements!") o.add_movespeed_modifier("megamilk", TRUE, 100, NONE, override = TRUE, multiplicative_slowdown = (round(B.cached_size) - 8)) o.next_move_modifier = (round(B.cached_size) - 8) ..() /datum/status_effect/chem/BElarger/on_remove(mob/living/carbon/M) owner.remove_movespeed_modifier("megamilk") owner.next_move_modifier = 1 /datum/status_effect/chem/PElarger id = "PElarger" /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. message_admins("PElarge started!") var/mob/living/carbon/human/o = owner var/items = o.get_contents() for(var/obj/item/W in items) if(W == o.w_uniform || W == o.wear_suit) o.dropItemToGround(W, TRUE) playsound(o.loc, 'sound/items/poster_ripped.ogg', 50, 1) owner.visible_message("[o]'s schlong suddenly bursts forth, ripping their clothes off!'") to_chat(o, "Your clothes give, ripping into peices under the strain of your swelling pecker! Unless you manage to reduce the size of your emancipated trouser snake, there's no way you're going to be able to put anything on over this girth..!") return ..() /datum/status_effect/chem/PElarger/tick(mob/living/carbon/M) var/mob/living/carbon/human/o = owner var/obj/item/organ/genital/penis/P = o.getorganslot("penis") message_admins("PElarge tick!") var/items = o.get_contents() for(var/obj/item/W in items) if(W == o.w_uniform || W == o.wear_suit) o.dropItemToGround(W, TRUE) playsound(o.loc, 'sound/items/poster_ripped.ogg', 50, 1) to_chat(owner, "Your enormous package is way to large to fit anything over!") switch(round(P.cached_length)) if(11) if (!(P.prev_size == P.size)) to_chat(o, "Your rascally willy has become a more managable size, liberating your movements.") o.remove_movespeed_modifier("hugedick") o.next_move_modifier = 1 if(12 to INFINITY) if (!(P.prev_size == P.size)) to_chat(o, "Your indulgent johnson is so substantial, it's affecting your movements!") o.add_movespeed_modifier("hugedick", TRUE, 100, NONE, override = TRUE, multiplicative_slowdown = (P.length - 11.1)) o.next_move_modifier = (round(P.length) - 11) ..() /*Doesn't work /datum/status_effect/chem/SDGF/candidates id = "SGDFCandi" var/mob/living/fermi_Clone var/list/candies = list() /datum/status_effect/chem/SDGF/candidates/on_apply() candies = pollGhostCandidates("Do you want to play as a clone and do you agree to respect their character and act in a similar manner to them? I swear to god if you diddle them I will be very disapointed in you. ", "FermiClone", null, ROLE_SENTIENCE, 300) // see poll_ignore.dm, should allow admins to ban greifers or bullies return ..() */