[1.6.0] Wrong Transcendent for the Blind of Brain Storm

Where bugs go to lie down and rest

Moderator: Moderator

Post Reply
Message
Author
helminthauge
Wyrmic
Posts: 212
Joined: Sat Sep 29, 2018 3:43 am

[1.6.0] Wrong Transcendent for the Blind of Brain Storm

#1 Post by helminthauge »

the talents' tooltips say that it's the Transcendent Electrokinesis that makes Brain Storm also blind enemies, but the code says that it's the Transcendent Telekinesis.

Code: Select all

newDamageType{
	name = "brain storm", type = "BRAINSTORM",
	projector = function(src, x, y, type, dam, state)
		state = initState(state)
		useImplicitCrit(src, state)
		local target = game.level.map(x, y, Map.ACTOR)
		if target then
			DamageType:get(DamageType.LIGHTNING).projector(src, target.x, target.y, DamageType.LIGHTNING, dam, state)
			if target:checkHit(src:combatMindpower(), target:combatMentalResist(), 0, 95, 15) then
				target:crossTierEffect(target.EFF_BRAINLOCKED, src:combatMindpower())
			else
				game.logSeen(target, "%s resists the mind attack!", target.name:capitalize())
			end

			if src:hasEffect(src.EFF_TRANSCENDENT_TELEKINESIS) then
				if target:canBe("blind") then
					target:setEffect(target.EFF_BLINDED, 4, {apply_power=src:combatMindpower()})
				end
			end
			return dam
		end
	end,
}

helminthauge
Wyrmic
Posts: 212
Joined: Sat Sep 29, 2018 3:43 am

Re: [1.6.0] Wrong Transcendent for the Blind of Brain Storm

#2 Post by helminthauge »

1.6.0 still unfixed

darkgod
Master of Eyal
Posts: 10750
Joined: Wed Jul 24, 2002 9:26 pm
Location: Angolwen
Contact:

Re: [1.6.0] Wrong Transcendent for the Blind of Brain Storm

#3 Post by darkgod »

fixed
[tome] joylove: You can't just release an expansion like one would release a Kraken XD
--
[tome] phantomfrettchen: your ability not to tease anyone is simply stunning ;)

Post Reply