mirror of
https://github.com/KabKebab/GS13.git
synced 2026-07-12 00:20:55 +01:00
Hyper butts
players can now have larger asses.
This commit is contained in:
@@ -134,6 +134,7 @@ GLOBAL_LIST_EMPTY(preferences_datums)
|
||||
"cock_shape" = "Human",
|
||||
"cock_length" = 6,
|
||||
"belly_size" = 1,
|
||||
"butt_size" = 1,
|
||||
"cock_girth_ratio" = COCK_GIRTH_RATIO_DEF,
|
||||
"cock_color" = "fff",
|
||||
"has_sheath" = FALSE,
|
||||
@@ -923,8 +924,10 @@ GLOBAL_LIST_EMPTY(preferences_datums)
|
||||
dat += "</td>"
|
||||
|
||||
dat += APPEARANCE_CATEGORY_COLUMN
|
||||
dat += "<h3>Anus</h3>"
|
||||
dat += "<h3>Butt</h3>"
|
||||
dat += "<a style='display:block;width:50px' href='?_src_=prefs;preference=has_anus'>[features["has_anus"] == TRUE ? "Yes" : "No"]</a>"
|
||||
if(features["has_anus"])
|
||||
dat += "<b>Butt Size:</b> <a style='display:block;width:120px' href='?_src_=prefs;preference=butt_size;task=input'>[features["butt_size"]]</a>"
|
||||
dat += "</td>"
|
||||
|
||||
dat += "</td>"
|
||||
@@ -2347,6 +2350,10 @@ GLOBAL_LIST_EMPTY(preferences_datums)
|
||||
if(new_bellysize)
|
||||
features["belly_size"] = clamp(new_bellysize, 1, 3)
|
||||
|
||||
if("butt_size")
|
||||
var/new_buttsize = input(user, "Butt size :\n(0-4)", "Character Preference") as num|null
|
||||
features["butt_size"] = clamp(new_buttsize, 0, 4)
|
||||
|
||||
if("vag_shape")
|
||||
var/new_shape
|
||||
new_shape = input(user, "Vagina Type", "Character Preference") as null|anything in GLOB.vagina_shapes_list
|
||||
@@ -2511,6 +2518,8 @@ GLOBAL_LIST_EMPTY(preferences_datums)
|
||||
features["can_get_preg"] = FALSE
|
||||
if("has_anus")
|
||||
features["has_anus"] = !features["has_anus"]
|
||||
if(features["has_anus"] == FALSE)
|
||||
features["butt_size"] = 0
|
||||
if("has_womb")
|
||||
features["has_womb"] = !features["has_womb"]
|
||||
if("can_get_preg")
|
||||
|
||||
@@ -402,6 +402,8 @@ SAVEFILE UPDATING/VERSIONING - 'Simplified', or rather, more coder-friendly ~Car
|
||||
S["feature_has_sheath"] >> features["sheath_color"]
|
||||
//belly size
|
||||
S["feature_belly_size"] >> features["belly_size"]
|
||||
//belly size
|
||||
S["feature_butt_size"] >> features["butt_size"]
|
||||
//balls features
|
||||
S["feature_has_balls"] >> features["has_balls"]
|
||||
S["feature_balls_color"] >> features["balls_color"]
|
||||
|
||||
Reference in New Issue
Block a user