Skip to content
Snippets Groups Projects
descriptors.lua 4.03 KiB
Newer Older
dg's avatar
dg committed
-- ToME - Tales of Middle-Earth
-- 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

dg's avatar
dg committed
setAuto("subclass", false)
setAuto("subrace", false)
dg's avatar
dg committed

dg's avatar
dg committed
newBirthDescriptor{
	type = "base",
	name = "base",
	desc = {
	},
dg's avatar
dg committed
	descriptor_choices =
	{
dg's avatar
dg committed
		world =
dg's avatar
dg committed
		{
dg's avatar
dg committed
			Arda = "allow",
dg's avatar
dg committed
			["Spydrë"] = function() return profile.mod.allow_build.world_spydre and "allow" or "never" end,
dg's avatar
dg committed
		},
dg's avatar
dg committed
		subclass =
		{
			-- Nobdoy can be a sun paladin but humans & elves
			['Sun Paladin'] = "never",
		},
dg's avatar
dg committed
	},
dg's avatar
dg committed
	talents = {},
	experience = 1.0,
	body = { INVEN = 1000, QS_MAINHAND = 1, QS_OFFHAND = 1, MAINHAND = 1, OFFHAND = 1, FINGER = 2, NECK = 1, LITE = 1, BODY = 1, HEAD = 1, HANDS = 1, FEET = 1, TOOL = 1, QUIVER = 1 },
dg's avatar
dg committed

	copy = {
dg's avatar
dg committed
		-- Mages are unheard of at first, nobody but them regenerates mana
		mana_rating = 6,
		mana_regen = 0,

dg's avatar
dg committed
		max_level = 50,
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},
			{type="potion", subtype="potion", name="potion of cure poison", ego_chance=-1000},
			{type="potion", subtype="potion", name="potion of cure poison", 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
}

--------------- Difficulties
newBirthDescriptor{
	type = "difficulty",
	name = "Easy",
	desc =
	{
		"Easy game setting",
		"All damage done to the player reduced by 20%",
		"All healing for the player increased by 10%",
dg's avatar
dg committed
		"No achievements possible.",
	},
	copy = { resolvers.generic(function() game.difficulty = game.DIFFICULTY_EASY end) },
}
newBirthDescriptor{
	type = "difficulty",
	name = "Normal",
	selection_default = true,
	desc =
	{
		"Normal game setting",
		"No changes to the rules.",
	},
	copy = { resolvers.generic(function() game.difficulty = game.DIFFICULTY_NORMAL end) },
}
newBirthDescriptor{
	type = "difficulty",
	name = "Nightmare",
	desc =
	{
		"Hard game setting",
		"All damage done to the player increased by 20%",
		"All healing for the player decreased by 10%",
	},
	copy = { resolvers.generic(function() game.difficulty = game.DIFFICULTY_NIGHTMARE end) },
}
newBirthDescriptor{
	type = "difficulty",
	name = "Insane",
	desc =
	{
dg's avatar
dg committed
		"Absolutely unfair game setting",
		"All damage done to the player increased by 20%",
		"All damage done by the player decreased by 20%",
		"All healing for the player decreased by 20%",
dg's avatar
dg committed
		"Player rank is normal instead of elite",
dg's avatar
dg committed
	copy = { resolvers.generic(function() game.difficulty = game.DIFFICULTY_INSANE end), rank=2 },
dg's avatar
dg committed
-- Worlds
load("/data/birth/worlds.lua")

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
load("/data/birth/races/undead.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")
dg's avatar
dg committed
load("/data/birth/classes/wilder.lua")
load("/data/birth/classes/divine.lua")