mirror of
https://github.com/quotefox/Hyper-Station-13.git
synced 2026-08-23 12:46:17 +01:00
60 lines
1.2 KiB
Plaintext
60 lines
1.2 KiB
Plaintext
/obj/item/organ/genital/anus
|
|
name = "anus"
|
|
desc = "You see a pair of asscheeks."
|
|
icon_state = "butt"
|
|
icon = 'modular_citadel/icons/obj/genitals/breasts.dmi'
|
|
zone = "anus"
|
|
slot = "anus"
|
|
w_class = 3
|
|
size = 0
|
|
var/size_name = "nonexistant"
|
|
var/statuscheck = FALSE
|
|
shape = "Pair"
|
|
can_masturbate_with = FALSE
|
|
masturbation_verb = "massage"
|
|
can_climax = FALSE
|
|
|
|
/obj/item/organ/genital/anus/on_life()
|
|
if(QDELETED(src))
|
|
return
|
|
if(!owner)
|
|
return
|
|
|
|
/obj/item/organ/genital/anus/update_appearance()
|
|
var/string
|
|
var/lowershape = lowertext(shape)
|
|
|
|
//Reflect the size of dat ass on examine.
|
|
switch(round(size))
|
|
if(1)
|
|
size_name = "average"
|
|
if(2)
|
|
size_name = "sizable"
|
|
if(3)
|
|
size_name = "squeezable"
|
|
if(4)
|
|
size_name = "hefty"
|
|
if(5)
|
|
size_name = "godly"
|
|
if(6)
|
|
size_name = "gigantic"
|
|
if(7)
|
|
size_name = "unfathomably large"
|
|
if(8)
|
|
size_name = "absolute dumptruck"
|
|
else
|
|
size_name = "nonexistant"
|
|
|
|
desc = "You see a [lowershape] of [size_name] asscheeks."
|
|
|
|
if(owner)
|
|
var/mob/living/carbon/human/H = owner
|
|
color = "#[skintone2hex(H.skin_tone)]"
|
|
|
|
if(ishuman(owner))
|
|
icon_state = sanitize_text(string)
|
|
H.update_genitals()
|
|
|
|
icon_state = sanitize_text(string)
|
|
|