Mobility exoskeleton & modules, max fat genital sizes

Added the mobility exoskeleton, weak MODsuit that comes with mobility-related modules.
Added mobility-related modules
Added preference for max genital sizes due to fat increase
This commit is contained in:
Alphas00
2024-12-22 13:05:34 +01:00
parent f2ab8dc9a5
commit 7597de2ab8
16 changed files with 316 additions and 11 deletions
+2
View File
@@ -9,6 +9,7 @@
zone = BODY_ZONE_CHEST
slot = ORGAN_SLOT_BREASTS
size = BREASTS_SIZE_DEF // "c". Refer to the breast_values static list below for the cups associated number values
var/max_size = 0 //GS13 Edit
fluid_id = /datum/reagent/consumable/milk
fluid_rate = MILK_RATE
producing = TRUE
@@ -115,6 +116,7 @@
else
color = "#[D.features["breasts_color"]]"
size = D.features["breasts_size"]
max_size = D.features["max_breasts_size"]
starting_size = D.features["breasts_size"]
shape = D.features["breasts_shape"]
if(!D.features["breasts_producing"])
+2
View File
@@ -7,6 +7,7 @@
slot = ORGAN_SLOT_BUTT
w_class = 3
size = 0
var/max_size = 0 //GS13 Edit
var/size_name = "nonexistent"
shape = "Pair" //turn this into a default constant if for some inexplicable reason we get more than one butt type but I doubt it.
genital_flags = UPDATE_OWNER_APPEARANCE|GENITAL_UNDIES_HIDDEN
@@ -84,6 +85,7 @@
else
color = "#[D.features["butt_color"]]"
size = D.features["butt_size"]
max_size = D.features["max_butt_size"]
starting_size = D.features["butt_size"] // GS13 EDIT
prev_size = size
toggle_visibility(D.features["butt_visibility"], FALSE)