Skip to content
Snippets Groups Projects
Commit 60005159 authored by dg's avatar dg
Browse files

plop

git-svn-id: http://svn.net-core.org/repos/t-engine4@3795 51575b47-30f0-44d4-a5cc-537603b46e54
parent 24818af5
No related branches found
No related tags found
No related merge requests found
......@@ -670,7 +670,7 @@ function _M:combatTalentWeaponDamage(t, base, max, t2)
if t2 then t2 = t2 / 2 else t2 = 0 end
local diff = max - base
local mult = base + diff * math.sqrt((self:getTalentLevel(t) + t2) / 5)
print("[TALENT WEAPON MULT]", self:getTalentLevel(t), base, max, t2, mult)
-- print("[TALENT WEAPON MULT]", self:getTalentLevel(t), base, max, t2, mult)
return mult
end
......
......@@ -217,9 +217,10 @@ Store:loadStores("/data/general/stores/basic.lua")
------------------------------------------------------------------------
-- Count the number of talents per types
------------------------------------------------------------------------
--[[
local type_tot = {}
for i, t in ipairs(ActorTalents.talents_def) do
type_tot[t.type[1]] = (type_tot[t.type[1]] or 0) + t.points
for i, t in pairs(ActorTalents.talents_def) do
type_tot[t.type[1] ] = (type_tot[t.type[1] ] or 0) + t.points
local b = t.type[1]:gsub("/.*", "")
type_tot[b] = (type_tot[b] or 0) + t.points
end
......@@ -231,6 +232,7 @@ table.sort(stype_tot, function(a, b) return a[1] < b[1] end)
for i, t in ipairs(stype_tot) do
print("[SCHOOL TOTAL]", t[2], t[1])
end
]]
------------------------------------------------------------------------
return {require "mod.class.Game", require "mod.class.World"}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment