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
3
Merged
Recaiden
requested to merge
Recaiden/t-engine4:fallen-tweaks
into
master
4 years ago
Overview
0
Commits
2
Pipelines
0
Changes
3
Expand
Fixes a bug with Mark of the Vampire applying twice, and updates two effect descriptions
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
58576f0f
2 commits,
4 years ago
3 files
+
3
−
3
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
game/modules/tome/data/talents/cursed/crimson-templar.lua
+
1
−
1
Options
@@ -158,7 +158,7 @@ newTalent{
self
:
project
(
tg
,
x
,
y
,
function
(
tx
,
ty
)
local
target
=
game
.
level
.
map
(
tx
,
ty
,
Map
.
ACTOR
)
if
not
target
or
target
==
self
then
return
end
target
:
setEffect
(
target
.
EFF_MARK_OF_THE_VAMPIRE
,
20
,
{
src
=
self
,
dam
=
dam
,
power
=
1
+
t
.
getBleedIncrease
(
self
,
t
),
apply_power
=
self
:
combatSpellpower
()})
target
:
setEffect
(
target
.
EFF_MARK_OF_THE_VAMPIRE
,
20
,
{
src
=
self
,
dam
=
dam
,
power
=
t
.
getBleedIncrease
(
self
,
t
),
apply_power
=
self
:
combatSpellpower
()})
end
)
local
_
_
,
_
,
_
,
x
,
y
=
self
:
canProject
(
tg
,
x
,
y
)
game
.
level
.
map
:
particleEmitter
(
x
,
y
,
tg
.
radius
,
"circle"
,
{
oversize
=
0
.
7
,
g
=
90
,
b
=
100
,
a
=
100
,
limit_life
=
8
,
appear
=
8
,
speed
=
2
,
img
=
"blight_circle"
,
radius
=
self
:
getTalentRadius
(
t
)})
Loading