mirror of
https://github.com/KabKebab/GS13.git
synced 2026-07-15 01:46:41 +01:00
Descriptions for ass sizes.
Makes it so examining someone reflects the size of the ass they have. Also fixes the shape of bellies from "Pair" to "round", though this is not currently used anywhere.
This commit is contained in:
@@ -1,29 +1,44 @@
|
||||
/obj/item/organ/genital/anus
|
||||
name = "anus"
|
||||
desc = "You see a butt."
|
||||
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(size)
|
||||
if(1)
|
||||
size_name = "average"
|
||||
if(2)
|
||||
size_name = "sizable"
|
||||
if(3)
|
||||
size_name = "hefty"
|
||||
if(4)
|
||||
size_name = "godly"
|
||||
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)]"
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
w_class = 3
|
||||
size = 0
|
||||
var/statuscheck = FALSE
|
||||
shape = "Pair"
|
||||
shape = "round"
|
||||
masturbation_verb = "massage"
|
||||
can_climax = FALSE
|
||||
var/sent_full_message = TRUE //defaults to 1 since they're full to start
|
||||
|
||||
Reference in New Issue
Block a user