mirror of
https://github.com/KabKebab/GS13.git
synced 2026-08-24 05:26:37 +01:00
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:
@@ -12,7 +12,7 @@
|
||||
if(!istype(L))
|
||||
return ..()
|
||||
|
||||
if(L.fatness > 5000)
|
||||
if(L.fatness > 5000 && L.client?.prefs?.stuckage)
|
||||
if(rand(1, 3) == 1)
|
||||
L.doorstuck = 1
|
||||
L.visible_message("<span class'danger'>[L] gets stuck in the doorway!</span>")
|
||||
@@ -22,7 +22,7 @@
|
||||
L.Knockdown(1)
|
||||
return ..()
|
||||
|
||||
else if(L.fatness > 3000)
|
||||
else if(L.fatness > 3000 && L.client?.prefs?.stuckage)
|
||||
if(rand(1, 5) == 1)
|
||||
L.doorstuck = 1
|
||||
L.visible_message("<span class'danger'>[L] gets stuck in the doorway!</span>")
|
||||
@@ -35,7 +35,7 @@
|
||||
to_chat(L, "<span class='danger'>With great effort, you manage to squeeze your massive form through \the [src]. It's a tight fit, but you successfully navigate the narrow opening, barely avoiding getting stuck.</span>")
|
||||
return ..()
|
||||
|
||||
else if(L.fatness > 1890)
|
||||
else if(L.fatness > 1890 && L.client?.prefs?.stuckage)
|
||||
if(rand(1, 5) == 1)
|
||||
L.visible_message("<span class'danger'>[L]'s hips brush against the doorway...</span>")
|
||||
to_chat(L, "<span class='danger'>As you pass through \the [src], you feel a slight brushing against your hips. The [src] frame accommodates your form, but it's a close fit..</span>")
|
||||
|
||||
Reference in New Issue
Block a user