Creature stats calculation (2024)

This page explains how the value of the stats of creatures is calculated.

Contents

  • 1 Variables involved
  • 2 Stat formula
    • 2.1 Explanation of the parts
  • 3 Note on bonuses
  • 4 Examples

Variables involved[]

Each species has 6 variables for each stat that affect the final stat-value:

  • Base-value: B
  • increase per wild-level as% of B: Iw
  • increase per domesticated level as% of Vpt (value post-tamed): Id
  • additive taming-bonus: Ta
  • multiplicative taming-bonus: Tm
  • taming effectiveness: TE (when tamed)
  • imprinting bonus: IB (when bred)

In 256.0 a new multiplier, the TamedBaseHealthMultiplier (TBHM) was introduced, that lowers the health of a few dinos right after taming, before the tamingAdd is applied.

The Tm and TmM (see below) are only affected by the TE if Tm > 0, i.e. a malus won't get less bad if the TE is lower. The Tm is negative for aberrant-variants (-0.04).

The imprinting bonus IB only affects bred creatures, and all stat-values except of stamina and oxygen (it does affect the torpor-value).


The game has further global variables for each stat, which affect the variables above:

  • increase per wild level modifier: IwM
  • increase per domesticated level modifier: IdM
  • additive taming-bonus modifier: TaM
  • multiplicative taming-bonus modifier: TmM

Currently these modifiers for health are:

  • TaM = 0.14
  • TmM = 0.44
  • IdM = 0.2

The modifiers for melee damage are:

  • TaM = 0.14
  • TmM = 0.44
  • IdM = 0.17
  • IwM is always 1 for official servers

Three of the four modifiers can be found in the TestGameMode.uasset file located in Game/PrimalEarth/CoreBlueprints/

  • TaM as property PerLevelStatsMultiplier_DinoTamed_Add
  • TmM as property PerLevelStatsMultiplier_DinoTamed_Affinity
  • IdM as property PerLevelStatsMultiplier_DinoTamed


The imprinting bonus is scaled by the global variable:

  • BabyImprintingStatScaleMultiplier: IBM (default: 1)

Stat formula[]

Assume that a creature has upleveled a certain stat in the wild Lw times, was upleveled a stat by a player Ld times and was tamed with a taming effectiveness of TE. Then the final value V of that stat (as you see it ingame) is:

V = (B × (1 + Lw × Iw × IwM) × TBHM × (1 + IB × 0.2 × IBM) + Ta × TaM) × (1 + TE × Tm × TmM) × (1 + Ld × Id × IdM)

Explanation of the parts[]

The value you can see before taming Vw (Value wild) is the first part of that equation without the additive taming-bonus:

Vw = B × (1 + Lw × Iw × IwM)


After taming, dependant on the taming effectiveness (TE), the creature gets bonus levels, changing the value of Lw (the levels when wild). After these are applied, the additive taming bonus is added, then the multiplicative taming-bonus is applied, making the value post-tamed (Vpt):

Vpt = (Vw × TBHM + Ta × TaM) × (1 + TE × Tm × TmM)


For bred creatures there is the possibility to add an imprinting-bonus by caring for the creature during its maturation. The stat-values can then be increased according to:

Vpt = (Vw × TBHM × (1 + IB × 0.2 × IBM) + Ta × TaM) × (1 + TE × Tm × TmM)


Then, every time you level the creature up increases that stat again, making the final value (V, which you can see on the creature):

V = Vpt × (1 + Ld × Id × IdM)

To find out how many levels a creature has spend in wild levels (or in domesticated levels, if you forgot this), you can use this tool to extract them and see what values their offspring can inherit. The tool also has a file that contains all the values discussed above for most of the creatures (the newest may be missing).

Note on bonuses[]

Ta and Tm are 0 in most cases. For health Ta is mostly 0.5 (exceptions are for example the Giganotosaurus with -63000 and the Griffin with -1000), for Damage in most cases Ta = 0.5 and Tm = 0.4 (that gives the creature a +50pp (percentage point) bonus, and after this the value is multiplied by (1 + 0.4 * TmM * TE), so it get's another 40% * 0.45 = 18% of the current value, dependent on the taming effectiveness).

The TBHM (Tamed Base Health Multiplier) is 1 for most species, i.e. doesn't change anything. Exceptions are for example the Brontosaurus, Doedicurus, Carbonemys, Pteranodon which each have a value of 0.9, and the Quetzal having 0.85. Most of the species from Aberration seem to have a multiplier of 0.96, so tamed dinos have slightly less health than wild ones.

Examples[]

A Rex has the following values for health:

  • B = 1000
  • Iw = 20% = 0.2
  • Id = 27% = 0.27
  • Ta = 0.5
  • Tm = 0

Assuming the Rex has 5 levels on health in the wild (Lw = 5), was leveled up 12 times after taming in health (Ld = 12) and was tamed with a taming effectiveness of 82% (TE = 0.82), the value you can see now is:

V = (B * (1 + Lw * Iw * IwM) + Ta * TaM) * (1 + TE * Tm * TmM) * (1 + Ld * Id * IdM)V = (1000 * ( 1 + 5 * 0.2 * 1) + 0.5 * 0.14) * (1 + 0.82 * 0 * 0.44) * (1 + 12 * 0.27 * 0.2)V = 3296.1


Another example with the melee damage of a Rex:

  • B = 100%
  • Iw = 5% = 0.05
  • Id = 10% = 0.1
  • Ta = 0.5
  • Tm = 0.4

Assuming the Rex has 5 levels on melee damage in the wild (Lw = 5), was leveled up 12 times after taming in melee damage (Ld = 12) and was tamed with a taming effectiveness of 82% (TE = 0.82), the value you can see now is:

V = (B * (1 + Lw * Iw * IwM) + Ta * TaM) * (1 + TE * Tm * TmM) * (1 + Ld * Id * IdM)V = (100% * (1 + 5 * 0.05 * 1) + 0.5 * 0.14) * (1 + 0.82 * 0.4 * 0.44) * (1 + 12 * 0.1 * 0.17)V = 181.9%
v · d · eGameplay Mechanics
Games/Franchises

ARK: Survival Evolved (Mobile) • PixARKARK ParkATLASARK 2

Building & Development

BuildingBuilding GuidesFarmingCookingElectricityItem QualitySpoilageBlueprintsInventoryTribesSpawn LocationsLevelingCreative Mode

Items

ArmorConsumablesResourcesStructuresWeapons

Environment

Game ModesSingle PlayerSurvival of the FittestGame PersistenceEnvironmentalDifficulty

Exploring
Maps

The IslandThe CenterScorched EarthRagnarokAberrationExtinctionValgueroGenesis: Part 1Crystal IslesGenesis: Part 2Lost IslandFjordur

Features

CoordinatesFlyingSwimmingObelisksSupply CrateLoot Crate (Deep Sea) • BiomesExplorer NotesDossiersCavesArtifactsBoss ArenasAscensionARKsCrossARK TransfersMissions (Genesis: Part 1, Genesis: Part 2)

Character
Character

LevelsEngrams (Mobile, P+) • Survivor ProfileEmotesWhistlingHairstylesHUD

Attributes

HealthStaminaOxygenFoodWaterWeightMelee DamageMovement SpeedFortitudeCrafting SkillTorpidity

Condition

Status EffectsDiseases

Creatures
Domestication

TamingDomesticationAggression LevelBreedingMutationsIncubationImprintingMate BoostWeight Reduction

Stats

Base Creature StatisticsBase Creature SpeedsBase DamageCreature stats calculationLevel weighing

Attributes

EnergyCharge CapacityCharge RegenerationCharge Emission Range

Data Lists

Carryable byImmobilized byCan damage

Other

Temperament

Miscellaneous

AchievementsChatDLCsWeapon MechanicsStasisRaptor ClausHLN-AChibi-Pets

Creature stats calculation (2024)

FAQs

How to get perfect stat dinos ark? ›

Tame a bunch of high level dinos. Anything close to max level will do as a 140 can have better stats than a 150, for example. Compare stats, breed your highest-stat dinos together until you get all the best stats combined together.

What are the stats of the Dodorex in Ark? ›

Base Stats and Growth
AttributeBase ValueLevel Increase
Wild
Health666666+133333.2
Stamina1666+166.6
Oxygen150+15
5 more rows

What level do you get to in Ark post tame? ›

Creatures can level up 88 times. Once your creature has reached this limit, they will not be able to level up anymore. The max level for wild creatures and wild Tek creatures before taming is 150 and 180, respectively. After taming, the levels can be 224 or 269 respectively.

What is the most important stat in Ark? ›

The most crucial character stats in ARK Survival Ascended PvP are health and weight. A health of at least 300 will allow you to survive headshots, and a minimum of 250 weight to carry extra armor sets, weapons, and ammo. Having 150 movement speed is also nice to easily evade and escape if you can level it.

Can you max all stats in Ark? ›

So you can level each stat to 255 if you wish, like this: 254 - 255, and you are correct, if you put 256, when the server restart (or your SP) the 256 stat will now be a 1 because it rolled.

What is the most powerful tame in Ark survival evolved? ›

While it might not look like it at first glance, the Snow Owl is one of the most valuable creatures to tame in Ark: Survival Evolved. For PvP gameplay specifically, the Snow Owl has the ability to heal players from the sky and also dive to the ground which creates an AoE explosion, damaging any enemy caught in it.

What is the highest level tamed Dino ark? ›

450 is the max level a creature can get through breeding and getting mutations (1 mutation = +2lvl) + experience lvl (88 lvl max to win per dino wild or breeded). but there are exceptions like X or R-dinos who can get up to 500.

What is the max tame bonus in Ark? ›

At 100% Taming Effectiveness, a creature will get 50% of its wild level as bonus levels. The amount of bonus levels gained is proportional to the Taming Effectiveness (so 50% TE is 25% bonus levels). Where L is the creature Wild Level, the amount of bonus levels is L × TE / 2 (rounded down).

How do you breed perfect Dinos in Ark? ›

For creatures to successfully mate, they must be:
  1. of same species.
  2. of opposite sex (one male and one female)
  3. within mating range of each other.
  4. wandering or set to mate (Enable Wandering or Enable Mating must be enabled on both creatures)
  5. not following anything (Disable Following on both creatures)

How to increase mutation rate in Ark? ›

Mutation Stacking. Now in order to efficiently breed for mutations, you want a TON of females. My rule is to have at least 50 females. More females=more chances for a mutation.

What is the perfect tame command in Ark? ›

With your crosshair aimed at the creature open the command console and enter the command “forcetame”. This will forcefully tame the creature and any creatures tamed with this command can also be ridden without a saddle.

What is the max level for perfect tame ark? ›

Since a creature needs to eat at least once to be tamed, the taming effectiveness will never be exactly 100%. This means that the maximum level a creature can gain upon taming on official servers is 74.

Top Articles
Latest Posts
Article information

Author: Msgr. Refugio Daniel

Last Updated:

Views: 6010

Rating: 4.3 / 5 (54 voted)

Reviews: 93% of readers found this page helpful

Author information

Name: Msgr. Refugio Daniel

Birthday: 1999-09-15

Address: 8416 Beatty Center, Derekfort, VA 72092-0500

Phone: +6838967160603

Job: Mining Executive

Hobby: Woodworking, Knitting, Fishing, Coffee roasting, Kayaking, Horseback riding, Kite flying

Introduction: My name is Msgr. Refugio Daniel, I am a fine, precious, encouraging, calm, glamorous, vivacious, friendly person who loves writing and wants to share my knowledge and understanding with you.