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

Achievements are sorted by name

Dunadan are the first subrace of humans in the list, to orient newbies to it


git-svn-id: http://svn.net-core.org/repos/t-engine4@1296 51575b47-30f0-44d4-a5cc-537603b46e54
parent e9558ffb
No related branches found
No related tags found
No related merge requests found
......@@ -61,7 +61,7 @@ function _M:generateList()
list[#list+1] = { name=a.name, desc=a.desc, when=data.when, who=data.who, order=a.order }
i = i + 1
end
table.sort(list, function(a, b) return a.order < b.order end)
table.sort(list, function(a, b) return a.name < b.name end)
self.list = list
end
......
......@@ -56,39 +56,41 @@ newBirthDescriptor{
newBirthDescriptor
{
type = "subrace",
name = "Bree-man",
name = "Dúnadan",
desc = {
"Humans hailing from the northen town of Bree. A common kind of man, unremarkable in all respects.",
"The greatest of the Edain, humans in all respects but stronger, smarter, and wiser.",
"They possess the Gift of Kings which allows them to regenerate their wounds once in a while.",
},
stats = { str=1, cun=1, dex=1, wil=1 },
experience = 1.25,
talents = {
[ActorTalents.T_IMPROVED_HEALTH_I]=1,
[ActorTalents.T_DUNADAN_HEAL]=1,
},
copy = {
default_wilderness = {43, 18},
starting_zone = "trollshaws",
starting_quest = "start-dunadan",
starting_intro = "bree-man",
starting_intro = "dunadan",
},
}
newBirthDescriptor
{
type = "subrace",
name = "Dúnadan",
name = "Bree-man",
desc = {
"The greatest of the Edain, humans in all respects but stronger, smarter, and wiser.",
"They possess the Gift of Kings which allows them to regenerate their wounds once in a while.",
},
stats = { str=1, cun=1, dex=1, wil=1 },
experience = 1.25,
talents = {
[ActorTalents.T_IMPROVED_HEALTH_I]=1,
[ActorTalents.T_DUNADAN_HEAL]=1,
"Humans hailing from the northen town of Bree. A common kind of man, unremarkable in all respects.",
},
copy = {
default_wilderness = {43, 18},
starting_zone = "trollshaws",
starting_quest = "start-dunadan",
starting_intro = "dunadan",
starting_intro = "bree-man",
},
}
--[[
newBirthDescriptor
{
......
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