* ERP, miscreants, clothing * github pls * guns, dogborg, areas, vendor * finishes moving around the last of the stuffs * cleaned up shit. italics on subtle messages vore code to modular_citadel too * updates codeowners and recompiles tgui because it's a healthy thing to do * reee, I had that spawner set byond * cleans up a bad pipe does the thing I've been meaning to do for a while now as well. * bumps up xenobio console requirements inb4 reee * snowflake commenting
55 lines
1.5 KiB
Plaintext
55 lines
1.5 KiB
Plaintext
/obj/item/organ/genital/testicles
|
|
name = "testicles"
|
|
desc = "A male reproductive organ."
|
|
icon_state = "testicles"
|
|
icon = 'modular_citadel/icons/obj/genitals/penis.dmi'
|
|
zone = "groin"
|
|
slot = "testicles"
|
|
w_class = 3
|
|
internal = TRUE
|
|
size = BALLS_SIZE_DEF
|
|
var/sack_size = BALLS_SACK_SIZE_DEF
|
|
fluid_id = "semen"
|
|
producing = TRUE
|
|
var/sent_full_message = 1 //defaults to 1 since they're full to start
|
|
|
|
/obj/item/organ/genital/testicles/Initialize()
|
|
. = ..()
|
|
reagents.add_reagent(fluid_id, fluid_max_volume)
|
|
|
|
/obj/item/organ/genital/testicles/on_life()
|
|
if(QDELETED(src))
|
|
return
|
|
if(reagents && producing)
|
|
generate_cum()
|
|
|
|
/obj/item/organ/genital/testicles/proc/generate_cum()
|
|
reagents.maximum_volume = fluid_max_volume
|
|
if(reagents.total_volume >= reagents.maximum_volume)
|
|
if(!sent_full_message)
|
|
send_full_message()
|
|
sent_full_message = 1
|
|
return FALSE
|
|
sent_full_message = 0
|
|
update_link()
|
|
if(!linked_organ)
|
|
return FALSE
|
|
reagents.isolate_reagent(fluid_id)//remove old reagents if it changed and just clean up generally
|
|
reagents.add_reagent(fluid_id, (fluid_mult * fluid_rate))//generate the cum
|
|
|
|
/obj/item/organ/genital/testicles/update_link()
|
|
if(owner && !QDELETED(src))
|
|
linked_organ = (owner.getorganslot("penis"))
|
|
if(linked_organ)
|
|
linked_organ.linked_organ = src
|
|
else
|
|
if(linked_organ)
|
|
linked_organ.linked_organ = null
|
|
linked_organ = null
|
|
|
|
/obj/item/organ/genital/testicles/proc/send_full_message(msg = "Your balls finally feel full, again.")
|
|
if(owner && istext(msg))
|
|
owner << msg
|
|
return TRUE
|
|
|