corrected stats, should've divided difference by 9 not 10

This commit is contained in:
2021-10-26 22:14:41 -04:00
parent 98e90df6fa
commit 7fc50e2340

View File

@@ -145,32 +145,32 @@ towerNameList = {
-- patchy and alice have ssr stats for some reason but im not gonna copy that right now
local thtd_power_table = {
["N"] = {
[1] = {3,0.9},
[2] = {15,0.9},
[3] = {32,1.3},
[4] = {80,1.8},
[5] = {178,2.2},
[1] = {3,1},
[2] = {15,1},
[3] = {32,1.5},
[4] = {80,2},
[5] = {178,2.5},
},
["R"] = {
[1] = {4,0.9},
[2] = {18,1.3},
[3] = {50,1.8},
[4] = {98,2.2},
[5] = {233,2.7},
[1] = {4,1},
[2] = {18,1.5},
[3] = {50,2},
[4] = {98,2.5},
[5] = {233,3},
},
["SR"] = {
[1] = {5,0.9},
[2] = {24,1.8},
[3] = {64,2.7},
[4] = {134,3.6},
[5] = {285,4.5},
[1] = {5,1},
[2] = {24,2},
[3] = {64,3},
[4] = {134,4},
[5] = {285,5},
},
["SSR"] = {
[1] = {6,1.8},
[2] = {30,2.7},
[3] = {100,3.6},
[4] = {175,4.5},
[5] = {346,5.4},
[1] = {6,2},
[2] = {30,3},
[3] = {100,4},
[4] = {175,5},
[5] = {346,6},
}
}