You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I measured food values for wyverns and gigas at a range of maturations and consumption speeds. I set the baby age speed to 0 so I could hold a dino at the same age indefinitely.
Giga
basefoodrate: 0.002314,
babyfoodrate: 45,
extrababyfoodrate: 20
max = 2.0826
if min = baseminrate * baby * extrababy * consumption
min = range(2.0826, 0.1395, 0.9) => 0.33381
if min = basefoodrate * consumption (this one better fits the observation below
min = range(2.0826, 0.002314, 0.9) => 0.2103426
Observed rates
Consumption
Age
Start
End
Diff
Elapsed
Rate
1
Adult
6549.7
6546.5
3.2
462.532
0.006918435
1
90%
5955.0
5876.0
79.0
375.119
0.210599517
1
0%
630.0
0.0
630.0
302.888
2.079972026
10
Adult
4856.0
4835.0
21.0
302.643
0.069388490
10
99.999%
3991.8
3983.1
8.7
372.637
0.023347084
10
90%
4250.0
3650.0
600.0
284.814
2.106631239
10
0%
500.0
0.0
500.0
23.949
20.877174006
We see a 3x increase in food consumption when a 99.999% Giga becomes an adult because of an additional adult food rate multiplier in giga's dcsc.
The text was updated successfully, but these errors were encountered:
ARK-Breeding-Calculator/controller.js
Lines 2066 to 2069 in 4fe4854
maxfoodrate's correct, but minfoodrate should be:
I measured food values for wyverns and gigas at a range of maturations and consumption speeds. I set the baby age speed to 0 so I could hold a dino at the same age indefinitely.
Giga
if
min = baseminrate * baby * extrababy * consumption
if
min = basefoodrate * consumption
(this one better fits the observation belowObserved rates
We see a 3x increase in food consumption when a 99.999% Giga becomes an adult because of an additional adult food rate multiplier in giga's dcsc.
The text was updated successfully, but these errors were encountered: