Skip to content
Snippets Groups Projects
Commit cb21d339 authored by DarkGod's avatar DarkGod
Browse files

Buffed Tree of Life

parent 35c8bf97
No related branches found
No related tags found
No related merge requests found
......@@ -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",
......
......@@ -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",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment