Skip to content
Snippets Groups Projects
descriptors.lua 1.48 KiB
Newer Older
dg's avatar
dg committed
newBirthDescriptor{
	type = "base",
	name = "base",
	desc = {
	},
dg's avatar
dg committed
	descriptor_choices =
	{
		race =
		{
			__ALL__ = "never",
			Human = "allow",
			Elf = "allow",
			Dwarf = "allow",
			Hobbit = "allow",
--			Orc = config.settings.tome.allow_evil and "allow" or "never",
--			Troll = config.settings.tome.allow_evil and "allow" or "never",
--			Spider = config.settings.tome.allow_evil and "allow" or "never",
		},
	},
dg's avatar
dg committed
	talents = {},
	experience = 1.0,
dg's avatar
dg committed
	body = { INVEN = 1000, MAINHAND=1, OFFHAND=1, BODY=1, QUIVER=1 },
dg's avatar
dg committed

	copy = {
dg's avatar
dg committed
		money = 10,
dg's avatar
dg committed
		resolvers.equip{ id=true,
dg's avatar
dg committed
			{type="lite", subtype="lite", name="brass lantern"},
		},
dg's avatar
dg committed
		resolvers.inventory{ id=true,
dg's avatar
dg committed
			{type="potion", subtype="potion", name="potion of lesser healing", ego_chance=-1000},
			{type="potion", subtype="potion", name="potion of lesser healing", ego_chance=-1000},
			{type="potion", subtype="potion", name="potion of lesser healing", ego_chance=-1000},
dg's avatar
dg committed
		},
dg's avatar
dg committed
		resolvers.generic(function(e)
			e.hotkey[9] = {"inventory", "potion of lesser healing"}
		end),
dg's avatar
dg committed
	},
dg's avatar
dg committed
}

dg's avatar
dg committed
-- Races
dg's avatar
dg committed
load("/data/birth/races/human.lua")
load("/data/birth/races/elf.lua")
load("/data/birth/races/hobbit.lua")
load("/data/birth/races/dwarf.lua")
dg's avatar
dg committed
load("/data/birth/races/orc.lua")
load("/data/birth/races/troll.lua")
--load("/data/birth/races/spider.lua")
dg's avatar
dg committed

-- Sexes
dg's avatar
dg committed
load("/data/birth/sexes.lua")
dg's avatar
dg committed

-- Classes
dg's avatar
dg committed
load("/data/birth/classes/warrior.lua")
load("/data/birth/classes/archer.lua")
load("/data/birth/classes/rogue.lua")
load("/data/birth/classes/mage.lua")