Jump to content
Koumei & the Five Fates: Share Bug Reports and Feedback Here! ×

Add a standardized max ammo formula?


Frendh

Recommended Posts

When looking at many of the high fire rate weapons the ammo pool is really unfairly distributed. Add a formula to get some form of standardized values.

Something simple like:

Spoiler

##Afuris

CritDBase = 2
CritC = 0.05
StatC = 0.12
BaseDamage = 20
KuvaTenet = 0 ##One fourth of the element bonus 

CritD = (CritDBase - 1)
if CritD < 0.5:
    CritD = 0.5
    

if KuvaTenet > 0:
    BaseDamage = BaseDamage*(1+KuvaTenet)


Ammofactor = 1/(BaseDamage*(1+CritC)*(1+StatC)*(CritD))
Ammopool =  100000 * Ammofactor 
print("Ammopool is:")
print(Ammopool)

Above example would give Afuris an ammopool of 4251.

Spoiler

##Kuva Twin Stubbas

CritDBase = 1.9
CritC = 0.23
StatC = 0.31
BaseDamage = 27
KuvaTenet = 0.07 ##One fourth of the element bonus 


CritD = (CritDBase - 1)
if CritD < 0.5:
    CritD = 0.5
    

if KuvaTenet > 0:
    BaseDamage = BaseDamage*(1+KuvaTenet)


Ammofactor = 1/(BaseDamage*(1+CritC)*(1+StatC)*(CritD))
Ammopool =  100000 * Ammofactor 
print("Ammopool is:")
print(Ammopool)

Above example would give Kuva Twin Stubbas 2386 in ammopool. Same formula as the one used for Afuris, except the values assigned are from the Kuva Twin Stubbas.

 

Afuris currently has 210 in ammopool and Kuva twin stubbas 684.  The formula was made with high fire rate weapons in mind. It is not meant to be applied to AoE weapons.

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...