diff --git a/game/modules/tome/data/birth/races/human.lua b/game/modules/tome/data/birth/races/human.lua
index 963dd28f606cd2702d232106088ca24407f7bc25..a63a213922fe0ee0b960bd6fe3b581993496d76d 100644
--- a/game/modules/tome/data/birth/races/human.lua
+++ b/game/modules/tome/data/birth/races/human.lua
@@ -74,6 +74,7 @@ newBirthDescriptor
 	},
 	inc_stats = { str=1, mag=1, dex=1, wil=1 },
 	experience = 1.15,
+	talents_types = { ["race/higher"]={true, 0} },
 	talents = {
 		[ActorTalents.T_HIGHER_HEAL]=1,
 	},
diff --git a/game/modules/tome/data/talents/misc/misc.lua b/game/modules/tome/data/talents/misc/misc.lua
index 0c46c28bd49f5d97da76d5b7cee43f34862a3759..405fe12905cb48fa06030d212ae9be71cfe13aae 100644
--- a/game/modules/tome/data/talents/misc/misc.lua
+++ b/game/modules/tome/data/talents/misc/misc.lua
@@ -27,6 +27,7 @@ newTalentType{ is_spell=true, type="inscriptions/taints", name = "taints", hide
 -- Load other misc things
 load("/data/talents/misc/inscriptions.lua")
 load("/data/talents/misc/npcs.lua")
+load("/data/talents/misc/races.lua")
 
 -- Default melee attack
 newTalent{
@@ -201,188 +202,3 @@ newTalent{
 	Nobody must learn about this spell and so it should never be used while seen by any creatures.
 	The spell will take time to activate. You must be out of sight of any creature when you cast it and when the teleportation takes effect.]]
 }
-
--- Highers's power, a "weak" regeneration
-newTalent{
-	short_name = "HIGHER_HEAL",
-	name = "Gift of the Pureborn",
-	type = {"base/race", 1},
-	no_energy = true,
-	cooldown = 50,
-	tactical = { HEAL = 2 },
-	action = function(self, t)
-		self:setEffect(self.EFF_REGENERATION, 10, {power=5 + self:getWil() * 0.5})
-		return true
-	end,
-	info = function(self)
-		return ([[Call upon the gift of the pureborn to regenerate your body for %d life every turn for 10 turns.
-		The life healed will increase with the Willpower stat]]):format(5 + self:getWil() * 0.5)
-	end,
-}
-
--- Shaloren's power, a temporary speedup
-newTalent{
-	short_name = "SHALOREN_SPEED",
-	name = "Grace of the Eternals",
-	type = {"base/race", 1},
-	no_energy = true,
-	cooldown = 50,
-	tactical = { DEFEND = 1 },
-	action = function(self, t)
-		local power = 0.1 + self:getDex() / 210
-		self:setEffect(self.EFF_SPEED, 8, {power=1 - 1 / (1 + power)})
-		return true
-	end,
-	info = function(self)
-		return ([[Call upon the grace of the Eternals to increase your general speed by %d%% for 8 turns.
-		The speed bonus will increase with the Dexterity stat]]):format((0.1 + self:getDex() / 210) * 100)
-	end,
-}
-
--- Dwarf's power, a temporary stone shield
-newTalent{
-	short_name = "DWARF_RESILIENCE",
-	name = "Resilience of the Dwarves",
-	type = {"base/race", 1},
-	no_energy = true,
-	cooldown = 50,
-	tactical = { DEFEND = 2 },
-	action = function(self, t)
-		self:setEffect(self.EFF_DWARVEN_RESILIENCE, 8, {
-			armor=5 + self:getCon() / 5,
-			physical=10 + self:getCon() / 5,
-			spell=10 + self:getCon() / 5,
-		})
-		return true
-	end,
-	info = function(self)
-		return ([[Call upon the legendary resilience of the Dwarven race to increase your armor(+%d), spell(+%d) and physical(+%d) saves for 8 turns.
-		The bonus will increase with the Constitution stat]]):format(5 + self:getCon() / 5, 10 + self:getCon() / 5, 10 + self:getCon() / 5)
-	end,
-}
-
--- Halflings's power, temporary crit bonus
-newTalent{
-	short_name = "HALFLING_LUCK",
-	name = "Luck of the Little Folk",
-	type = {"base/race", 1},
-	no_energy = true,
-	cooldown = 50,
-	tactical = { ATTACK = 2 },
-	action = function(self, t)
-		self:setEffect(self.EFF_HALFLING_LUCK, 5, {
-			physical=10 + self:getCun() / 2,
-			spell=10 + self:getCun() / 2,
-		})
-		return true
-	end,
-	info = function(self)
-		return ([[Call upon the luck and cunning of the Little Folk to increase your physical and spell critical strike chance by %d%% for 5 turns.
-		The bonus will increase with the Cunning stat]]):format(10 + self:getCun() / 5, 10 + self:getCun() / 5)
-	end,
-}
-
--- Thaloren's power: temporary damage increase and damage reduction
-newTalent{
-	short_name = "THALOREN_WRATH",
-	name = "Wrath of the Eternals",
-	type = {"base/race", 1},
-	no_energy = true,
-	cooldown = 50,
-	tactical = { ATTACK = 1, DEFEND = 1 },
-	action = function(self, t)
-		self:setEffect(self.EFF_ETERNAL_WRATH, 5, {power=7 + self:getWil(10)})
-		return true
-	end,
-	info = function(self)
-		return ([[Call upon the power of the Eternals, increasing all damage by %d%% and reducing all damage taken by %d%% for 5 turns.
-		The bonus will increase with the Willpower stat]]):format(7 + self:getWil(10), 7 + self:getWil(10))
-	end,
-}
-
--- Orc's power: temporary damage increase
-newTalent{
-	short_name = "ORC_FURY",
-	name = "Orcish Fury",
-	type = {"base/race", 1},
-	no_energy = true,
-	cooldown = 50,
-	tactical = { ATTACK = 2 },
-	action = function(self, t)
-		self:setEffect(self.EFF_ORC_FURY, 5, {power=10 + self:getWil(20)})
-		return true
-	end,
-	info = function(self)
-		return ([[Summons your lust for blood and destruction, increasing all damage by %d%% for 5 turns.
-		The bonus will increase with the Willpower stat]]):format(10 + self:getWil(20))
-	end,
-}
-
--- Yeek's power: temporary damage increase
-newTalent{
-	short_name = "YEEK_WILL",
-	name = "Dominant Will",
-	type = {"base/race", 1},
-	no_energy = true,
-	cooldown = 50,
-	range = 4,
-	no_npc_use = true,
-	action = function(self, t)
-		local tg = {type="hit", range=self:getTalentRange(t), talent=t}
-		local x, y = self:getTarget(tg)
-		if not x or not y then return nil end
-		self:project(tg, x, y, function(px, py)
-			local target = game.level.map(px, py, Map.ACTOR)
-			if not target then return end
-			if not target:canBe("instakill") or target.rank > 2 or target.undead or not target:checkHit(self:getWil(20) + self.level * 1.5, target.level) then
-				game.logSeen(target, "%s resists the mental assault!", target.name:capitalize())
-				return
-			end
-			target:setEffect(target.EFF_DOMINANT_WILL, 4 + self:getWil(10), {src=self})
-		end)
-		return true
-	end,
-	info = function(self)
-		return ([[Shatters the mind of your victim, giving your full control over its actions for %s turns.
-		When the effect ends you pull out your mind and the victim's body colapses dead.
-		This effect does not work on elite or undeads.
-		The duration will increase with the Willpower stat]]):format(4 + self:getWil(10))
-	end,
-}
-
--- Yeek's power: ID
-newTalent{
-	short_name = "YEEK_ID",
-	name = "Knowledge of the Way",
-	type = {"base/race", 1},
-	no_npc_use = true,
-	on_learn = function(self, t) self.auto_id = 2 end,
-	action = function(self, t)
-		local Chat = require("engine.Chat")
-		local chat = Chat.new("elisa-orb-scrying", {name="The Way"}, self, {version="yeek"})
-		chat:invoke()
-		return true
-	end,
-	info = function(self)
-		return ([[You merge your mind with the rest of the Way for a brief moment, the sum of all yeek knowledge gathers in your mind
-		and allows you to identify any item you could not recognize yourself.]])
-	end,
-}
-
--- Undeads's power: ID
-newTalent{
-	short_name = "UNDEAD_ID",
-	name = "Knowledge of the Past",
-	type = {"base/race", 1},
-	no_npc_use = true,
-	on_learn = function(self, t) self.auto_id = 2 end,
-	action = function(self, t)
-		local Chat = require("engine.Chat")
-		local chat = Chat.new("elisa-orb-scrying", {name="Past memories"}, self, {version="undead"})
-		chat:invoke()
-		return true
-	end,
-	info = function(self)
-		return ([[You concentrate for a moment to recall some of your memories as a living being and look for knowledge to identify rare objects.]])
-	end,
-}
diff --git a/game/modules/tome/data/talents/misc/races.lua b/game/modules/tome/data/talents/misc/races.lua
new file mode 100644
index 0000000000000000000000000000000000000000..d56f8375436a81e7fde167de4e2be1e1bf07cec5
--- /dev/null
+++ b/game/modules/tome/data/talents/misc/races.lua
@@ -0,0 +1,240 @@
+-- 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
+
+-- Generic requires for racial based on talent level
+racial_req1 = {
+	level = function(level) return 0 + (level-1)  end,
+}
+racial_req2 = {
+	level = function(level) return 4 + (level-1)  end,
+}
+racial_req3 = {
+	level = function(level) return 8 + (level-1)  end,
+}
+racial_req4 = {
+	level = function(level) return 12 + (level-1)  end,
+}
+
+------------------------------------------------------------------
+-- Highers's powers
+------------------------------------------------------------------
+newTalentType{ type="race/higher", name = "higher", generic = true, description = "The various racial bonuses a character can have." }
+
+newTalent{
+	short_name = "HIGHER_HEAL",
+	name = "Gift of the Pureborn",
+	type = {"race/higher", 1},
+	require = racial_req1,
+	points = 5,
+	no_energy = true,
+	cooldown = function(self, t) return 50 - self:getTalentLevel(t) * 5 end,
+	tactical = { HEAL = 2 },
+	action = function(self, t)
+		self:setEffect(self.EFF_REGENERATION, 10, {power=5 + self:getWil() * 0.5})
+		return true
+	end,
+	info = function(self)
+		return ([[Call upon the gift of the pureborn to regenerate your body for %d life every turn for 10 turns.
+		The life healed will increase with the Willpower stat]]):format(5 + self:getWil() * 0.6)
+	end,
+}
+
+newTalent{
+	name = "Overseer of Nations",
+	type = {"race/higher", 2},
+	require = racial_req2,
+	points = 5,
+	mode = "passive",
+	on_learn = function(self, t)
+		self.sight = self.sight + 1
+	end,
+	on_unlearn = function(self, t)
+		self.sight = self.sight - 1
+	end,
+	info = function(self)
+		return ([[]]):format(5 + self:getWil() * 0.6)
+	end,
+}
+
+------------------------------------------------------------------
+-- Shaloren's powers
+------------------------------------------------------------------
+newTalentType{ type="race/shalore", name = "shalore", generic = true, description = "The various racial bonuses a character can have." }
+newTalent{
+	short_name = "SHALOREN_SPEED",
+	name = "Grace of the Eternals",
+	type = {"race/shalore", 1},
+	no_energy = true,
+	cooldown = 50,
+	tactical = { DEFEND = 1 },
+	action = function(self, t)
+		local power = 0.1 + self:getDex() / 210
+		self:setEffect(self.EFF_SPEED, 8, {power=1 - 1 / (1 + power)})
+		return true
+	end,
+	info = function(self)
+		return ([[Call upon the grace of the Eternals to increase your general speed by %d%% for 8 turns.
+		The speed bonus will increase with the Dexterity stat]]):format((0.1 + self:getDex() / 210) * 100)
+	end,
+}
+
+------------------------------------------------------------------
+-- Dwarvess powers
+------------------------------------------------------------------
+newTalentType{ type="race/dwarf", name = "dwarf", generic = true, description = "The various racial bonuses a character can have." }
+newTalent{
+	short_name = "DWARF_RESILIENCE",
+	name = "Resilience of the Dwarves",
+	type = {"race/dwarf", 1},
+	no_energy = true,
+	cooldown = 50,
+	tactical = { DEFEND = 2 },
+	action = function(self, t)
+		self:setEffect(self.EFF_DWARVEN_RESILIENCE, 8, {
+			armor=5 + self:getCon() / 5,
+			physical=10 + self:getCon() / 5,
+			spell=10 + self:getCon() / 5,
+		})
+		return true
+	end,
+	info = function(self)
+		return ([[Call upon the legendary resilience of the Dwarven race to increase your armor(+%d), spell(+%d) and physical(+%d) saves for 8 turns.
+		The bonus will increase with the Constitution stat]]):format(5 + self:getCon() / 5, 10 + self:getCon() / 5, 10 + self:getCon() / 5)
+	end,
+}
+
+------------------------------------------------------------------
+-- Halflings powers
+------------------------------------------------------------------
+newTalentType{ type="race/halfling", name = "halfling", generic = true, description = "The various racial bonuses a character can have." }
+newTalent{
+	short_name = "HALFLING_LUCK",
+	name = "Luck of the Little Folk",
+	type = {"race/halfling", 1},
+	no_energy = true,
+	cooldown = 50,
+	tactical = { ATTACK = 2 },
+	action = function(self, t)
+		self:setEffect(self.EFF_HALFLING_LUCK, 5, {
+			physical=10 + self:getCun() / 2,
+			spell=10 + self:getCun() / 2,
+		})
+		return true
+	end,
+	info = function(self)
+		return ([[Call upon the luck and cunning of the Little Folk to increase your physical and spell critical strike chance by %d%% for 5 turns.
+		The bonus will increase with the Cunning stat]]):format(10 + self:getCun() / 5, 10 + self:getCun() / 5)
+	end,
+}
+
+------------------------------------------------------------------
+-- Thaloren powers
+------------------------------------------------------------------
+newTalentType{ type="race/thalore", name = "thalore", generic = true, description = "The various racial bonuses a character can have." }
+newTalent{
+	short_name = "THALOREN_WRATH",
+	name = "Wrath of the Eternals",
+	type = {"race/thalore", 1},
+	no_energy = true,
+	cooldown = 50,
+	tactical = { ATTACK = 1, DEFEND = 1 },
+	action = function(self, t)
+		self:setEffect(self.EFF_ETERNAL_WRATH, 5, {power=7 + self:getWil(10)})
+		return true
+	end,
+	info = function(self)
+		return ([[Call upon the power of the Eternals, increasing all damage by %d%% and reducing all damage taken by %d%% for 5 turns.
+		The bonus will increase with the Willpower stat]]):format(7 + self:getWil(10), 7 + self:getWil(10))
+	end,
+}
+
+------------------------------------------------------------------
+-- Orcs powers
+------------------------------------------------------------------
+newTalentType{ type="race/orc", name = "orc", generic = true, description = "The various racial bonuses a character can have." }
+newTalent{
+	short_name = "ORC_FURY",
+	name = "Orcish Fury",
+	type = {"race/orc", 1},
+	no_energy = true,
+	cooldown = 50,
+	tactical = { ATTACK = 2 },
+	action = function(self, t)
+		self:setEffect(self.EFF_ORC_FURY, 5, {power=10 + self:getWil(20)})
+		return true
+	end,
+	info = function(self)
+		return ([[Summons your lust for blood and destruction, increasing all damage by %d%% for 5 turns.
+		The bonus will increase with the Willpower stat]]):format(10 + self:getWil(20))
+	end,
+}
+
+------------------------------------------------------------------
+-- Yeeks powers
+------------------------------------------------------------------
+newTalentType{ type="race/yeek", name = "yeek", generic = true, description = "The various racial bonuses a character can have." }
+newTalent{
+	short_name = "YEEK_WILL",
+	name = "Dominant Will",
+	type = {"race/yeek", 1},
+	no_energy = true,
+	cooldown = 50,
+	range = 4,
+	no_npc_use = true,
+	action = function(self, t)
+		local tg = {type="hit", range=self:getTalentRange(t), talent=t}
+		local x, y = self:getTarget(tg)
+		if not x or not y then return nil end
+		self:project(tg, x, y, function(px, py)
+			local target = game.level.map(px, py, Map.ACTOR)
+			if not target then return end
+			if not target:canBe("instakill") or target.rank > 2 or target.undead or not target:checkHit(self:getWil(20) + self.level * 1.5, target.level) then
+				game.logSeen(target, "%s resists the mental assault!", target.name:capitalize())
+				return
+			end
+			target:setEffect(target.EFF_DOMINANT_WILL, 4 + self:getWil(10), {src=self})
+		end)
+		return true
+	end,
+	info = function(self)
+		return ([[Shatters the mind of your victim, giving your full control over its actions for %s turns.
+		When the effect ends you pull out your mind and the victim's body colapses dead.
+		This effect does not work on elite or undeads.
+		The duration will increase with the Willpower stat]]):format(4 + self:getWil(10))
+	end,
+}
+
+-- Yeek's power: ID
+newTalent{
+	short_name = "YEEK_ID",
+	name = "Knowledge of the Way",
+	type = {"race/yeek", 1},
+	no_npc_use = true,
+	on_learn = function(self, t) self.auto_id = 2 end,
+	action = function(self, t)
+		local Chat = require("engine.Chat")
+		local chat = Chat.new("elisa-orb-scrying", {name="The Way"}, self, {version="yeek"})
+		chat:invoke()
+		return true
+	end,
+	info = function(self)
+		return ([[You merge your mind with the rest of the Way for a brief moment, the sum of all yeek knowledge gathers in your mind
+		and allows you to identify any item you could not recognize yourself.]])
+	end,
+}
diff --git a/game/modules/tome/data/talents/undeads/undeads.lua b/game/modules/tome/data/talents/undeads/undeads.lua
index 64a49928b34472c4663350f23540002a7579254b..9f1d7613e267aa521b0a968b836294260f541695 100644
--- a/game/modules/tome/data/talents/undeads/undeads.lua
+++ b/game/modules/tome/data/talents/undeads/undeads.lua
@@ -18,10 +18,11 @@
 -- darkgod@te4.org
 
 -- Undead talents
-newTalentType{ type="undead/ghoul", name = "ghoul", generic = true, description = "Ghouls' innate abilities." }
-newTalentType{ type="undead/skeleton", name = "skeleton", generic = true, description = "Skeletons' innate abilities." }
-newTalentType{ type="undead/vampire", name = "vampire", generic = true, description = "Vampires' innate abilities." }
-newTalentType{ type="undead/lich", name = "lich", generic = true, description = "Liches' innate abilities." }
+newTalentType{ type="undead/base", name = "base", generic = true, description = "Undead's innate abilities." }
+newTalentType{ type="undead/ghoul", name = "ghoul", generic = true, description = "Ghoul's innate abilities." }
+newTalentType{ type="undead/skeleton", name = "skeleton", generic = true, description = "Skeleton's innate abilities." }
+newTalentType{ type="undead/vampire", name = "vampire", generic = true, description = "Vampire's innate abilities." }
+newTalentType{ type="undead/lich", name = "lich", generic = true, description = "Liches innate abilities." }
 
 -- Generic requires for undeads based on talent level
 undeads_req1 = {
@@ -42,3 +43,22 @@ undeads_req5 = {
 
 load("/data/talents/undeads/ghoul.lua")
 load("/data/talents/undeads/skeleton.lua")
+
+
+-- Undeads's power: ID
+newTalent{
+	short_name = "UNDEAD_ID",
+	name = "Knowledge of the Past",
+	type = {"undead/base", 1},
+	no_npc_use = true,
+	on_learn = function(self, t) self.auto_id = 2 end,
+	action = function(self, t)
+		local Chat = require("engine.Chat")
+		local chat = Chat.new("elisa-orb-scrying", {name="Past memories"}, self, {version="undead"})
+		chat:invoke()
+		return true
+	end,
+	info = function(self)
+		return ([[You concentrate for a moment to recall some of your memories as a living being and look for knowledge to identify rare objects.]])
+	end,
+}