set g_vore_regurgitatecolor_fade 0.01 "how quickly the regurgitation color washes off players once they leave the stomach, does not apply to dead bodies"\r
set g_vore_regurgitatecolor_particles 0.75 "players who are dirty from regurgitation generate particles this often, based on the amount of goo they have on them"\r
set g_vore_neighborprey_distance 8 "Distance by which prey inside the same stomach are positioned away from each other. 0 disables seeing neighboring prey"\r
-set g_vore_neighborprey_scale 1 "When neighborprey is enabled, all prey is resized by this amount"\r
set g_vore_swallowmodel_range 100 "Distance by which the swallow model oscillates based on swallow progress"\r
\r
set g_healthsize 100 "Players who are low on health shrink and become smaller, value specifies health at which the player has default size"\r
self.scale *= 1 - bound(0, self.health / cvar("g_balance_vore_digestion_limit"), 1);\r
}\r
\r
- if(cvar("g_vore_neighborprey_distance") && self.stat_eaten)\r
- {\r
- // resize prey if neighborprey is enabled\r
- self.scale *= cvar("g_vore_neighborprey_scale");\r
- }\r
-\r
if(self.scale < 0.1)\r
self.scale = 0.1; // stuff breaks if scale is smaller than this\r
}\r