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
cb21d339
Commit
cb21d339
authored
11 years ago
by
DarkGod
Browse files
Options
Downloads
Patches
Plain Diff
Buffed Tree of Life
parent
35c8bf97
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
game/modules/tome/data/general/objects/world-artifacts.lua
+10
-0
10 additions, 0 deletions
game/modules/tome/data/general/objects/world-artifacts.lua
game/modules/tome/data/timed_effects/other.lua
+35
-0
35 additions, 0 deletions
game/modules/tome/data/timed_effects/other.lua
with
45 additions
and
0 deletions
game/modules/tome/data/general/objects/world-artifacts.lua
+
10
−
0
View file @
cb21d339
...
...
@@ -26,6 +26,7 @@ for def, e in pairs(game.state:getWorldArtifacts()) do
print
(
"Importing "
..
e
.
name
..
" into world artifacts"
)
end
-- This file describes artifacts not bound to a special location, they can be found anywhere
newEntity
{
base
=
"BASE_STAFF"
,
power_source
=
{
arcane
=
true
},
...
...
@@ -5388,6 +5389,7 @@ newEntity{ base = "BASE_TOOL_MISC", --Sorta Thanks Donkatsu!
material_level
=
4
,
special_desc
=
function
(
self
)
return
"Heals all nearby living creatures by 5 points each turn."
end
,
sentient
=
true
,
use_no_energy
=
true
,
wielder
=
{
resists
=
{[
DamageType
.
BLIGHT
]
=
10
,
[
DamageType
.
NATURE
]
=
10
},
inc_damage
=
{[
DamageType
.
NATURE
]
=
10
},
...
...
@@ -5411,6 +5413,7 @@ newEntity{ base = "BASE_TOOL_MISC", --Sorta Thanks Donkatsu!
end
,
act
=
function
(
self
)
self
:
useEnergy
()
self
:
regenPower
()
if
not
self
.
worn_by
then
return
end
if
game
.
level
and
not
game
.
level
:
hasEntity
(
self
.
worn_by
)
and
not
self
.
worn_by
.
player
then
self
.
worn_by
=
nil
return
end
if
self
.
worn_by
:
attr
(
"dead"
)
then
return
end
...
...
@@ -5418,6 +5421,13 @@ newEntity{ base = "BASE_TOOL_MISC", --Sorta Thanks Donkatsu!
local
blast
=
{
type
=
"ball"
,
range
=
0
,
radius
=
2
,
selffire
=
true
}
who
:
project
(
blast
,
who
.
x
,
who
.
y
,
engine
.
DamageType
.
HEALING_NATURE
,
5
)
end
,
max_power
=
15
,
power_regen
=
1
,
use_power
=
{
name
=
"take root increasing health, armor, and armor hardiness but rooting you in place"
,
power
=
10
,
use
=
function
(
self
,
who
)
who
:
setEffect
(
who
.
EFF_TREE_OF_LIFE
,
4
,
{})
return
{
id
=
true
,
used
=
true
}
end
},
}
newEntity
{
base
=
"BASE_RING"
,
...
...
This diff is collapsed.
Click to expand it.
game/modules/tome/data/timed_effects/other.lua
+
35
−
0
View file @
cb21d339
...
...
@@ -25,6 +25,41 @@ local Map = require "engine.Map"
local
Level
=
require
"engine.Level"
local
Combat
=
require
"mod.class.interface.Combat"
-- Design: Temporary immobility in exchange for a large stat buff.
newEffect
{
name
=
"TREE_OF_LIFE"
,
image
=
"shockbolt/object/artifact/tree_of_life.png"
,
desc
=
"You have taken root!"
,
long_desc
=
function
(
self
,
eff
)
return
"You have taken root becoming one with nature. Or at least the ground. Your health, armor, and armor hardiness are improved but you cannot move."
end
,
type
=
"other"
,
subtype
=
{
nature
=
true
},
--status = "detrimental",
parameters
=
{},
on_gain
=
function
(
self
,
err
)
return
"#LIGHT_BLUE##Target# takes root."
,
"+Pinned"
end
,
on_lose
=
function
(
self
,
err
)
return
"#LIGHT_BLUE##Target# is no longer a badass tree."
,
"-Pinned"
end
,
activate
=
function
(
self
,
eff
)
self
:
effectTemporaryValue
(
eff
,
"never_move"
,
1
)
self
:
effectTemporaryValue
(
eff
,
"max_life"
,
300
)
self
:
effectTemporaryValue
(
eff
,
"combat_armor"
,
20
)
self
:
effectTemporaryValue
(
eff
,
"combat_armor_hardiness"
,
20
)
self
.
replace_display
=
mod
.
class
.
Actor
.
new
{
image
=
"invis.png"
,
add_mos
=
{{
image
=
"npc/giant_treant_wrathroot.png"
,
display_y
=
-
1
,
display_h
=
2
}},
}
self
:
removeAllMOs
()
game
.
level
.
map
:
updateMap
(
self
.
x
,
self
.
y
)
end
,
deactivate
=
function
(
self
,
eff
)
self
.
replace_display
=
nil
self
:
removeAllMOs
()
game
.
level
.
map
:
updateMap
(
self
.
x
,
self
.
y
)
end
,
}
newEffect
{
name
=
"INFUSION_COOLDOWN"
,
image
=
"effects/infusion_cooldown.png"
,
desc
=
"Infusion Saturation"
,
...
...
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