From 7fc50e23403a713b5863189b04d61ea519566cd7 Mon Sep 17 00:00:00 2001 From: littlefoot Date: Tue, 26 Oct 2021 22:14:41 -0400 Subject: [PATCH] corrected stats, should've divided difference by 9 not 10 --- scripts/vscripts/system/tower.lua | 40 +++++++++++++++---------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/scripts/vscripts/system/tower.lua b/scripts/vscripts/system/tower.lua index 4fed027..ceb51be 100755 --- a/scripts/vscripts/system/tower.lua +++ b/scripts/vscripts/system/tower.lua @@ -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}, } }