fullness icons fixed + value changes. (immobility was a bad idea)

This commit is contained in:
KabKebab
2021-10-24 14:53:07 +02:00
parent 64f46e7f1a
commit 115d9adcfc
4 changed files with 13 additions and 13 deletions
@@ -1535,11 +1535,11 @@ GLOBAL_LIST_EMPTY(roundstart_races)
if(HAS_TRAIT(H, TRAIT_FAT))
. += (1 - flight)
if(HAS_TRAIT(H, TRAIT_OBESE))//GS13 fat levels move speed decrease
. += (2 - flight)
. += (1.5 - flight)
if(HAS_TRAIT(H, TRAIT_MORBIDLYOBESE))
. += (3 - flight)
. += (2 - flight)
if(HAS_TRAIT(H, TRAIT_IMMOBILE))
. += 4 // No wings are going to lift that much off the ground
. += 3 // No wings are going to lift that much off the ground
if(H.bodytemperature < BODYTEMP_COLD_DAMAGE_LIMIT && !HAS_TRAIT(H, TRAIT_RESISTCOLD))
. += (BODYTEMP_COLD_DAMAGE_LIMIT - H.bodytemperature) / COLD_SLOWDOWN_FACTOR
return .
+2 -2
View File
@@ -85,8 +85,8 @@
if(!mob.Process_Spacemove(direct))
return FALSE
if(HAS_TRAIT(mob,TRAIT_BLOB)) // GS13 are we too fat to move?
return FALSE
//if(HAS_TRAIT(mob,TRAIT_BLOB)) // GS13 are we too fat to move? (it was a bad idea)
// return FALSE
//We are now going to move
var/add_delay = mob.movement_delay()
mob.set_glide_size(DELAY_TO_GLIDE_SIZE(add_delay * (((direct & 3) && (direct & 12)) ? 2 : 1))) // set it now in case of pulled objects