'n_curado' 'n_dmg' 'c_curado' and 'c_dmg' renamed to 'n_total' and 'c_total'

This commit is contained in:
Tercio Jose
2023-04-10 14:34:16 -03:00
parent 50d848e1d1
commit 4ab2f1241d
12 changed files with 382 additions and 151 deletions
+4 -4
View File
@@ -41,13 +41,13 @@
--amount normal hits
n_amt = 0,
--total damage of normal hits
n_dmg = 0,
n_total = 0,
--critical hits
c_min = 0,
c_max = 0,
c_amt = 0,
c_dmg = 0,
c_total = 0,
--glacing hits
g_amt = 0,
@@ -117,7 +117,7 @@
self.g_amt = self.g_amt+1 --amount o total de dano
elseif (critical) then
self.c_dmg = self.c_dmg+amount --amount o total de dano
self.c_total = self.c_total+amount --amount o total de dano
self.c_amt = self.c_amt+1 --amount o total de dano
if (amount > self.c_max) then
self.c_max = amount
@@ -127,7 +127,7 @@
end
else
self.n_dmg = self.n_dmg+amount
self.n_total = self.n_total+amount
self.n_amt = self.n_amt+1
if (amount > self.n_max) then
self.n_max = amount