Skip to content
Snippets Groups Projects
Commit 0c8ceb77 authored by dg's avatar dg
Browse files

Divine/Guardian talents have higher requirements

git-svn-id: http://svn.net-core.org/repos/t-engine4@1988 51575b47-30f0-44d4-a5cc-537603b46e54
parent fcb0e1a7
No related branches found
No related tags found
No related merge requests found
......@@ -51,6 +51,26 @@ divi_req5 = {
stat = { mag=function(level) return 44 + (level-1) * 2 end },
level = function(level) return 16 + (level-1) end,
}
divi_req_high1 = {
stat = { mag=function(level) return 22 + (level-1) * 2 end },
level = function(level) return 10 + (level-1) end,
}
divi_req_high2 = {
stat = { mag=function(level) return 30 + (level-1) * 2 end },
level = function(level) return 14 + (level-1) end,
}
divi_req_high3 = {
stat = { mag=function(level) return 38 + (level-1) * 2 end },
level = function(level) return 18 + (level-1) end,
}
divi_req_high4 = {
stat = { mag=function(level) return 46 + (level-1) * 2 end },
level = function(level) return 22 + (level-1) end,
}
divi_req_high5 = {
stat = { mag=function(level) return 54 + (level-1) * 2 end },
level = function(level) return 26 + (level-1) end,
}
load("/data/talents/divine/chants.lua")
load("/data/talents/divine/sun.lua")
......
......@@ -21,7 +21,7 @@ newTalent{
name = "Shield of Light",
type = {"divine/guardian", 1},
mode = "sustained",
require = divi_req1,
require = divi_req_high1,
points = 5,
cooldown = 10,
sustain_positive = 10,
......@@ -54,7 +54,7 @@ newTalent{
newTalent{
name = "Brandish",
type = {"divine/guardian", 2},
require = spells_req2,
require = divi_req_high2,
points = 5,
cooldown = 8,
positive = 20,
......@@ -97,7 +97,7 @@ newTalent{
newTalent{
name = "Retribution",
type = {"divine/guardian", 3},
require = divi_req3, no_sustain_autoreset = true,
require = divi_req_high3, no_sustain_autoreset = true,
points = 5,
mode = "sustained",
sustain_positive = 20,
......@@ -138,7 +138,7 @@ newTalent{
newTalent{
name = "Second Life",
type = {"divine/guardian", 4},
require = divi_req4, no_sustain_autoreset = true,
require = divi_req_high4, no_sustain_autoreset = true,
points = 5,
mode = "sustained",
sustain_positive = 60,
......
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