Heavy non-body armor and stealth

Have a really dumb question? Ask it here to get help from the experts (or those with too much time on their hands)

Moderator: Moderator

Post Reply
Message
Author
Lyoncet
Halfling
Posts: 115
Joined: Wed Oct 29, 2014 1:25 pm

Heavy non-body armor and stealth

#1 Post by Lyoncet »

So metal-type boots, helms, and gloves require Armor Training 1 to equip, but don't seem to have the "heavy" tag that heavy body armor pieces have. Do they keep you from stealthing, or is that just heavy/massive-typed body armor?

I'd test this myself but I don't want to find out you can't and then have a non-refundable generic point in Armor Training.

(Also I did see a few posts on similar topics, but nothing more recent than several years ago so I didn't want to trust the maybe-outdated info.)

Dao Zeti
Higher
Posts: 79
Joined: Sun Oct 19, 2014 2:02 pm

Re: Heavy non-body armor and stealth

#2 Post by Dao Zeti »

Looks like it is just the body-part that is being checked on pre_use (stealth.lua).

Code: Select all

on_pre_use = function(self, t, silent)
		if self:isTalentActive(t.id) then return true end
		local armor = self:getInven("BODY") and self:getInven("BODY")[1]
		if armor and (armor.subtype == "heavy" or armor.subtype == "massive") then
			if not silent then game.logPlayer(self, "You cannot Stealth with such heavy armour on!") end
			return nil
		end

Red
Uruivellas
Posts: 892
Joined: Sat Oct 04, 2014 8:03 pm

Re: Heavy non-body armor and stealth

#3 Post by Red »

Remember-your feet that are constantly hitting the ground are the least important bits of stealth. Wearing loud metal boots will not matter nearly as much as well-fit, oiled armor that makes very little noise when worn right and if walking slowly.

Admittedly, this might not make a ton of sense, but... *Looks at all the other unrealities in ToME* I somehow don't see this as a major issue. If it overpowers stealth classes, though, then that's gotta get fixed.
I'm not crying. I'm offering a sacrifice to DarkGod in hopes he'll show favor to me.

It hasn't worked yet.

grayswandir
Uruivellas
Posts: 708
Joined: Wed Apr 30, 2008 5:55 pm

Re: Heavy non-body armor and stealth

#4 Post by grayswandir »

That sounds like a fun ego for heavy armour: well-oiled - this armor does not disable stealth.
Addons: Arcane Blade Tweaks, Fallen Race, Monk Class, Weapons Pack
Currently working on Elementals. It's a big project, so any help would be appreciated. :)

Red
Uruivellas
Posts: 892
Joined: Sat Oct 04, 2014 8:03 pm

Re: Heavy non-body armor and stealth

#5 Post by Red »

Perhaps you could get it applied by any Last Hope/Sunwall armor merchant? Just because this might be an essential ego for a stealth class and it'd suck to be stuck on T2 equipment in the Prides. (Reavers and short staves.)

Just make it cost something like 500+200*Tier gold so it actually matters and have it replace one existing ego of your choice.
I'm not crying. I'm offering a sacrifice to DarkGod in hopes he'll show favor to me.

It hasn't worked yet.

Lyoncet
Halfling
Posts: 115
Joined: Wed Oct 29, 2014 1:25 pm

Re: Heavy non-body armor and stealth

#6 Post by Lyoncet »

Thanks for the info, guys!

Now continue your brainstorming. :D

Post Reply