Here is a screenshot of what I've got so far.

Currently it handles name, description, and runes/inscriptions. However it only handles those five so far. The file it generates with that is here.
Code: Select all
-- 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
newBirthDescriptor{
type = "race",
name = "Construct",
desc = {
"An unatural being created with magic.",
"The most common are golems, but they can vary greatly in shape and form.",
},
descriptor_choices =
{
subrace =
{
__ALL__ = "disallow",
},
},
talents = {},
copy = {
faction = "allied-kingdoms",
type = "humanoid", subtype = "human",
resolvers.inscription("RUNE:_MANASURGE", {cooldown=25, dur=10, mana=620}),
resolvers.inscription("RUNE:_SHIELDING", {cooldown=14, dur=5, power=100}),
resolvers.inscription("RUNE:_PHASE_DOOR", {cooldown=7, range=10}),
resolvers.inventory{ id=true, {defined="ORB_SCRYING"} },
resolvers.generic(function(e) e.hotkey[10] = {"inventory", "Orb of Scrying"} end),
},
random_escort_possibilities = { {"trollmire", 2, 3}, {"ruins-kor-pul", 1, 2}, {"daikara", 1, 3}, {"old-forest", 1, 5}, {"dreadfell", 1, 8}, {"reknor", 1, 2}, },
}
I can post the source if anyone cares, it's written in VB .NET using visual studio 2008.