hit chance issue resolved

This commit is contained in:
2024-03-31 12:00:56 -05:00
parent 505f8fdd90
commit 595d0ba9ba
+4 -1
View File
@@ -645,7 +645,10 @@ public enum CombatManager {
errorTrack = 4;
//Get hit chance
float smallChance = ((atr-((atr+defense)*0.33f))/((defense-((atr+defense)*0.33f))+(atr-((atr+defense)*0.33f))));
float constant = (atr+defense)*0.315f;
float atrChance = atr - constant;
float defChance = defense - constant + atrChance;
float smallChance = atrChance/defChance;
int chance = (int)(smallChance * 100);
errorTrack = 5;