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
fe7506e1
Commit
fe7506e1
authored
5 years ago
by
Tawny Harte
Browse files
Options
Downloads
Patches
Plain Diff
oops and a number
parent
ad1c47f9
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!558
Afflicted+predator
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
game/modules/tome/data/talents/cursed/predator.lua
+3
-3
3 additions, 3 deletions
game/modules/tome/data/talents/cursed/predator.lua
game/modules/tome/data/timed_effects/mental.lua
+0
-1
0 additions, 1 deletion
game/modules/tome/data/timed_effects/mental.lua
with
3 additions
and
4 deletions
game/modules/tome/data/talents/cursed/predator.lua
+
3
−
3
View file @
fe7506e1
...
...
@@ -72,7 +72,7 @@ newTalent{
points
=
5
,
cooldown
=
10
,
radius
=
function
(
self
,
t
)
return
4
end
,
getMiasmaCount
=
function
(
self
,
t
)
return
self
:
combatTalentScale
(
t
,
4
,
8
)
end
,
getMiasmaCount
=
function
(
self
,
t
)
return
self
:
combatTalentScale
(
t
,
4
,
7
)
end
,
getDamage
=
function
(
self
,
t
)
return
self
:
combatTalentMindDamage
(
t
,
0
,
60
)
end
,
getChance
=
function
(
self
,
t
)
return
self
:
combatTalentScale
(
t
,
5
,
15
)
end
,
passives
=
function
(
self
,
t
,
p
)
...
...
@@ -213,10 +213,11 @@ newTalent{
end
,
callbackOnMeleeAttack
=
function
(
self
,
t
,
target
,
hitted
,
critted
)
if
hitted
and
critted
and
not
(
self
.
x
and
self
.
y
and
game
.
level
.
map
:
checkAllEntities
(
self
.
x
,
self
.
y
,
"cursedMiasma"
))
then
local
miasma_count
=
0
local
damage
=
self
:
mindCrit
(
t
.
getDamage
(
self
,
t
))
local
x
,
y
=
self
.
x
,
self
.
y
if
t
.
canCreep
(
x
,
y
)
then
t
.
createDark
(
self
,
x
,
y
,
damage
,
rng
.
range
(
7
,
9
),
8
,
100
,
0
)
miasma_count
=
1
end
local
locations
=
{}
t
.
createDark
(
self
,
self
.
x
,
self
.
y
,
damage
,
rng
.
range
(
7
,
9
),
8
,
100
,
0
)
local
grids
=
core
.
fov
.
circle_grids
(
x
,
y
,
4
,
true
)
for
darkX
,
yy
in
pairs
(
grids
)
do
for
darkY
,
_
in
pairs
(
grids
[
darkX
])
do
local
l
=
line
.
new
(
x
,
y
,
darkX
,
darkY
)
...
...
@@ -233,7 +234,6 @@ newTalent{
end
end
end
local
miasma_count
=
0
repeat
if
#
locations
<=
0
then
break
end
local
location
,
id
=
rng
.
table
(
locations
)
...
...
This diff is collapsed.
Click to expand it.
game/modules/tome/data/timed_effects/mental.lua
+
0
−
1
View file @
fe7506e1
...
...
@@ -626,7 +626,6 @@ newEffect{
parameters
=
{
chance
=
5
},
on_gain
=
function
(
self
,
err
)
return
"#Target# is surrounded by a cursed miasma."
,
"+Cursed Miasma"
end
,
on_lose
=
function
(
self
,
err
)
return
"The cursed miasma around #target# dissipates."
,
"-Cursed Miasma"
end
,
charges
=
function
(
self
,
eff
)
return
-
eff
.
sight
end
,
activate
=
function
(
self
,
eff
)
if
rng
.
percent
(
eff
.
chance
)
then
self
:
setTarget
(
nil
)
-- Reset target to grab a random new one
...
...
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