Adds a nondescript dick option. (#4644)

* yep

* yes

* again
This commit is contained in:
Seris02
2021-04-15 19:02:56 +01:00
committed by GitHub
parent c03d2025b0
commit 771bbe917c
3 changed files with 8 additions and 4 deletions
Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.7 KiB

After

Width:  |  Height:  |  Size: 5.2 KiB

@@ -1,6 +1,6 @@
/datum/sprite_accessory/genital
special_render_case = TRUE
var/associated_organ_slot
var/associated_organ_slot
var/uses_skintones
/datum/sprite_accessory/genital/is_hidden(mob/living/carbon/human/H, obj/item/bodypart/HD)
@@ -74,6 +74,10 @@
uses_skintones = TRUE
can_have_sheath = FALSE
/datum/sprite_accessory/genital/penis/nondescript
icon_state = "nondescript"
name = "Nondescript"
/datum/sprite_accessory/genital/penis/knotted
icon_state = "knotted"
name = "Knotted"
@@ -65,7 +65,7 @@
/obj/item/organ/genital/penis/get_description_string(datum/sprite_accessory/genital/gas)
var/returned_string = ""
var/pname = lowertext(genital_name)
var/pname = lowertext(genital_name) == "nondescript" ? "" : lowertext(genital_name) + " "
if(sheath != SHEATH_NONE && aroused != AROUSAL_FULL) //Hidden in sheath
switch(sheath)
if(SHEATH_NORMAL)
@@ -73,9 +73,9 @@
if(SHEATH_SLIT)
returned_string = "You see genital slit."
if(aroused == AROUSAL_PARTIAL)
returned_string += " There's a [pname] penis poking out of it."
returned_string += " There's a [pname]penis poking out of it."
else
returned_string = "You see a [pname] penis. You estimate it's [genital_size] inches long, and [girth] inches in circumference."
returned_string = "You see a [pname]penis. You estimate it's [genital_size] inches long, and [girth] inches in circumference."
switch(aroused)
if(AROUSAL_NONE)
returned_string += " It seems flaccid."