Stat calculations

Trait value

To convert the Aavegotchi on-chain stats into the Gotchi Battler stats we must first convert each trait into a Trait Value like so:

  • If trait is < 50 then Trait Value = 50 - trait

  • If trait is >= 50 then Trait Value = trait - 50 + 1

Calculating the stat

Once we have the Trait Value for each trait then we calculate the final stat like so:

  • Stat Base Value + (Trait Value * Stat Multiplier)

Here are the Base Values and Multipliers for each stat:

NOTE: These values are subject to change for balancing

Stat
Trait
Base value
Multiplier

Speed

+NRG

100

1

Health

-NRG

BRS*0.75

12

Critical hit %

+AGG

0

0.5

Armor

-AGG

0

2

Evade %

+SPK

0

0.3

Resist %

-SPK

0

1

Magic Power

+BRN

BRS*0.25

5

Physical Power

-BRN

BRS*0.25

5

Accuracy

EYC + EYS

50

0.5

Here's how the stats are calculated for an example gotchi:

Stat
Trait Value
Stat calculation
Stat value

Speed

94-50+1=45

100 + (45*1)

145

Health

0

(922*0.75) + (0*12)

692

Critical hit %

105-50+1=56

0 + (56*0.5)

28%

Armor

0

0 + (0*2)

0

Evade %

0

0 + (0*0.3)

0%

Resist %

50 - -10=60

0 + (60*1)

60%

Magic Power

119 - 50+1=70

(922/4) + (70*5)

581

Physical Power

0

(922/4) + (0*5)

231

Accuracy

93 - 50 + 1 = 44 76 - 50 + 1 = 27 44 + 27 = 71

50 + (71*0.5)

86

Last updated