Fatten belly Tweak & Stuckage Pref

Tweaked fatten mode vore belly, transfer amount to 2%, needs some fatness to work, won't make predator starve, just keep them hungry
Added stuckage pref, it and XWG are now under "GS13 Gameplay Preferences"
This commit is contained in:
Alphas00
2024-05-26 13:42:15 +02:00
parent 5e42b2c42e
commit 67b9d0e275
5 changed files with 17 additions and 6 deletions
@@ -70,9 +70,11 @@
for(var/mob/living/M in contents)
var/mob/living/carbon/prey = M
if(iscarbon(prey) && predator.fatness_real)
prey.adjust_fatness(predator.fatness_real * 0.01, FATTENING_TYPE_FOOD)
predator.adjust_fatness(-predator.fatness_real * 0.01, FATTENING_TYPE_FOOD)
predator.nutrition -= 5
if(predator.fatness_real > 50)
prey.adjust_fatness(predator.fatness_real * 0.02, FATTENING_TYPE_FOOD)
predator.adjust_fatness(-predator.fatness_real * 0.02, FATTENING_TYPE_FOOD)
if(predator.nutrition > NUTRITION_LEVEL_HUNGRY)
predator.nutrition -= 3
preys_fatness += prey.fatness
if(!predator.fat_hider || predator.fat_hider == src)