mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-30 08:37:43 +01:00
BIN
Binary file not shown.
|
Before Width: | Height: | Size: 4.7 KiB After Width: | Height: | Size: 5.2 KiB |
+5
-1
@@ -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."
|
||||
|
||||
Reference in New Issue
Block a user