diff --git a/game/modules/tome/class/interface/Combat.lua b/game/modules/tome/class/interface/Combat.lua
index 72fc581b499bad17ae41c09c5fbae941b49127c9..596ea974821dbd60cebf6469fbd0b25ac95f00ed 100644
--- a/game/modules/tome/class/interface/Combat.lua
+++ b/game/modules/tome/class/interface/Combat.lua
@@ -1281,6 +1281,12 @@ function _M:combatArmor()
 	if self:knowTalent(self.T_ARMOUR_OF_SHADOWS) and not game.level.map.lites(self.x, self.y) then
 		add = add + self:callTalent(self.T_ARMOUR_OF_SHADOWS,"ArmourBonus")
 	end
+	local light_armor = self:hasLightArmor()
+	if light_armor then
+		if self:knowTalent(self.T_SKIRMISHER_BUCKLER_EXPERTISE) then
+			add = add + self:callTalent(self.T_SKIRMISHER_BUCKLER_EXPERTISE, "getArmour")
+		end
+	end
 	if self:knowTalent(self.T_CORRUPTED_SHELL) then
 		add = add + self:getCon() / 3.5
 	end
@@ -1297,9 +1303,6 @@ end
 function _M:combatArmorHardiness()
 	local add = 0
 	local multi = 1
-	if self:knowTalent(self.T_SKIRMISHER_BUCKLER_EXPERTISE) then
-		add = add + self:callTalent(self.T_SKIRMISHER_BUCKLER_EXPERTISE, "getHardiness")
-	end
 	if self:hasHeavyArmor() and self:knowTalent(self.T_ARMOUR_TRAINING) then
 		local at = Talents:getTalentFromId(Talents.T_ARMOUR_TRAINING)
 		add = add + at.getArmorHardiness(self, at)
@@ -1316,6 +1319,9 @@ function _M:combatArmorHardiness()
 		if self:knowTalent(self.T_LIGHT_ARMOUR_TRAINING) then
 			add = add + self:callTalent(self.T_LIGHT_ARMOUR_TRAINING, "getArmorHardiness")
 		end
+		if self:knowTalent(self.T_SKIRMISHER_BUCKLER_EXPERTISE) then
+			add = add + self:callTalent(self.T_SKIRMISHER_BUCKLER_EXPERTISE, "getArmorHardiness")
+		end
 	end
 	if self:knowTalent(self.T_ARMOUR_OF_SHADOWS) and not game.level.map.lites(self.x, self.y) then
 		add = add + 50
diff --git a/game/modules/tome/data/talents/techniques/buckler-training.lua b/game/modules/tome/data/talents/techniques/buckler-training.lua
index e9a835e13a34d39f8b8c86a25d6267a074bca95d..9c61bd1ed705726a66068c1b351a56e9158666e3 100644
--- a/game/modules/tome/data/talents/techniques/buckler-training.lua
+++ b/game/modules/tome/data/talents/techniques/buckler-training.lua
@@ -35,8 +35,11 @@ newTalent {
 		return self:combatLimit(self:getTalentLevel(t)*10+self:getCun()*0.5, 50, 5, 15, 25, 100)
 	end,
 	-- called by _M:combatArmorHardiness
-	getHardiness = function(self, t)
-		return 0 --self:getTalentLevel(t) * 4;
+	getArmorHardiness = function(self, t)
+		return self:combatTalentLimit(t, 30, 10, 25)
+	end,
+	getArmour = function(self, t)
+		return self:combatTalentLimit(t, 20, 3, 15)
 	end,
 	-- called by Combat.attackTargetWith
 	shouldEvade = function(self, t)
@@ -56,11 +59,13 @@ newTalent {
 	end,
 	info = function(self, t)
 		local block = t.chance(self, t)
-		local armor = t.getHardiness(self, t)
+		local armour = t.getArmour(self,t)
+		local hardiness = t.getArmorHardiness(self, t)
 		return ([[Allows shields to be equipped, using Cunning instead of strength as a requirement.
 			When you are attacked in melee, you have a %d%% chance to deflect the attack with your shield, completely evading it.
+			In addition, as long as you are wearing armour no heavier than leather, you gain %d Armour and %d%% Armour hardiness.
 			The chance to deflect increases with your Cunning.]])
-			:format(block, armor)
+			:format(block, armour, hardiness)
 	end,
 }
 
diff --git a/game/modules/tome/data/talents/techniques/skirmisher-slings.lua b/game/modules/tome/data/talents/techniques/skirmisher-slings.lua
index 346707eee4089d7ef0c8740b69bcacace8a356eb..ab50960e198677c75d0b9385b17e190f87799c70 100644
--- a/game/modules/tome/data/talents/techniques/skirmisher-slings.lua
+++ b/game/modules/tome/data/talents/techniques/skirmisher-slings.lua
@@ -117,11 +117,11 @@ newTalent {
 	end,
 	on_pre_use = function(self, t, silent) return archerPreUse(self, t, silent, "sling") end,
 	damage_multiplier = function(self, t)
-		return self:combatTalentWeaponDamage(t, 0.2, 0.8)
+		return self:combatTalentWeaponDamage(t, 0.4, 1.2)
 	end,
 	-- Maximum number of shots fired.
 	limit_shots = function(self, t)
-		return math.floor(self:combatTalentScale(t, 6, 11, "log"))
+		return math.floor(self:combatTalentScale(t, 9, 16, "log"))
 	end,
 	action = function(self, t)
 		-- Get list of possible targets, possibly doubled.
diff --git a/game/modules/tome/data/talents/techniques/tireless-combatant.lua b/game/modules/tome/data/talents/techniques/tireless-combatant.lua
index ffa54c972b010ac5fcc23956316726a83cda381f..f9d1e98262996d71dffe0372c64ed2357be877d6 100644
--- a/game/modules/tome/data/talents/techniques/tireless-combatant.lua
+++ b/game/modules/tome/data/talents/techniques/tireless-combatant.lua
@@ -19,7 +19,7 @@ newTalent {
 	short_name = "SKIRMISHER_BREATHING_ROOM",
 	name = "Breathing Room",
 	type = {"technique/tireless-combatant", 1},
-	require = techs_wil_req1,
+	require = techs_strdex_req1,
 	mode = "passive",
 	points = 5,
 	getRestoreRate = function(self, t)
@@ -81,7 +81,7 @@ newTalent {
 	cooldown = 10,
 	sustain_stamina = 0,
 	no_energy = true,
-	require = techs_wil_req2,
+	require = techs_strdex_req2,
 	tactical = { STAMINA = 2 },
 	random_ego = "utility",
 	activate = function(self, t)
@@ -113,7 +113,7 @@ newTalent {
 	short_name = "SKIRMISHER_DAUNTLESS_CHALLENGER",
 	name = "Dauntless Challenger",
 	type = {"technique/tireless-combatant", 3},
-	require = techs_wil_req3,
+	require = techs_strdex_req3,
 	mode = "passive",
 	points = 5,
 	getStaminaRate = function(self, t)
@@ -171,7 +171,7 @@ newTalent {
 	short_name = "SKIRMISHER_THE_ETERNAL_WARRIOR",
 	name = "The Eternal Warrior",
 	type = {"technique/tireless-combatant", 4},
-	require = techs_wil_req4,
+	require = techs_strdex_req4,
 	mode = "passive",
 	points = 5,
 	getResist = function(self, t)