Newer
Older
newTalent{
name = "Heavy Armour Training",
type = {"physical/combat-training", 1},
mode = "passive",
return [[Teaches the usage of heavy mail armours.]]
end,
}
newTalent{
name = "Massive Armour Training",
type = {"physical/combat-training", 2},
mode = "passive",
require = { stat = { str=22 }, talent = { Talents.T_HEAVY_ARMOUR_TRAINING }, },
return [[Teaches the usage of massive plate armours.]]
end,
}
newTalent{
name = "Health",
type = {"physical/combat-training", 1},
mode = "passive",
require = { stat = { con=function(level) return 14 + level * 5 end }, },
self.max_life = self.max_life + 40
self.max_life = self.max_life - 40
return [[Increases your maximun life by 40 per talent level]]