Module:CalculatedStats: Difference between revisions

m
Forgot to mark this as good
No edit summary
m (Forgot to mark this as good)
Line 236: Line 236:
atk = (level + strength) * 2, --Good
atk = (level + strength) * 2, --Good
acc = math.floor(level * 1.5) + agility + math.floor((strength + luck) / 4),
acc = math.floor(level * 1.5) + agility + math.floor((strength + luck) / 4),
pdef = (level + vitality) * 2 + 16,
pdef = (level + vitality) * 2 + 16, --Good
peva = round(level * 1.5) + agility + round((intelligence + luck) / 4),
peva = round(level * 1.5) + agility + round((intelligence + luck) / 4),
matk = (level + intelligence) * 2,
matk = (level + intelligence) * 2,