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

unused - yet

git-svn-id: http://svn.net-core.org/repos/t-engine4@4634 51575b47-30f0-44d4-a5cc-537603b46e54
parent 62b3ff9e
No related branches found
No related tags found
No related merge requests found
-- ToME - Tales of Maj'Eyal
-- Copyright (C) 2009, 2010, 2011 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_CAT",
display = "c",
stats = { str=10, dex=20, mag=3, cun=18, con=6 },
autolevel = "rogue",
size_category = 2,
rank = 2,
global_speed_base = 1.25,
type = "animal", subtype="feline",
ai = "dumb_talented_simple", ai_state = { ai_move="move_dmap", talent_in=2, },
combat_physspeed = 2, -- Double attack per turn
resolvers.sustains_at_birth(),
}
newEntity{ base = "BASE_NPC_CAT",
name = "snow cat", color=colors.GRAY,
desc = [[A large cat with a grey fur matted with black.]],
level_range = {3, nil}, exp_worth = 1,
rarity = 4,
max_life = resolvers.rngavg(40,80),
resists = { [DamageType.COLD] = 50 },
combat_armor = 0, combat_def = 8,
combat = { dam=resolvers.levelup(5, 1, 0.7), atk=12, apr=15, dammod={str=0.5, dex=0.5}},
resolvers.talents{
[Talents.T_STEALTH]={base=1, every=6, max=5},
[Talents.T_RUSH]={base=1, every=8, max=3},
[Talents.T_LETHALITY]={base=1, every=8, max=5},
},
}
newEntity{ base = "BASE_NPC_CAT",
name = "panther", color=colors.BLACK,
desc = [[A large black cat, slender and muscular.]],
level_range = {8, nil}, exp_worth = 1,
rarity = 4,
size_category=3,
max_life = resolvers.rngavg(60,100),
combat_armor = 3, combat_def = 8,
combat = { dam=resolvers.levelup(18, 1, 1), atk=12, apr=20, dammod={str=0.5, dex=0.5}},
resolvers.talents{
[Talents.T_STEALTH]={base=1, every=6, max=5},
[Talents.T_RUSH]={base=1, every=8, max=3},
[Talents.T_LETHALITY]={base=1, every=8, max=5},
},
}
newEntity{ base = "BASE_NPC_CAT",
name = "tiger", color=colors.YELLOW,
desc = [[A truly magnificent beast, with fur striped black and yellow.]],
level_range = {12, nil}, exp_worth = 1,
rarity = 4,
size_category=4,
max_life = resolvers.rngavg(70,110),
combat_armor = 3, combat_def = 8,
combat = { dam=resolvers.levelup(25, 1, 1), atk=12, apr=25, dammod={str=0.5, dex=0.5}},
resolvers.talents{
[Talents.T_STEALTH]={base=2, every=6, max=5},
[Talents.T_RUSH]={base=2, every=8, max=5},
[Talents.T_LETHALITY]={base=2, every=8, max=5},
[Talents.T_HIDE_IN_PLAIN_SIGHT]={base=10, every=8, max=5},
},
}
newEntity{ base = "BASE_NPC_CAT",
name = "sabertooth tiger", color=colors.YELLOW,
desc = [[This cat is simply enormous, and has fangs with the size and sharpness of short swords.]],
level_range = {16, nil}, exp_worth = 1,
rarity = 4,
size_category=4,
max_life = resolvers.rngavg(80,120),
combat_armor = 3, combat_def = 8,
combat = { dam=resolvers.levelup(28, 1, 1), atk=12, apr=35, dammod={str=0.5, dex=0.5}},
resolvers.talents{
[Talents.T_STEALTH]={base=3, every=6, max=5},
[Talents.T_RUSH]={base=3, every=8, max=5},
[Talents.T_LETHALITY]={base=3, every=8, max=5},
[Talents.T_CRIPPLE]={base=3, every=8, max=5},
[Talents.T_DEADLY_STRIKES]={base=3, every=8, max=5},
},
}
game/modules/tome/data/gfx/shockbolt/npc/animal_feline_panther.png

6.84 KiB

game/modules/tome/data/gfx/shockbolt/npc/animal_feline_sabertooth_tiger.png

10.2 KiB

game/modules/tome/data/gfx/shockbolt/npc/animal_feline_tiger.png

9.2 KiB

......@@ -17,4 +17,4 @@
-- Nicolas Casalini "DarkGod"
-- darkgod@te4.org
load("/data/general/npcs/ant.lua", rarity(0))
load("/data/general/npcs/feline.lua", rarity(0))
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