PE and BE functionality fixed/added.
This commit is contained in:
@@ -34,6 +34,52 @@
|
||||
// to_chat(owner, "<span class='notice'>[linked_extract] desperately tries to move your soul to a living body, but can't find one!</span>")
|
||||
..()
|
||||
|
||||
/datum/status_effect/chem/BElarger
|
||||
id = "BElarger"
|
||||
var/list/items = list()
|
||||
|
||||
/datum/status_effect/chem/BElarger/on_apply(mob/living/carbon/M)
|
||||
var/mob/living/carbon/human/H
|
||||
if(H.w_uniform || H.wear_suit)
|
||||
playsound(M.loc, 'sound/items/poster_ripped.ogg', 50, 1)
|
||||
items |= M.get_equipped_items(TRUE)
|
||||
M.visible_message("<span class='boldnotice'>[M]'s chest suddenly bursts forth, ripping their clothes off!'</span>")
|
||||
to_chat(M, "<span class='warning'>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..!</b></span>")
|
||||
M.dropItemToGround(H.wear_suit)
|
||||
M.dropItemToGround(H.w_uniform)
|
||||
|
||||
/datum/status_effect/chem/BElarger/tick(mob/living/carbon/M)
|
||||
var/mob/living/carbon/human/H
|
||||
if(H.w_uniform || H.wear_suit)
|
||||
items |= M.get_equipped_items(TRUE)
|
||||
to_chat(M, "<span class='warning'>Your enormous breasts are way to large to fit anything over!</b></span>")
|
||||
M.dropItemToGround(H.wear_suit)
|
||||
M.dropItemToGround(H.w_uniform)
|
||||
|
||||
/datum/status_effect/chem/PElarger
|
||||
id = "PElarger"
|
||||
var/list/items = list()
|
||||
|
||||
/datum/status_effect/chem/PElarger/on_apply(mob/living/carbon/M)
|
||||
var/mob/living/carbon/human/H
|
||||
if(H.w_uniform || H.wear_suit)
|
||||
playsound(M.loc, 'sound/items/poster_ripped.ogg', 50, 1)
|
||||
items |= M.get_equipped_items(TRUE)
|
||||
M.visible_message("<span class='boldnotice'>[M]'s penis suddenly bursts forth, ripping their clothes off!'</span>")
|
||||
to_chat(M, "<span class='warning'>Your clothes give, ripping into peices under the strain of your swelling penis! 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..!</b></span>")
|
||||
M.dropItemToGround(H.wear_suit)
|
||||
M.dropItemToGround(H.w_uniform)
|
||||
|
||||
/datum/status_effect/chem/PElarger/tick(mob/living/carbon/M)
|
||||
var/mob/living/carbon/human/H
|
||||
if(H.w_uniform || H.wear_suit)
|
||||
items |= M.get_equipped_items(TRUE)
|
||||
to_chat(M, "<span class='warning'>Your enormous package is way to large to fit anything over!</b></span>")
|
||||
M.dropItemToGround(H.wear_suit)
|
||||
M.dropItemToGround(H.w_uniform)
|
||||
|
||||
|
||||
/*Doesn't work
|
||||
/datum/status_effect/chem/SDGF/candidates
|
||||
id = "SGDFCandi"
|
||||
var/mob/living/fermi_Clone
|
||||
@@ -42,3 +88,4 @@
|
||||
/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 ..()
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user