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
3b465c2a
Commit
3b465c2a
authored
5 years ago
by
Lisa Greene
Browse files
Options
Downloads
Patches
Plain Diff
Adjust combatDamage calculation
parent
47b220df
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!599
Adjust melee damage
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
game/modules/tome/class/interface/Combat.lua
+7
-4
7 additions, 4 deletions
game/modules/tome/class/interface/Combat.lua
with
7 additions
and
4 deletions
game/modules/tome/class/interface/Combat.lua
+
7
−
4
View file @
3b465c2a
...
...
@@ -1662,11 +1662,12 @@ function _M:combatDamage(weapon, adddammod, damage)
totstat
=
totstat
+
self
:
getStat
(
stat
)
*
mod
end
end
if
self
:
knowTalent
(
self
[
"T_FORM_AND_FUNCTION"
])
then
totstat
=
totstat
+
self
:
callTalent
(
self
[
"T_FORM_AND_FUNCTION"
],
"getDamBoost"
,
weapon
)
end
local
talented_mod
=
1
+
self
:
combatTrainingPercentInc
(
weapon
)
local
power
=
self
:
combatDamagePower
(
damage
or
weapon
,
totstat
)
local
phys
=
self
:
combatPhysicalpower
(
nil
,
weapon
,
totstat
)
return
self
:
rescaleDamage
(
0
.
3
*
phys
*
power
*
talented_mod
)
local
power
=
self
:
combatDamagePower
(
damage
or
weapon
)
local
phys
=
self
:
combatPhysicalpower
(
nil
,
weapon
)
local
statmod
=
self
:
rescaleCombatStats
(
totstat
,
25
)
return
self
:
rescaleDamage
(
0
.
3
*
(
phys
+
statmod
)
*
power
*
talented_mod
)
end
--- Gets the 'power' portion of the damage
...
...
@@ -1674,6 +1675,8 @@ function _M:combatDamagePower(weapon_combat, add)
if
not
weapon_combat
then
return
1
end
local
power
=
math.max
((
weapon_combat
.
dam
or
1
)
+
(
add
or
0
),
1
)
if
self
:
knowTalent
(
self
[
"T_FORM_AND_FUNCTION"
])
then
power
=
power
+
self
:
callTalent
(
self
[
"T_FORM_AND_FUNCTION"
],
"getDamBoost"
,
weapon
)
end
return
(
math.sqrt
(
power
/
10
)
-
1
)
*
0
.
5
+
1
end
...
...
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