Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Tales of MajEyal
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tome
Tales of MajEyal
Commits
60005159
Commit
60005159
authored
13 years ago
by
dg
Browse files
Options
Downloads
Patches
Plain Diff
plop
git-svn-id:
http://svn.net-core.org/repos/t-engine4@3795
51575b47-30f0-44d4-a5cc-537603b46e54
parent
24818af5
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
game/modules/tome/class/interface/Combat.lua
+1
-1
1 addition, 1 deletion
game/modules/tome/class/interface/Combat.lua
game/modules/tome/load.lua
+4
-2
4 additions, 2 deletions
game/modules/tome/load.lua
with
5 additions
and
3 deletions
game/modules/tome/class/interface/Combat.lua
+
1
−
1
View file @
60005159
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
game/modules/tome/load.lua
+
4
−
2
View file @
60005159
...
...
@@ -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
i
pairs
(
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"
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment