small fixes and tweaks

- fixed double doors on demone
- fixed some tiles being spaced on xenoarch
- remade the gluttony ruin
- removed the WG culture bottle
- removed some belly sprite placeholders
- added fatorays and fatnades to the uplink
- updated fat thresholds in pref menu
- changed calorite statue descriptions slightly
This commit is contained in:
Sonoida
2023-03-31 16:31:25 +02:00
parent 9482058c73
commit 0141d01898
8 changed files with 511 additions and 276 deletions
+1 -1
View File
@@ -2520,7 +2520,7 @@ GLOBAL_LIST_EMPTY(preferences_datums)
//GS13 fatness
if("fatness")
var/new_fatness = input(user, "Choose your amount of fat at start :\n(0-4000), Fat changes appearance and move speed. \nThresholds are 200, 440, 1240, 1840 and 3400. Warning : If using the 'weak legs' trait, being too fat will make you immobile and unable to leave the shuttle without a wheelchair or help", "Character Preference") as num|null
var/new_fatness = input(user, "Choose your amount of fat at start :\n(0-4000), Fat changes appearance and move speed. \nThresholds are 170, 250, 330, 440, 840, 1240, 1840, 2540, 3440. Warning : If using the 'weak legs' trait, being too fat will make you immobile and unable to leave the shuttle without a wheelchair or help", "Character Preference") as num|null
if (new_fatness)
starting_weight = max(min( round(text2num(new_fatness)), 4000),0)