Skip to content
Snippets Groups Projects
Commit 8f60e201 authored by dg's avatar dg
Browse files

new monsters: ritchs

git-svn-id: http://svn.net-core.org/repos/t-engine4@852 51575b47-30f0-44d4-a5cc-537603b46e54
parent 1a449519
No related branches found
No related tags found
No related merge requests found
......@@ -549,7 +549,7 @@ function _M:setupCommands()
[{"_d","ctrl"}] = function()
if config.settings.tome.cheat then
self.player:forceLevelup(50)
self:changeLevel(1, "rak-shor-pride")
self:changeLevel(1, "eruan")
end
end,
}
......
-- ToME - Tales of Middle-Earth
-- Copyright (C) 2009, 2010 Nicolas Casalini
--
-- 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
local Talents = require("engine.interface.ActorTalents")
newEntity{
define_as = "BASE_NPC_RITCH",
type = "insect", subtype = "ritch",
display = "I", color=colors.RED,
desc = [[Ritchs are giant insects native to the arid wastes of the southern parts of the Far East.
Vicous predators they inject corrupting diseases in their foes and they sharp claws cut through most armours.]],
combat = { dam=resolvers.rngavg(30,35), atk=16, apr=70, damtype=DamageType.BLIGHT, dammod={dex=1.2} },
body = { INVEN = 10, MAINHAND=1, OFFHAND=1, BODY=1 },
infravision = 20,
size_category = 1,
rank = 2,
autolevel = "slinger",
ai = "dumb_talented_simple", ai_state = { talent_in=3, },
energy = { mod=1.2 },
stats = { str=15, dex=15, mag=8, con=10 },
poison_immune = 0.5,
disease_immune = 0.5,
resists = { [DamageType.BLIGHT] = 20, [DamageType.FIRE] = 100 },
}
newEntity{ base = "BASE_NPC_RITCH",
name = "ritch larva", color=colors.DARK_RED,
level_range = {25, nil}, exp_worth = 1,
rarity = 4,
max_life = 50,
life_rating = 6,
rank = 1,
combat_armor = 5, combat_def = 5,
resolvers.talents{
[Talents.T_ROTTING_DISEASE]=3,
},
}
newEntity{ base = "BASE_NPC_RITCH",
name = "ritch hunter", color=colors.RED,
level_range = {30, nil}, exp_worth = 1,
rarity = 5,
max_life = 120,
life_rating = 10,
rank = 2,
combat_armor = 12, combat_def = 5,
resolvers.talents{
[Talents.T_ROTTING_DISEASE]=4,
[Talents.T_RUSH]=5,
[Talents.T_FLAME]=5,
},
}
newEntity{ base = "BASE_NPC_RITCH",
name = "ritch hive mother", color=colors.light_RED,
level_range = {32, nil}, exp_worth = 1,
rarity = 9,
max_life = 250,
life_rating = 12,
rank = 3,
size_category = 2,
combat_armor = 20, combat_def = 20,
make_escort = {
{type="insect", subtype="ritch", number=3, no_subescort=true},
},
summon = {
{type="insect", subtype="ritch", number=1, hasxp=false},
},
resolvers.talents{
[Talents.T_ROTTING_DISEASE]=5,
[Talents.T_FLAME]=5,
[Talents.T_SUMMON]=1,
},
}
......@@ -652,27 +652,6 @@ newEffect{
end,
}
newEffect{
name = "ROTTING_DISEASE",
desc = "Rotting Disease",
type = "disease",
status = "detrimental",
parameters = {},
on_gain = function(self, err) return "#Target# is afflicted by a rotting disease!" end,
on_lose = function(self, err) return "#Target# is free from the rotting disease." end,
-- Damage each turn
on_timeout = function(self, eff)
DamageType:get(DamageType.BLIGHT).projector(eff.src, self.x, self.y, DamageType.BLIGHT, eff.power)
end,
-- Lost of CON
activate = function(self, eff)
eff.tmpid = self:addTemporaryValue("inc_stats", {[Stats.STAT_CON] = eff.con})
end,
deactivate = function(self, eff)
self:removeTemporaryValue("inc_stats", eff.tmpid)
end,
}
newEffect{
name = "ROTTING_DISEASE",
desc = "Rotting Disease",
......@@ -687,7 +666,7 @@ newEffect{
end,
-- Lost of CON
activate = function(self, eff)
eff.tmpid = self:addTemporaryValue("inc_stats", {[Stats.STAT_CON] = -eff.con})
eff.tmpid = self:addTemporaryValue("inc_stats", {[Stats.STAT_CON] = eff.con})
end,
deactivate = function(self, eff)
self:removeTemporaryValue("inc_stats", eff.tmpid)
......
......@@ -18,6 +18,7 @@
-- darkgod@te4.org
load("/data/general/npcs/sandworm.lua")
load("/data/general/npcs/ritch.lua")
load("/data/general/npcs/orc.lua")
local Talents = require("engine.interface.ActorTalents")
......@@ -39,6 +40,7 @@ newEntity{ define_as = "SUN_PALADIN_GUREN",
move_others=true,
open_door = true,
invulnerable = 1,
autolevel = "warriormage",
ai = "dumb_talented_simple", ai_state = { talent_in=2, ai_move="move_astar", },
......
No preview for this file type
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