Skip to content
Snippets Groups Projects
Commit 0ebdb5b2 authored by dg's avatar dg
Browse files

awakened staff of absorption

git-svn-id: http://svn.net-core.org/repos/t-engine4@1047 51575b47-30f0-44d4-a5cc-537603b46e54
parent 1023ad7c
No related branches found
No related tags found
No related merge requests found
......@@ -507,6 +507,22 @@ newEffect{
end,
}
newEffect{
name = "POWER_OVERLOAD",
desc = "Power Overload",
type = "magical",
status = "beneficial",
parameters = { power=10 },
on_gain = function(self, err) return "#Target# is overloaded with power.", "+Overload" end,
on_lose = function(self, err) return "#Target# seems less dangerous.", "-Overload" end,
activate = function(self, eff)
eff.pid = self:addTemporaryValue("inc_damage", {all=eff.power})
end,
deactivate = function(self, eff)
self:removeTemporaryValue("inc_damage", eff.pid)
end,
}
newEffect{
name = "SHELL_SHIELD",
desc = "Shell Shield",
......
......@@ -66,32 +66,35 @@ newEntity{
size_category = 3,
stats = { str=40, dex=60, cun=60, mag=30, con=40 },
body = { INVEN = 10, MAINHAND=1, OFFHAND=1, BODY=1 },
body = { INVEN = 10, MAINHAND=1, OFFHAND=1, BODY=1, HEAD=1, FEET=1 },
resolvers.equip{
{type="weapon", subtype="staff", ego_chance=100, autoreq=true},
{type="weapon", subtype="staff", defined="STAFF_ABSORPTION_AWAKENED", autoreq=true},
{type="armor", subtype="cloth", ego_chance=100, autoreq=true},
{type="armor", subtype="head", ego_chance=100, autoreq=true},
{type="armor", subtype="feet", ego_chance=100, autoreq=true},
},
resolvers.drops{chance=100, nb=10, {ego_chance=100} },
resolvers.drops{chance=100, nb=5, {ego_chance=100} },
resolvers.talents{
[Talents.T_STONE_SKIN]=5,
[Talents.T_QUICKEN_SPELLS]=5,
[Talents.T_SPELL_SHAPING]=5,
[Talents.T_ARCANE_POWER]=5,
[Talents.T_ESSENCE_OF_SPEED]=5,
[Talents.T_HYMN_OF_SHADOWS]=5,
[Talents.T_FLAME]=5,
[Talents.T_FREEZE]=5,
[Talents.T_LIGHTNING]=5,
[Talents.T_MANATHRUST]=5,
[Talents.T_FLAMESHOCK]=5,
[Talents.T_STONE_SKIN]=5,
[Talents.T_STRIKE]=5,
[Talents.T_HEAL]=5,
[Talents.T_REGENERATION]=5,
[Talents.T_ILLUMINATE]=5,
[Talents.T_QUICKEN_SPELLS]=5,
[Talents.T_SPELL_SHAPING]=5,
[Talents.T_ARCANE_POWER]=5,
[Talents.T_METAFLOW]=5,
[Talents.T_PHASE_DOOR]=5,
[Talents.T_ESSENCE_OF_SPEED]=5,
[Talents.T_HYMN_OF_SHADOWS]=5,
[Talents.T_MOONLIGHT_RAY]=5,
[Talents.T_STARFALL]=5,
[Talents.T_TWILIGHT_SURGE]=5,
......@@ -127,7 +130,7 @@ newEntity{
{type="weapon", subtype="staff", ego_chance=100, autoreq=true},
{type="armor", subtype="cloth", ego_chance=100, autoreq=true},
},
resolvers.drops{chance=100, nb=10, {ego_chance=100} },
resolvers.drops{chance=100, nb=5, {ego_chance=100} },
resolvers.talents{
[Talents.T_FLAME]=5,
......
......@@ -19,29 +19,50 @@
load("/data/general/objects/objects.lua")
-- Artifact, droped (and used!) by the Shade of Angmar
newEntity{ base = "BASE_STAFF",
define_as = "STAFF_ANGMAR", rarity=false,
name = "Angmar's Fall", unique=true,
desc = [[Made from the bones of of many creatures this staff glows with power. You can feel its evilness as you touch it.]],
require = { stat = { mag=25 }, },
cost = 5,
local Stats = require "engine.interface.ActorStats"
-- The staff of absorption, the reason the game exists!
newEntity{ define_as = "STAFF_ABSORPTION_AWAKENED", base="BASE_STAFF",
unique = true,
name = "Awakened Staff of Absorption", identified=true,
display = "\\", color=colors.VIOLET, image = "object/staff_dragonbone.png",
encumber = 7,
desc = [[Carved with runes of power, this staff seems to have been made long ago. Yet it bears no signs of tarnishment.
Light around it seems to dim and you can feel its tremendous power simply by touching it.
The Istari seem to have awakened its power.]],
require = { stat = { mag=60 }, },
combat = {
dam = 10,
apr = 0,
physcrit = 1.5,
dammod = {mag=1.1},
dam = 50,
apr = 4,
atk = 20,
dammod = {mag=1},
},
wielder = {
see_invisible = 2,
combat_spellpower = 7,
combat_spellcrit = 8,
inc_damage={
[DamageType.FIRE] = 4,
[DamageType.COLD] = 4,
[DamageType.ACID] = 4,
[DamageType.LIGHTNING] = 4,
[DamageType.BLIGHT] = 4,
},
combat_spellpower = 34,
combat_spellcrit = 10,
max_mana = 50,
max_positive = 50,
max_negative = 50,
inc_stats = { [Stats.STAT_MAG] = 6, [Stats.STAT_WIL] = 6 },
},
max_power = 1000, power_regen = 1,
use_power = { name = "absorb energies", power = 1000,
use = function(self, who)
local tg = {type="hit", range=8}
local x, y = who:getTarget(tg)
if not x or not y then return nil end
local _ _, x, y = who:canProject(tg, x, y)
local target = game.level.map(x, y, engine.Map.ACTOR)
if not target then return nil end
if target.staff_drained then
game.logPlayer(who, "This foe has already been drained.")
end
game.logPlayer(who, "You brandish the staff, draining your foe.")
who:setEffect(who.EFF_POWER_OVERLOAD, 7, {power=20})
target:takeHit(target.life * 0.2, who)
end
},
}
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