Newer
Older
--
-- This program is free software: you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation, either version 3 of the License, or
-- (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
--
-- Nicolas Casalini "DarkGod"
-- darkgod@te4.org
load("/data/general/npcs/rodent.lua", rarity(0))
load("/data/general/npcs/vermin.lua", rarity(2))
local Talents = require("engine.interface.ActorTalents")
newEntity{
define_as = "NECROMANCER",
type = "humanoid", subtype = "human",
display = "p", color=colors.DARK_GREY,
name = "Necromancer", color=colors.DARK_GREY,
desc = [[A Human dressed in black robes. He mumbles is a harsh tongue. He seems to think you are his slave.]],
level_range = {1, nil}, exp_worth = 1,
combat = { dam=resolvers.rngavg(5,12), atk=2, apr=6, physspeed=2 },
body = { INVEN = 10, MAINHAND=1, OFFHAND=1, BODY=1, CLOAK=1, QUIVER=1 },
resolvers.drops{chance=20, nb=1, {} },
resolvers.drops{chance=10, nb=1, {type="money"} },
lite = 2,
rank = 2,
size_category = 2,
open_door = true,
autolevel = "caster",
ai = "dumb_talented_simple", ai_state = { ai_move="move_dmap", talent_in=1, },
stats = { str=10, dex=8, mag=16, con=6 },
max_life = resolvers.rngavg(70,80), life_rating = 7,
resolvers.equip{
{type="weapon", subtype="staff", autoreq=true},
{type="armor", subtype="cloak", defined="CLOAK_DECEPTION", autoreq=true},
},
resolvers.talents{
[Talents.T_SOUL_ROT]=1,
},
die = function(self, src)
self.die = function() end
local Chat = require "engine.Chat"
local chat = Chat.new("undead-start-kill", self, game.player)
chat:invoke()
end,
}
newEntity{ base = "BASE_NPC_BONE_GIANT", define_as = "HALF_BONE_GIANT",
allow_infinite_dungeon = true,
desc = [[A towering creature, made from the bones of hundreds of dead bodies. It is covered by an unholy aura.
This specimen looks like it was hastily assembled and is not really complete yet.]],
resolvers.nice_tile{image="invis.png", add_mos = {{image="npc/undead_giant_half_finished_bone_giant.png", display_h=2, display_y=-1}}},
resolvers.talents{ [Talents.T_BONE_ARMOUR]=3, [Talents.T_THROW_BONES]=1, },
resolvers.drops{chance=100, nb=3, {tome_drops="boss"} },
dg
committed
resolvers.drops{chance=100, nb=1, {defined="WINTERTIDE_PHIAL", random_art_replace={chance=75}} },
ai = "tactical", ai_state = { talent_in=3, ai_move="move_astar", },
ai_tactic = resolvers.tactic"melee",
resolvers.inscriptions(1, "rune"),