Skip to content
Snippets Groups Projects
Commit 31dbaff1 authored by dg's avatar dg
Browse files

Congeal Time correctly reduces speed

git-svn-id: http://svn.net-core.org/repos/t-engine4@2290 51575b47-30f0-44d4-a5cc-537603b46e54
parent 0383bc7a
No related branches found
No related tags found
No related merge requests found
......@@ -26,9 +26,9 @@ newLore{
category = "history of the Sunwall",
name = "Loremaster Verutir's note",
lore = [[Loremaster Verutir here. I have been assigned to write an official chronicle of the history of the Sunwall. This will be my notebook as I interview people and travel from place to place. If you are reading this, you are either my patron (thanks again, sir!), a sneak (get out of my journal!), or the finder of my corpse. If the last, please take this to Lord Forosyth of the town of the Sunwall for a reward, tell my wife how I died, and tell the kids that I love them.
With that said I shall be starting this project by investigating the Elves and their connection to the Sunwall. They should be one of the easier races to interview considering their life expectancy and their penchant for remembering their own history. Of course, there aren't as many of them around as there used to be. And that's the thing: most of the Elves left for Valinor, so the Elves we might see around here are all Avari.
With that said I shall be starting this project by investigating the Elves and their connection to the Sunwall. They should be one of the easier races to interview considering their life expectancy and their penchant for remembering their own history. Of course, there aren't as many of them around as there used to be.
...
Unfortunately though, our local Elves are also unwilling to talk to me about their history. However, there is a fellow Thanchir who I hear would be happy to help. The only problem is that he lies on the other side of a huge encampment of orcs, so I will need an escort to help me. We will see how that goes. I have heard things about those adventurer escorts ...]],
Unfortunately though, our local Elves are also unwilling to talk to me about their history, saying they do not have records of the earlier times. However, there is a fellow Thanchir who I hear would be happy to help. The only problem is that he lies on the other side of a huge encampment of orcs, so I will need an escort to help me. We will see how that goes. I have heard things about those adventurer escorts ...]],
}
newLore{
......
......@@ -38,7 +38,7 @@ newTalent{
local tg = {type="beam", range=self:getTalentRange(t), talent=t, display={particle="bolt_arcane"}}
local x, y = self:getTarget(tg)
if not x or not y then return nil end
self:projectile(tg, x, y, DamageType.SLOW, -1 + 1 / (1 + t.getSlow(self, t)), {type="manathrust"})
self:projectile(tg, x, y, DamageType.SLOW, 1 - 1 / (1 + t.getSlow(self, t)), {type="manathrust"})
game:playSoundNear(self, "talents/spell_generic")
return true
end,
......
......@@ -83,7 +83,8 @@ newTalent{
points = 5,
require = techs_req4,
info = function(self, t)
return ([[Raw magical damage channels through the caster's weapon, increasing physical damage by %d.]]):
return ([[Raw magical damage channels through the caster's weapon, increasing physical damage by %d.
The damage scales with Magic and Dexterity.]]):
format(self:combatSpellpower() * self:getTalentLevel(Talents.T_ARCANE_DESTRUCTION) / 9)
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