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:
Base Value + (BRS * BRS Multiplier) + (Trait Value * Stat Multiplier)
Here are the Base Values and Multipliers for each stat:
NOTE: These values are subject to change for balancing
Speed
+NRG
85
0.05
1
Health
-NRG
0
1
5
Crit %
+AGG
0
0.015
0.3
Armor
-AGG
0
0.1
0.7
Evade %
+SPK
0
0.015
0.15
Resist %
-SPK
0
0.05
0.5
Magic
+BRN
0
0.5
3
Physical
-BRN
0
0.5
3
Accuracy
EYC + EYS
50
0
0.5
Here's how the stats are calculated for an example gotchi:
Stat Value = Base Value + (BRS * BRS Multiplier) + (Trait Value * Stat Multiplier)
Speed
85
922 * 0.05 = 46
(94 - 50 + 1) * 1 = 45
85 + 46 + 45 = 176
Health
0
922 * 1 = 922
0 * 5 = 0
0 + 922 + 0 = 922
Crit %
0
922 * 0.015 = 13.83
(105 - 50 + 1) * 0.3 = 16.8
0 + 13.83 + 16.8 = 30.63
Armor
0
922 * 0.1 = 92
0 * 0.7 = 0
0 + 92 + 0 = 92
Evade %
0
922 * 0.015 = 13.83
0 * 0.15 = 0
0 + 13.83 + 0 = 13.83
Resist %
0
922 * 0.05 = 46
(50 - -10) * 0.5 = 30
0 + 46 + 30 = 76
Magic
0
922 * 0.5 = 461
(119 - 50 + 1) * 3 = 210
0 + 461 + 210 = 671
Physical
0
922 * 0.5 = 461
0 * 3 = 0
0 + 461 + 0 = 461
Accuracy
50
922 * 0 = 0
(((93 - 50 + 1) + (76 - 50 + 1)) ) * 0.5 = 36
50 + 0 + 36 = 86
Last updated