mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2025-12-10 01:49:19 +00:00
* Butts * testicle fix + hidden is back * updated booba * prob bad idea actually thinking about icon states * fuck * this should be everything now * SandPoot's suggestion Co-authored-by: SandPoot <43283559+SandPoot@users.noreply.github.com> * tguify that last option * Revert "tguify that last option" This reverts commit f9d7a075e997e3d9c0a4f641db43343796cecb98. * Revert "Merge branch 'master' into cursingcitadel" This reverts commit 2998b1908a74b381857056f5ce6b34894d950c06, reversing changes made to 6fc65a28fa4f6012c70675b4cbc0299d7740912a. * Revert "Revert "Merge branch 'master' into cursingcitadel"" This reverts commit c4a2ad1a630b6376801df3e1cec88aad3d2935ea. Co-authored-by: SandPoot <43283559+SandPoot@users.noreply.github.com> Co-authored-by: Putnam3145 <putnam3145@gmail.com>
138 lines
3.5 KiB
Plaintext
138 lines
3.5 KiB
Plaintext
/datum/sprite_accessory
|
|
var/alt_aroused = FALSE //CIT CODE if this is TRUE, then the genitals will use an alternate icon_state when aroused.
|
|
var/taur_icon //leave null if the genital doesn't have a taur counterpart.
|
|
var/accepted_taurs = STYLE_HOOF_TAURIC|STYLE_PAW_TAURIC //Types that match with the accessory.
|
|
var/feat_taur //the text string of the dna feature to check for those who want to opt out.
|
|
var/taur_dimension_y = 32
|
|
var/taur_dimension_x = 32
|
|
|
|
|
|
//DICKS,COCKS,PENISES,WHATEVER YOU WANT TO CALL THEM
|
|
/datum/sprite_accessory/penis
|
|
icon = 'icons/obj/genitals/penis_onmob.dmi'
|
|
name = "penis" //the preview name of the accessory
|
|
color_src = "cock_color"
|
|
alt_aroused = TRUE
|
|
feat_taur = "cock_taur"
|
|
|
|
/datum/sprite_accessory/penis/human
|
|
icon_state = "human"
|
|
name = "Human"
|
|
|
|
/datum/sprite_accessory/penis/knotted
|
|
icon_state = "knotted"
|
|
name = "Knotted"
|
|
taur_icon = 'icons/obj/genitals/taur_penis_onmob.dmi'
|
|
taur_dimension_x = 64
|
|
|
|
/datum/sprite_accessory/penis/flared
|
|
icon_state = "flared"
|
|
name = "Flared"
|
|
taur_icon = 'icons/obj/genitals/taur_penis_onmob.dmi'
|
|
taur_dimension_x = 64
|
|
|
|
/datum/sprite_accessory/penis/barbknot
|
|
icon_state = "barbknot"
|
|
name = "Barbed, Knotted"
|
|
|
|
/datum/sprite_accessory/penis/tapered
|
|
icon_state = "tapered"
|
|
name = "Tapered"
|
|
taur_icon = 'icons/obj/genitals/taur_penis_onmob.dmi'
|
|
taur_dimension_x = 64
|
|
|
|
/datum/sprite_accessory/penis/tentacle
|
|
icon_state = "tentacle"
|
|
name = "Tentacled"
|
|
|
|
/datum/sprite_accessory/penis/hemi
|
|
icon_state = "hemi"
|
|
name = "Hemi"
|
|
|
|
/datum/sprite_accessory/penis/hemiknot
|
|
icon_state = "hemiknot"
|
|
name = "Knotted Hemi"
|
|
|
|
//Testicles
|
|
/datum/sprite_accessory/testicles
|
|
icon = 'icons/obj/genitals/testicles_onmob.dmi'
|
|
icon_state = "testicle"
|
|
name = "testicle" //the preview name of the accessory
|
|
color_src = "balls_color"
|
|
|
|
/datum/sprite_accessory/testicles/single
|
|
icon_state = "single"
|
|
name = "Single" //Single as "single pair", for clarity.
|
|
|
|
/datum/sprite_accessory/testicles/hidden
|
|
icon_state = "hidden"
|
|
name = "Hidden" //not sure why these were missing, but I'm pretty certain people might want these.
|
|
|
|
//Vaginas
|
|
/datum/sprite_accessory/vagina
|
|
icon = 'icons/obj/genitals/vagina_onmob.dmi'
|
|
name = "vagina"
|
|
color_src = "vag_color"
|
|
alt_aroused = TRUE
|
|
|
|
/datum/sprite_accessory/vagina/human
|
|
icon_state = "human"
|
|
name = "Human"
|
|
|
|
/datum/sprite_accessory/vagina/tentacles
|
|
icon_state = "tentacle"
|
|
name = "Tentacle"
|
|
|
|
/datum/sprite_accessory/vagina/dentata
|
|
icon_state = "dentata"
|
|
name = "Dentata"
|
|
|
|
/datum/sprite_accessory/vagina/hairy
|
|
icon_state = "hairy"
|
|
name = "Hairy"
|
|
alt_aroused = FALSE
|
|
|
|
/datum/sprite_accessory/vagina/spade
|
|
icon_state = "spade"
|
|
name = "Spade"
|
|
alt_aroused = FALSE
|
|
|
|
/datum/sprite_accessory/vagina/furred
|
|
icon_state = "furred"
|
|
name = "Furred"
|
|
alt_aroused = FALSE
|
|
|
|
/datum/sprite_accessory/vagina/gaping
|
|
icon_state = "gaping"
|
|
name = "Gaping"
|
|
|
|
//BREASTS BE HERE
|
|
/datum/sprite_accessory/breasts
|
|
icon = 'icons/obj/genitals/breasts_onmob.dmi'
|
|
name = "breasts"
|
|
color_src = "breasts_color"
|
|
|
|
/datum/sprite_accessory/breasts/pair
|
|
icon_state = "pair"
|
|
name = "Pair"
|
|
|
|
/datum/sprite_accessory/breasts/quad
|
|
icon_state = "quad"
|
|
name = "Quad"
|
|
|
|
/datum/sprite_accessory/breasts/sextuple
|
|
icon_state = "sextuple"
|
|
name = "Sextuple"
|
|
|
|
//BUTT BE HERE
|
|
/datum/sprite_accessory/butt
|
|
icon = 'icons/obj/genitals/butt_onmob.dmi'
|
|
icon_state = "butt"
|
|
name = "butt"
|
|
color_src = "butt_color"
|
|
|
|
//there literally shouldn't be any other ass types besides one because that'd be weird, this is just here to keep things consistent for the genital system.
|
|
/datum/sprite_accessory/butt/pair
|
|
icon_state = "pair"
|
|
name = "Pair"
|