Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Tales of MajEyal
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
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
K'van
Tales of MajEyal
Commits
297d19a4
Commit
297d19a4
authored
10 years ago
by
DarkGod
Browse files
Options
Downloads
Patches
Plain Diff
Reduced the power of Leaves Tide a bit
parent
a27c2efc
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
game/modules/tome/data/talents/gifts/mindstar-mastery.lua
+2
-2
2 additions, 2 deletions
game/modules/tome/data/talents/gifts/mindstar-mastery.lua
with
2 additions
and
2 deletions
game/modules/tome/data/talents/gifts/mindstar-mastery.lua
+
2
−
2
View file @
297d19a4
...
...
@@ -21,7 +21,7 @@ function get_mindstar_power_mult(self, div)
local
main
,
off
=
self
:
hasPsiblades
(
true
,
true
)
if
not
main
or
not
off
then
return
1
end
local
mult
=
1
+
(
main
.
combat
.
dam
+
off
.
combat
.
dam
)
/
(
div
or
40
)
local
mult
=
1
+
(
main
.
combat
.
dam
+
off
.
combat
.
dam
)
*
0
.
8
/
(
div
or
40
)
return
mult
end
...
...
@@ -106,7 +106,7 @@ newTalent{
cooldown
=
25
,
tactical
=
{
ATTACK
=
2
,
DEFEND
=
3
},
getDamage
=
function
(
self
,
t
)
return
5
+
self
:
combatTalentMindDamage
(
t
,
5
,
35
)
*
get_mindstar_power_mult
(
self
)
end
,
getChance
=
function
(
self
,
t
)
return
util
.
bound
(
10
+
self
:
combatTalentMindDamage
(
t
,
5
,
3
5
),
10
,
40
)
*
get_mindstar_power_mult
(
self
,
90
)
end
,
getChance
=
function
(
self
,
t
)
return
util
.
bound
(
10
+
self
:
combatTalentMindDamage
(
t
,
3
,
2
5
),
10
,
40
)
*
get_mindstar_power_mult
(
self
,
90
)
end
,
on_pre_use
=
function
(
self
,
t
,
silent
)
if
not
self
:
hasPsiblades
(
true
,
true
)
then
if
not
silent
then
game
.
logPlayer
(
self
,
"You require two psiblades in your hands to use this talent."
)
end
return
false
end
return
true
end
,
action
=
function
(
self
,
t
)
-- Add a lasting map effect
...
...
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