diff --git a/game/modules/tome/data/birth/descriptors.lua b/game/modules/tome/data/birth/descriptors.lua
index b7f8cf9916b00e02c10828e7ef1614829626c68d..1ddd6be2a9435f5016589f47e007a1985ac8a312 100644
--- a/game/modules/tome/data/birth/descriptors.lua
+++ b/game/modules/tome/data/birth/descriptors.lua
@@ -191,7 +191,7 @@ load("/data/birth/worlds.lua")
 load("/data/birth/races/tutorial.lua")
 load("/data/birth/races/human.lua")
 load("/data/birth/races/elf.lua")
-load("/data/birth/races/hobbit.lua")
+load("/data/birth/races/halfling.lua")
 load("/data/birth/races/dwarf.lua")
 load("/data/birth/races/orc.lua")
 load("/data/birth/races/troll.lua")
diff --git a/game/modules/tome/data/chats/derth-attack-over.lua b/game/modules/tome/data/chats/derth-attack-over.lua
index 216d5df1a9b5f06ae5291449557d3846bfa5120d..da200b80e3c3ab709e56efafc86671675602959c 100644
--- a/game/modules/tome/data/chats/derth-attack-over.lua
+++ b/game/modules/tome/data/chats/derth-attack-over.lua
@@ -18,7 +18,7 @@
 -- darkgod@te4.org
 
 newChat{ id="welcome",
-	text = [[#LIGHT_GREEN#*A hobbit comes forth from his hidding place.*#WHITE#
+	text = [[#LIGHT_GREEN#*A halfling comes forth from his hiding place.*#WHITE#
 You killed them all? Are we safe now? Oh please tell me this was a bad dream!]],
 	answers = {
 		{"Be at easy, I have dispatched those monstrosities. Do you know where they came from or what they wanted?", jump="quest"},
diff --git a/game/modules/tome/data/general/objects/egos/sling.lua b/game/modules/tome/data/general/objects/egos/sling.lua
index 9c33c958c4e49782511df89245e67bd365bfb16a..8ff9b7cc8f7530608f6415a3a29477988c797d73 100644
--- a/game/modules/tome/data/general/objects/egos/sling.lua
+++ b/game/modules/tome/data/general/objects/egos/sling.lua
@@ -77,7 +77,7 @@ newEntity{
 }
 
 newEntity{
-	name = "hobbit ", prefix=true, instant_resolve=true,
+	name = "halfling ", prefix=true, instant_resolve=true,
 	level_range = {30, 50},
 	greater_ego = true,
 	rarity = 24,
diff --git a/game/modules/tome/data/quests/escort-duty.lua b/game/modules/tome/data/quests/escort-duty.lua
index 9dc245ff3d2a2485109e0c965535c337324f0711..5d58cdbcd0ef66d6df763d2d1ea1274fb7a9393c 100644
--- a/game/modules/tome/data/quests/escort-duty.lua
+++ b/game/modules/tome/data/quests/escort-duty.lua
@@ -100,7 +100,7 @@ local possible_types = {
 		text = [[Please help me! I am afraid I lost myself in this place, I know there is a recall portal left around there by a friend, but I fought too many battles, I fear I will not make it. Would you help me?]],
 		actor = {
 			name = "%s, the repented thief",
-			type = "humanoid", subtype = "hobbit",
+			type = "humanoid", subtype = "halfling",
 			display = "@", color=colors.BLUE,
 			desc = [[He looks tired and wounded.]],
 			autolevel = "rogue",
diff --git a/game/modules/tome/data/quests/lightning-overload.lua b/game/modules/tome/data/quests/lightning-overload.lua
index 522596ebf655e3b98a3ef592df10b5c57eb87076..533cb91be45a9c760c2261b2b1e5a3c7935d798e 100644
--- a/game/modules/tome/data/quests/lightning-overload.lua
+++ b/game/modules/tome/data/quests/lightning-overload.lua
@@ -87,7 +87,7 @@ kill_one = function(self)
 
 	if self.kill_count >= self.max_count then
 		local Chat = require "engine.Chat"
-		local chat = Chat.new("derth-attack-over", {name="Scared hobbit"}, game.player)
+		local chat = Chat.new("derth-attack-over", {name="Scared halfling"}, game.player)
 		chat:invoke()
 	end
 end
diff --git a/game/modules/tome/data/talents/misc/misc.lua b/game/modules/tome/data/talents/misc/misc.lua
index d8e15d36c12926d8736a8dba474007b3cecfc91c..e11c59043fba002538d9f28e1b275961cfc52039 100644
--- a/game/modules/tome/data/talents/misc/misc.lua
+++ b/game/modules/tome/data/talents/misc/misc.lua
@@ -215,7 +215,7 @@ newTalent{
 	no_energy = true,
 	cooldown = 50,
 	action = function(self, t)
-		self:setEffect(self.EFF_HOBBIT_LUCK, 5, {
+		self:setEffect(self.EFF_HALFLING_LUCK, 5, {
 			physical=10 + self:getCun() / 2,
 			spell=10 + self:getCun() / 2,
 		})
diff --git a/game/modules/tome/data/timed_effects.lua b/game/modules/tome/data/timed_effects.lua
index ed8a228518dcb3d3dcd55423ee9c02065b93f472..ff18a3423d97025ecd196868315f76ad665c24b1 100644
--- a/game/modules/tome/data/timed_effects.lua
+++ b/game/modules/tome/data/timed_effects.lua
@@ -498,8 +498,8 @@ newEffect{
 }
 
 newEffect{
-	name = "HOBBIT_LUCK",
-	desc = "Hobbit's Luck",
+	name = "HALFLING_LUCK",
+	desc = "Halflings's Luck",
 	long_desc = function(self, eff) return ("The target luck and cunning combine to grant it %d%% more combat critical chances and %d%% more spell critical chances."):format(eff.physical, eff.spell) end,
 	type = "physical",
 	status = "beneficial",
diff --git a/game/modules/tome/data/zones/trollshaws/npcs.lua b/game/modules/tome/data/zones/trollshaws/npcs.lua
index 034f717132c6ada481aba8ed2989aa44dce8c850..d7a6d4dc89aaee6ab6f5b199464afa0c66f9bbdb 100644
--- a/game/modules/tome/data/zones/trollshaws/npcs.lua
+++ b/game/modules/tome/data/zones/trollshaws/npcs.lua
@@ -35,7 +35,7 @@ newEntity{ define_as = "TROLL_BILL",
 	type = "giant", subtype = "troll", unique = true,
 	name = "Bill the Stone Troll",
 	display = "T", color=colors.VIOLET, image="npc/troll_bill.png",
-	desc = [[Big, brawny, powerful and with a taste for hobbit. He has friends called Bert and Tom.
+	desc = [[Big, brawny, powerful and with a taste for halfling. He has friends called Bert and Tom.
 	He is wielding a small tree trunk and towering toward you.
 	He should have turned to stone long ago, how could he still walk?!]],
 	level_range = {7, 20}, exp_worth = 2,