[1.0] Why is cross-tier disabled for archery?

Everything about ToME 4.x.x. No spoilers, please

Moderator: Moderator

Post Reply
Message
Author
jenx
Sher'Tul Godslayer
Posts: 2263
Joined: Mon Feb 14, 2011 11:16 pm

[1.0] Why is cross-tier disabled for archery?

#1 Post by jenx »

The cross-tier effect code for archery is commented out in 1.0:

Code: Select all

--[[
	local tier_diff = self:getTierDiff(atk, target:combatDefense(false, target:attr("combat_def_ct")))
	if hitted and not target.dead and tier_diff > 0 then
		local reapplied = false
		-- silence the apply message it if the target already has the effect
		for eff_id, p in pairs(target.tmp) do
			local e = target.tempeffect_def[eff_id]
			if e.desc == "Off-guard" then
				reapplied = true
			end
		end
		target:setEffect(target.EFF_OFFGUARD, tier_diff, {}, reapplied)
	end
]]
Why is this?
MADNESS rocks

stinkstink
Spiderkin
Posts: 543
Joined: Sat Feb 11, 2012 1:12 am

Re: [1.0] Why is cross-tier disabled for archery?

#2 Post by stinkstink »

Off-guard was removed from basic melee and ranged hits, I believe to cut down on status spam.

jenx
Sher'Tul Godslayer
Posts: 2263
Joined: Mon Feb 14, 2011 11:16 pm

Re: [1.0] Why is cross-tier disabled for archery?

#3 Post by jenx »

But this makes it inconsistent with the other attacks in the game. Wouldn't it be better to modify it rather than remove it altogether?
MADNESS rocks

SageAcrin
Sher'Tul Godslayer
Posts: 1884
Joined: Tue Apr 10, 2012 6:52 pm

Re: [1.0] Why is cross-tier disabled for archery?

#4 Post by SageAcrin »

Actually, applying a crosstier effect on basic strikes made it inconsistent with all other attacks in the game, which only apply crosstier effects with status procs.

It was more there to make higher accuracy a better thing. And yeah, it's probably better to make a formalized bonus mechanic for accuracy vs defense rather than a crosstier status, to do that, for the status spam reason.

Maybe you ought to get +0.2% physical/archery critical rate for every point of accuracy you have over the target's Defense, and cap at 10%. Gives a more even curve than Off-Guard ever did anyways-it drove me nuts to have a 40 Defense character get crosstiered and get a notable crit rate against them.

jenx
Sher'Tul Godslayer
Posts: 2263
Joined: Mon Feb 14, 2011 11:16 pm

Re: [1.0] Why is cross-tier disabled for archery?

#5 Post by jenx »

great suggestion sage
MADNESS rocks

Post Reply