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

fix

git-svn-id: http://svn.net-core.org/repos/t-engine4@294 51575b47-30f0-44d4-a5cc-537603b46e54
parent 6aad4564
No related branches found
No related tags found
No related merge requests found
......@@ -5,7 +5,7 @@ newTalentType{ type="technique/shield-offense", name = "weapon and shields", des
newTalentType{ type="technique/shield-defense", name = "weapon and shields", description = "Specialized weapon and shield techniques." }
newTalentType{ type="technique/dualweapon-training", name = "dual wielding", description = "Specialized dual wielding techniques." }
newTalentType{ type="technique/dualweapon-attack", name = "dual wielding", description = "Specialized dual wielding techniques." }
newTalentType{ type="technique/weapon-training", name = "weapon-training", description = "Grants bonuses to the different weapon types." }
newTalentType{ type="technique/combat-techniques", name = "combat-techniques", description = "Generic combat oriented techniques." }
newTalentType{ type="technique/combat-training", name = "combat-training", description = "Teaches to use various armors and improves health." }
-- Generic requires for techs based on talent level
......@@ -77,5 +77,5 @@ techs_strdex_req5 = function(self, t) local stat = self:getStr() >= self:getDex(
load("/data/talents/techniques/2hweapon.lua")
load("/data/talents/techniques/dualweapon.lua")
load("/data/talents/techniques/weaponshield.lua")
load("/data/talents/techniques/weapon-training.lua")
load("/data/talents/techniques/combat-techniques.lua")
load("/data/talents/techniques/combat-training.lua")
newTalent{
name = "Precise Striking",
type = {"technique/weapon-training", 1},
type = {"technique/combat-techniques", 1},
mode = "sustained",
points = 5,
require = techs_strdex_req1,
......@@ -27,7 +27,7 @@ newTalent{
newTalent{
name = "Blinding Speed",
type = {"technique/weapon-training", 2},
type = {"technique/combat-techniques", 2},
points = 5,
cooldown = 55,
stamina = 25,
......@@ -43,7 +43,7 @@ newTalent{
newTalent{
name = "Perfect Strike",
type = {"technique/weapon-training", 3},
type = {"technique/combat-techniques", 3},
points = 5,
cooldown = 55,
stamina = 25,
......@@ -59,7 +59,7 @@ newTalent{
newTalent{
name = "Rush",
type = {"technique/weapon-training", 4},
type = {"technique/combat-techniques", 4},
message = "@Source@ rushes out!",
require = techs_strdex_req4,
points = 5,
......
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