Module:CalculatedStats: Difference between revisions

no edit summary
No edit summary
No edit summary
Line 77: Line 77:
local statTable = {
local statTable = {
atk = levelMinus20 + (strength * 3) + math.floor(vitality / 4),
atk = levelMinus20 + (strength * 3) + math.floor(vitality / 4),
acc = math.floor(strength / 8) + agility + math.floor(vitality / 10), --Incorrect
acc = math.floor(vitality / 4) + agility,
def = math.floor(levelMinus20 / 2) + math.floor(strength / 4) + (vitality * 3),
def = math.floor(levelMinus20 / 2) + math.floor(strength / 4) + (vitality * 3),
eva = math.floor(intelligence / 8) + agility,
eva = math.floor(intelligence / 8) + agility,