• Search is back up, but the index is being rebuilt, there may still be some minor problems until this is complete.
3.20 star(s) 5 Votes

aditetac

New Member
Aug 6, 2022
2
5
Escape varies based on pred, type of vore, escape type, relationship, is partly random per attempt, your strength, your athletics skill, and the preds tight belly stat.

Try to get into the duodenum (other checks are similar)
The digested_pyloric_sphincter_exit_push check has the formula $strength_check = ((player_strength * 0.1 * athletics_skillrank * 0.2) - (14 / pred_base_belly_strength)) * currenthealth * 0.01 * digestion_multiplier

The digestion_multiplier is based on the speed you chose at start.
"5 hours":
$digestion_multiplier = 10.6
"10 hours":
$digestion_multiplier = 5.3
"21 hours":
$digestion_multiplier = 2.52
"32 hours":
$digestion_multiplier = 1.66
"42 hours":
$digestion_multiplier = 1.26
"53 hours (default)":
$digestion_multiplier = 1
"79 hours":
$digestion_multiplier = 0.67
"Custom":
digestion_multiplier = renpy.input("How many hours should digestion take on average?", allow="0123456789")
$digestion_multiplier = float(digestion_multiplier)
$digestion_multiplier = 53 / digestion_multiplier

The pred_base_belly_strength are (cant squeeze through tight belly, but get a kick bonus instead; big belly has food):
Elaine=8 T, Jasmine=35 B, Beatrice=12, Bessie=30 B, Catalina=24, Sigrid=14

It is then compared to a random chance based on the escape difficulty you chose at start.
if difficulty_setup == "Easy":
$chance = renpy.random.randint(1,12)
elif difficulty_setup == "Challenging":
$chance = renpy.random.randint(3,16)
else:
$chance = renpy.random.randint(5,30)

Each try uses 15 air, and you have (100 + (2.5 * fitness_skillrank)) max air.
Each try uses 25 stamina, and you have (50 + (2.5 * fitness_skillrank)) max stamina.

You must succeed 5 points, and get 1 + strength_check - chance each try.
 

WattsFU

Member
Mar 26, 2023
223
368
Escape varies based on pred, type of vore, escape type, relationship, is partly random per attempt, your strength, your athletics skill, and the preds tight belly stat.

Try to get into the duodenum (other checks are similar)
The digested_pyloric_sphincter_exit_push check has the formula $strength_check = ((player_strength * 0.1 * athletics_skillrank * 0.2) - (14 / pred_base_belly_strength)) * currenthealth * 0.01 * digestion_multiplier

The digestion_multiplier is based on the speed you chose at start.
"5 hours":
$digestion_multiplier = 10.6
"10 hours":
$digestion_multiplier = 5.3
"21 hours":
$digestion_multiplier = 2.52
"32 hours":
$digestion_multiplier = 1.66
"42 hours":
$digestion_multiplier = 1.26
"53 hours (default)":
$digestion_multiplier = 1
"79 hours":
$digestion_multiplier = 0.67
"Custom":
digestion_multiplier = renpy.input("How many hours should digestion take on average?", allow="0123456789")
$digestion_multiplier = float(digestion_multiplier)
$digestion_multiplier = 53 / digestion_multiplier

The pred_base_belly_strength are (cant squeeze through tight belly, but get a kick bonus instead; big belly has food):
Elaine=8 T, Jasmine=35 B, Beatrice=12, Bessie=30 B, Catalina=24, Sigrid=14

It is then compared to a random chance based on the escape difficulty you chose at start.
if difficulty_setup == "Easy":
$chance = renpy.random.randint(1,12)
elif difficulty_setup == "Challenging":
$chance = renpy.random.randint(3,16)
else:
$chance = renpy.random.randint(5,30)

Each try uses 15 air, and you have (100 + (2.5 * fitness_skillrank)) max air.
Each try uses 25 stamina, and you have (50 + (2.5 * fitness_skillrank)) max stamina.

You must succeed 5 points, and get 1 + strength_check - chance each try.
OK.gif
 

Puff6011

Member
Dec 10, 2018
125
96
how do you increase their relationship.
Best way to increase relationship is to be clean, order them a drink and small talk (make sure to stop drinking when you are about 45% drunk as you can pass out). You should be able to get them to a high enough relationship level in a couple days or at most 7 minutes of real life time
 

RenaDyne

Newbie
Jul 14, 2017
17
11
Are there futa characters and cock/vaginal unbirth planned or just traditional vore?
No futa characters at this time, unsure if planned (probably not). Unbirth is there, but so far only the Giraffe and Hippo seem to have it (Have not tested with the frog, shark, deer, and cow don't seem to have any), anal vore is also there but only seems optional from the hippo, or from a shower scene with the giraffe.
 

Tuatha Dé

Active Member
Oct 20, 2021
511
260
I have no idea what this kind of game is really about but let's give it a try, it can't hurt, right?
 

Puff6011

Member
Dec 10, 2018
125
96
So is there a schedule map for all character somewhere? I keep looking for characters but I have no idea where to go.
 

Puff6011

Member
Dec 10, 2018
125
96
Are there any post-vore scenes planned?
From what I understand the framework is done, and anything else that will happen will either be a missable/timed event.
If someone manages to make a mod for it, then maybe, but the dev doen't seem like they will.
 
3.20 star(s) 5 Votes