Bees
This commit is contained in:
@@ -39,6 +39,7 @@
|
||||
var/list/items = list()
|
||||
|
||||
/datum/status_effect/chem/BElarger/on_apply(mob/living/carbon/M)//Removes clothes, they're too small to contain you. You belong to space now.
|
||||
message_admins("BElarge started!")
|
||||
var/mob/living/carbon/human/H = M
|
||||
for(var/obj/item/W in H)
|
||||
if(W == H.w_uniform || W == H.wear_suit)
|
||||
@@ -51,6 +52,7 @@
|
||||
//owner.dropItemToGround(owner.w_uniform)
|
||||
|
||||
/datum/status_effect/chem/BElarger/tick(mob/living/carbon/M)//If you try to wear clothes, you fail. Slows you down if you're comically huge
|
||||
message_admins("BElarge tick!")
|
||||
var/obj/item/organ/genital/breasts/B = M.getorganslot("breasts")
|
||||
var/mob/living/carbon/human/H = M
|
||||
message_admins("M: [M]")
|
||||
|
||||
@@ -56,7 +56,6 @@
|
||||
desc += " They're very small and flatchested, however."
|
||||
else
|
||||
desc += " You estimate that they're [uppertext(size)]-cups."
|
||||
else
|
||||
|
||||
if(producing && aroused_state)
|
||||
desc += " They're leaking [fluid_id]."
|
||||
@@ -96,11 +95,16 @@
|
||||
size = breast_sizes[round(cached_size)]
|
||||
//if(!H.has_status_effect(/datum/status_effect/chem/BElarger))
|
||||
H.apply_status_effect(/datum/status_effect/chem/BElarger)
|
||||
message_admins("Attempting to apply.")
|
||||
if(16 to INFINITY)
|
||||
size = cached_size
|
||||
message_admins("Breast size: [size], [cached_size], [owner]")
|
||||
if(size == 0)//Bloody byond with it's counting from 1
|
||||
size = 17
|
||||
message_admins("[breast_values[prev_size]] vs [breast_values[size]]")
|
||||
if (!(prev_size == breast_values[size]))
|
||||
if(prev_size == 0)//rabble rabble
|
||||
prev_size = 17
|
||||
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>")
|
||||
prev_size = cached_size
|
||||
|
||||
Reference in New Issue
Block a user