dwarf.lua
2.89 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
-- ToME - Tales of Maj'Eyal
-- 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
---------------------------------------------------------
-- Dwarves --
---------------------------------------------------------
newBirthDescriptor{
type = "race",
name = "Dwarf",
desc = {
"Dwarves are a secretive people, hailing from their underground homes of the Iron Throne.",
"They are a sturdy race and are known for their masterwork, yet they are not well loved, having left other races to fend for themselves in past conflicts.",
},
descriptor_choices =
{
subrace =
{
__ALL__ = "disallow",
Dwarf = "allow",
},
},
copy = {
faction = "iron-throne",
type = "humanoid", subtype="dwarf",
default_wilderness = {28, 13},
starting_zone = "trollmire",
starting_quest = "start-allied",
starting_intro = "dwarf",
resolvers.inscription("INFUSION:_REGENERATION", {cooldown=10, dur=5, heal=60}),
resolvers.inscription("INFUSION:_WILD", {cooldown=12, what={poison=true}, dur=4, power=14}),
},
random_escort_possibilities = { {"trollmire", 2, 5}, {"ruins-kor-pul", 1, 4}, {"daikara", 1, 7}, {"old-forest", 1, 7}, {"dreadfell", 1, 8}, {"iron-throne", 1, 1}, },
}
---------------------------------------------------------
-- Dwarves --
---------------------------------------------------------
newBirthDescriptor
{
type = "subrace",
name = "Dwarf",
desc = {
"Dwarves are a secretive people, hailing from their underground homes of the Iron Throne.",
"They are a sturdy race and are known for their masterwork, yet they are not well loved, having left other races to fend for themselves in past conflicts.",
"They possess the #GOLD#Resilience of the Dwarves#WHITE# which allows them to increase their armour, physical and spell saves for a few turns.",
"#GOLD#Stats modifiers:",
"#LIGHT_BLUE# * +4 Strength, -2 Dexterity, +3 Constitution",
"#LIGHT_BLUE# * -2 Magic, +3 Willpower, +0 Cunning",
"#GOLD#Life per levels:#LIGHT_BLUE# 12",
"#GOLD#Experience penality:#LIGHT_BLUE# 25%",
},
inc_stats = { str=4, con=3, wil=3, mag=-2, dex=-2 },
talents = {
[ActorTalents.T_DWARF_RESILIENCE]=1,
},
copy = {
life_rating=12,
},
experience = 1.25,
}