From fe68c05dd0d6b9c130e29b889b87e03a478e1f00 Mon Sep 17 00:00:00 2001
From: dg <dg@51575b47-30f0-44d4-a5cc-537603b46e54>
Date: Sun, 12 Feb 2012 20:10:48 +0000
Subject: [PATCH] New artifact: Prox's Lucky Halfling Foot

git-svn-id: http://svn.net-core.org/repos/t-engine4@4840 51575b47-30f0-44d4-a5cc-537603b46e54
---
 game/modules/tome/class/Object.lua            |  2 +-
 .../data/general/objects/boss-artifacts.lua   | 58 +++++++++++++++++++
 .../tome/data/general/objects/misc-tools.lua  | 27 +++++++++
 .../tome/data/general/objects/objects.lua     |  1 +
 .../tome/data/zones/trollmire/npcs.lua        |  3 +-
 5 files changed, 89 insertions(+), 2 deletions(-)
 create mode 100644 game/modules/tome/data/general/objects/misc-tools.lua

diff --git a/game/modules/tome/class/Object.lua b/game/modules/tome/class/Object.lua
index 61ed589175..f6b4586571 100644
--- a/game/modules/tome/class/Object.lua
+++ b/game/modules/tome/class/Object.lua
@@ -45,7 +45,7 @@ end
 --- Can this object act at all
 -- Most object will want to answer false, only recharging and stuff needs them
 function _M:canAct()
-	if self.power_regen or self.use_talent then return true end
+	if self.power_regen or self.use_talent or self.sentient then return true end
 	return false
 end
 
diff --git a/game/modules/tome/data/general/objects/boss-artifacts.lua b/game/modules/tome/data/general/objects/boss-artifacts.lua
index 3026c5d367..489843de2e 100644
--- a/game/modules/tome/data/general/objects/boss-artifacts.lua
+++ b/game/modules/tome/data/general/objects/boss-artifacts.lua
@@ -1204,3 +1204,61 @@ Hard to tell if that really helped its former owner, but it's clear that the ski
 	max_power = 8, power_regen = 1,
 	use_talent = { id = Talents.T_INERTIAL_SHOT, level=3, power = 8 },
 }
+
+newEntity{ base = "BASE_TOOL_MISC",
+	power_source = {nature=true},
+	define_as = "LUCKY_FOOT",
+	unique = true,
+	name = "Prox's Lucky Halfling Foot", color = colors.WHITE,
+	unided_name = "a mummified halfling foot",
+	desc = [[A large hairy foot, very recognizably a halfling's, is strung on a piece of thick twine. In its decomposed state it's hard to tell how long ago it parted with its owner, but from what look like teeth marks around the ankle you get the impression that it wasn't given willingly.
+It has been kept somewhat intact with layers of salt and clay, but in spite of this it's clear that nature is beginning to take its course on the dead flesh. Some say the foot of a halfling brings luck to its bearer - right now the only thing you can be sure of is it stinks.]],
+	level_range = {5, 12},
+	rarity = 200,
+	cost = 10,
+	material_level = 1,
+	metallic = false,
+	sentient = true,
+	wielder = {
+		inc_stats = { [Stats.STAT_LCK] = 5, },
+		combat_def = 5,
+		disarm_bonus = 5,
+	},
+	act = function(self)
+		self:useEnergy()
+		if self.worn_by then
+			local actor = self.worn_by
+			local grids = core.fov.circle_grids(actor.x, actor.y, 1, true)
+			local Map = require "engine.Map"
+			local is_trap = false
+			
+			for x, yy in pairs(grids) do for y, _ in pairs(yy) do
+				local trap = game.level.map(x, y, Map.TRAP)
+				if trap then
+					is_trap = true
+				end
+			end end
+			-- only one twitch per action
+			if is_trap then
+				game.logSeen(actor, "#CRIMSON#%s twitches, alerting %s that a trap is nearby.", self:getName(), actor.name:capitalize())
+				if actor == game.player then
+					game.player:runStop()
+				end
+			end
+		end
+	end,
+	on_wear = function(self, who)
+		self.worn_by = who
+		if who.descriptor and who.descriptor.race == "Halfling" then
+			local Stats = require "engine.interface.ActorStats"
+			self:specialWearAdd({"wielder","inc_stats"}, { [Stats.STAT_LCK] = -10}) -- Overcomes the +5 Bonus and adds a -5 penalty
+			self:specialWearAdd({"wielder","combat_physicalsave"}, -5)
+			self:specialWearAdd({"wielder","combat_mentalsave"}, -5)
+			self:specialWearAdd({"wielder","combat_spellsave"}, -5)
+			game.logPlayer(who, "#LIGHT_RED#You feel uneasy carrying %s.", self:getName())
+		end
+	end,
+	on_takeoff = function(self)
+		self.worn_by = nil
+	end,
+}
\ No newline at end of file
diff --git a/game/modules/tome/data/general/objects/misc-tools.lua b/game/modules/tome/data/general/objects/misc-tools.lua
new file mode 100644
index 0000000000..dbd48b8dbf
--- /dev/null
+++ b/game/modules/tome/data/general/objects/misc-tools.lua
@@ -0,0 +1,27 @@
+-- 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
+
+newEntity{
+	define_as = "BASE_TOOL_MISC",
+	slot = "TOOL",
+	type = "tool", subtype="misc",
+	display = "\\", color=colors.LIGHT_BLUE,
+	encumber = 2,
+	desc = [[A miscellaneous tool.]],
+}
\ No newline at end of file
diff --git a/game/modules/tome/data/general/objects/objects.lua b/game/modules/tome/data/general/objects/objects.lua
index d3be9fcf7c..76d6303a74 100644
--- a/game/modules/tome/data/general/objects/objects.lua
+++ b/game/modules/tome/data/general/objects/objects.lua
@@ -34,6 +34,7 @@ loadIfNot("/data/general/objects/wands.lua")
 
 -- Tools
 loadIfNot("/data/general/objects/digger.lua")
+loadIfNot("/data/general/objects/misc-tools.lua")
 
 -- Jewelry stuff
 loadIfNot("/data/general/objects/jewelry.lua")
diff --git a/game/modules/tome/data/zones/trollmire/npcs.lua b/game/modules/tome/data/zones/trollmire/npcs.lua
index be3e47813c..e853588e0a 100644
--- a/game/modules/tome/data/zones/trollmire/npcs.lua
+++ b/game/modules/tome/data/zones/trollmire/npcs.lua
@@ -48,8 +48,9 @@ newEntity{ define_as = "TROLL_PROX",
 	instakill_immune = 1,
 	move_others=true,
 
-	body = { INVEN = 10, MAINHAND=1, OFFHAND=1, BODY=1 },
+	body = { INVEN = 10, MAINHAND=1, OFFHAND=1, BODY=1, TOOL=1 },
 	resolvers.equip{ {type="weapon", subtype="greatmaul", autoreq=true}, },
+	resolvers.equip{ {type="tool", subtype="misc", defined="LUCKY_FOOT", random_art_replace={chance=70}, autoreq=true}, },
 	resolvers.drops{chance=100, nb=1, {unique=true, not_properties={"lore"}} },
 	resolvers.drops{chance=100, nb=3, {tome_drops="boss"} },
 
-- 
GitLab