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
Merge requests
!652
Fallen tweaks
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Fallen tweaks
Recaiden/t-engine4:fallen-tweaks
into
master
Overview
0
Commits
2
Pipelines
0
Changes
1
Merged
Recaiden
requested to merge
Recaiden/t-engine4:fallen-tweaks
into
master
4 years ago
Overview
0
Commits
2
Pipelines
0
Changes
1
Expand
Fixes a bug with Mark of the Vampire applying twice, and updates two effect descriptions
0
0
Merge request reports
Viewing commit
58576f0f
Prev
Next
Show latest version
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
58576f0f
Mark of the Vampire Charge display
· 58576f0f
Recaiden
authored
4 years ago
game/modules/tome/data/timed_effects/mental.lua
+
1
−
1
Options
@@ -3064,7 +3064,7 @@ newEffect{
long_desc
=
function
(
self
,
eff
)
return
(
"The target is doomed to die a bloody death. Each time it uses an ability it takes %0.2f physical damage, and incoming bleeds are strengthened by %d%%."
):
tformat
(
eff
.
dam
,
eff
.
power
*
100
)
end
,
charges
=
function
(
self
,
eff
)
return
(
tostring
(
math.floor
((
eff
.
power
-
1
)
*
100
))
..
"%"
)
end
,
charges
=
function
(
self
,
eff
)
return
(
tostring
(
math.floor
((
eff
.
power
)
*
100
))
..
"%"
)
end
,
type
=
"mental"
,
subtype
=
{
psionic
=
true
},
status
=
"detrimental"
,
Loading