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
Otowa Kotori
Tales of MajEyal
Commits
79f42504
Commit
79f42504
authored
10 years ago
by
DarkGod
Browse files
Options
Downloads
Patches
Plain Diff
Fixed Unseen Force
parent
9ce9b671
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
game/modules/tome/data/talents/cursed/force-of-will.lua
+12
-1
12 additions, 1 deletion
game/modules/tome/data/talents/cursed/force-of-will.lua
with
12 additions
and
1 deletion
game/modules/tome/data/talents/cursed/force-of-will.lua
+
12
−
1
View file @
79f42504
...
...
@@ -308,7 +308,18 @@ newTalent{
getKnockback
=
function
(
self
,
t
)
return
2
end
,
getSecondHitChance
=
function
(
self
,
t
)
return
self
:
combatTalentScale
(
self
:
getTalentLevel
(
t
)
-
4
,
15
,
35
)
end
,
-- Minimum effects until tLvl > 4
getAdjustedTalentLevel
=
function
(
self
,
t
)
local
tLevel
=
self
:
getTalentLevel
(
self
,
t
)
-
4
-- Do not feed a negative talent level to the scaling functions
if
tLevel
<
0
then
tLevel
=
0
end
return
tLevel
end
,
getSecondHitChance
=
function
(
self
,
t
)
return
self
:
combatTalentScale
(
t
.
getAdjustedTalentLevel
(
self
,
t
),
15
,
35
)
end
,
action
=
function
(
self
,
t
)
game
.
logSeen
(
self
,
"An unseen force begins to swirl around %s!"
,
self
.
name
)
local
duration
=
t
.
getDuration
(
self
,
t
)
...
...
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