Skip to content
Snippets Groups Projects
Commit 3189f546 authored by dg's avatar dg
Browse files

Fixed alchemist channel staff description

Fixed alchemist description
Offensive Phase Door & Teleport will only apply the debuff if the target was teleported


git-svn-id: http://svn.net-core.org/repos/t-engine4@1154 51575b47-30f0-44d4-a5cc-537603b46e54
parent 110dad53
No related branches found
No related tags found
No related merge requests found
......@@ -99,7 +99,7 @@ newBirthDescriptor{
"An Alchemist is a dabbler in magic, while 'true' magic is thought to have been lost with the departure of Gandalf and the fall of Saruman.",
"Alchemists have an empirical knowledge of magic, which they can not use directly but through focuses.",
"A focus is usualy a gem which they can imbue with power to throw at their foes, exploding in fires, acid, ...",
"Alchemists are also known for their golem craft and are usualy accompagnied by such a construct which acts as a body guard.",
"Alchemists are also known for their golem craft and are usually accompanied by such a construct which acts as a bodyguard.",
"Their most important stats are: Magic and Dexterity",
},
stats = { mag=5, dex=3, wil=1, },
......
......@@ -46,7 +46,6 @@ newTalent{
game.logSeen(target, "The spell fizzles!")
return true
end
target:setEffect(target.EFF_CONTINUUM_DESTABILIZATION, 100 , {power=20 - self:getTalentLevel(t)})
end
-- Annoy them!
......@@ -68,6 +67,11 @@ newTalent{
target:teleportRandom(x, y, 10 + self:combatSpellpower(0.1))
game.level.map:particleEmitter(target.x, target.y, 1, "teleport")
end
if target ~= self then
target:setEffect(target.EFF_CONTINUUM_DESTABILIZATION, 100 , {power=20 - self:getTalentLevel(t)})
end
game:playSoundNear(self, "talents/teleport")
return true
end,
......@@ -110,7 +114,6 @@ newTalent{
game.logSeen(target, "The spell fizzles!")
return true
end
target:setEffect(target.EFF_CONTINUUM_DESTABILIZATION, 100 , {power=20 - self:getTalentLevel(t)})
end
-- Annoy them!
......@@ -132,6 +135,11 @@ newTalent{
target:teleportRandom(x, y, 100 + self:combatSpellpower(0.1), 15)
game.level.map:particleEmitter(target.x, target.y, 1, "teleport")
end
if target ~= self then
target:setEffect(target.EFF_CONTINUUM_DESTABILIZATION, 100 , {power=20 - self:getTalentLevel(t)})
end
game:playSoundNear(self, "talents/teleport")
return true
end,
......
......@@ -52,7 +52,7 @@ newTalent{
end,
info = function(self, t)
return ([[Channel raw mana through your staff, projecting a bolt of your staff damage type doing %d%% staff damage.
This attack always has a 95% chance to hit and ignores target armour.]]):
This attack always has a 95%% chance to hit and ignores target armour.]]):
format(self:combatTalentWeaponDamage(t, 0.4, 1.1) * 100)
end,
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment