uber.lua
3.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
-- ToME - Tales of Maj'Eyal
-- Copyright (C) 2009, 2010, 2011, 2012 Nicolas Casalini
--
-- This program is free software: you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation, either version 3 of the License, or
-- (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
--
-- Nicolas Casalini "DarkGod"
-- darkgod@te4.org
newTalentType{ hide = true, type="uber/strength", name = "strength", description = "Ultimate talents you may only know one." }
newTalentType{ hide = true, type="uber/dexterity", name = "dexterity", description = "Ultimate talents you may only know one." }
newTalentType{ hide = true, type="uber/constitution", name = "constitution", description = "Ultimate talents you may only know one." }
newTalentType{ hide = true, type="uber/magic", name = "magic", description = "Ultimate talents you may only know one." }
newTalentType{ hide = true, type="uber/willpower", name = "willpower", description = "Ultimate talents you may only know one." }
newTalentType{ hide = true, type="uber/cunning", name = "cunning", description = "Ultimate talents you may only know one." }
knowRessource = function(self, r, v)
local cnt = 0
for tid, l in pairs(self.talents) do
local t = self:getTalentFromId(tid)
if rawget(t, r) or rawget(t, "sustain_"..r) then cnt = cnt + l end
end
return cnt >= v
end
uberTalent = function(t)
t.type = {"uber/strength", 1}
t.uber = true
t.require = t.require or {}
t.require.level = 30
t.require.stat = t.require.stat or {}
t.require.stat.str = 50
newTalent(t)
end
load("/data/talents/uber/str.lua")
uberTalent = function(t)
t.type = {"uber/dexterity", 1}
t.uber = true
t.require = t.require or {}
t.require.stat = t.require.stat or {}
t.require.level = 30
t.require.stat.dex = 50
newTalent(t)
end
load("/data/talents/uber/dex.lua")
uberTalent = function(t)
t.type = {"uber/constitution", 1}
t.uber = true
t.require = t.require or {}
t.require.stat = t.require.stat or {}
t.require.level = 30
t.require.stat.con = 50
newTalent(t)
end
load("/data/talents/uber/const.lua")
uberTalent = function(t)
t.type = {"uber/magic", 1}
t.uber = true
t.require = t.require or {}
t.require.stat = t.require.stat or {}
t.require.level = 30
t.require.stat.mag = 50
newTalent(t)
end
load("/data/talents/uber/mag.lua")
uberTalent = function(t)
t.type = {"uber/willpower", 1}
t.uber = true
t.require = t.require or {}
t.require.level = 30
t.require.stat = t.require.stat or {}
t.require.stat.wil = 50
newTalent(t)
end
load("/data/talents/uber/wil.lua")
uberTalent = function(t)
t.type = {"uber/cunning", 1}
t.uber = true
t.require = t.require or {}
t.require.level = 30
t.require.stat = t.require.stat or {}
t.require.stat.cun = 50
newTalent(t)
end
load("/data/talents/uber/cun.lua")