diff --git a/game/modules/tome/class/Actor.lua b/game/modules/tome/class/Actor.lua
index 2668018e5630ef54c6cd412ef11416d1bfb9b8f4..739cfbf1dcb4ba51ad29586b815a013887c4fc9f 100644
--- a/game/modules/tome/class/Actor.lua
+++ b/game/modules/tome/class/Actor.lua
@@ -3602,10 +3602,11 @@ function _M:updateModdableTile()
 	elseif not self:attr("moddable_tile_nude") then add[#add+1] = {image = base..(self:attr("moddable_tile_lower_underwear") or "lower_body_01.png"), auto_tall=1} end
 	i = self.inven[self.INVEN_BODY]; if i and i[1] and i[1].moddable_tile then add[#add+1] = {image = base..(i[1].moddable_tile)..".png", auto_tall=1}
 	elseif not self:attr("moddable_tile_nude") then add[#add+1] = {image = base..(self:attr("moddable_tile_higher_underwear") or "upper_body_01.png"), auto_tall=1} end
-	i = self.inven[self.INVEN_HEAD]; if i and i[1] and i[1].moddable_tile then add[#add+1] = {image = base..(i[1].moddable_tile)..".png", auto_tall=1}
-	elseif self:attr("moddable_tile_head_underwear") then add[#add+1] = {image = base..self:attr("moddable_tile_head_underwear"), auto_tall=1} end
+	local done_head = false
+	i = self.inven[self.INVEN_CLOAK]; if config.settings.tome.show_cloak_hoods and i and i[1] and i[1].moddable_tile_hood then add[#add+1] = {image = base..(i[1].moddable_tile):format("hood")..".png", auto_tall=1} done_head = true end
+	i = self.inven[self.INVEN_HEAD]; if not done_head and i and i[1] and i[1].moddable_tile then add[#add+1] = {image = base..(i[1].moddable_tile)..".png", auto_tall=1} done_head = true end
+	if not done_head and self:attr("moddable_tile_head_underwear") then add[#add+1] = {image = base..self:attr("moddable_tile_head_underwear"), auto_tall=1} end
 	i = self.inven[self.INVEN_HANDS]; if i and i[1] and i[1].moddable_tile then add[#add+1] = {image = base..(i[1].moddable_tile)..".png", auto_tall=1} end
-	i = self.inven[self.INVEN_CLOAK]; if i and i[1] and i[1].moddable_tile_hood then add[#add+1] = {image = base..(i[1].moddable_tile):format("hood")..".png", auto_tall=1} end
 	i = self.inven[self.INVEN_QUIVER]; if i and i[1] and i[1].moddable_tile then add[#add+1] = {image = base..(i[1].moddable_tile)..".png", auto_tall=1} end
 	if not self:attr("disarmed") then
 		i = self.inven[self.INVEN_MAINHAND]; if i and i[1] and i[1].moddable_tile then
diff --git a/game/modules/tome/class/Game.lua b/game/modules/tome/class/Game.lua
index 43dafa725df475f3093ccc60936780373666be0b..dbe92a4293d5ce16a1bff7908bcc90238b9fb335 100644
--- a/game/modules/tome/class/Game.lua
+++ b/game/modules/tome/class/Game.lua
@@ -1819,34 +1819,20 @@ function _M:setupCommands()
 			print("===============")
 		end end,
 		[{"_g","ctrl"}] = function() if config.settings.cheat then
-			local list = {}
-			local loaded = {}
-			for i, file in ipairs{"/data/general/objects/objects-maj-eyal.lua", "/data/general/objects/objects-far-east.lua"} do
-				require("mod.class.Object"):loadList(file, nil, list, nil, loaded)
-			end
-			local images = {}
-			for i, e in ipairs(list) do
-				if e.unique and not e.randart and not e.lore and type(e.image) == "string" then
-					print("===== ", e.name, "::", e.image)
-					images[e.image] = images[e.image] or {}
-					table.insert(images[e.image], e.name)
-				end
-			end
-			local filter = {}
-			for i, n in pairs(images) do
-				if #n > 1 then
-					filter[i] = n
+			for _, ip in ipairs{
+				{"armor", "cloak"},
+			} do
+				for tier = 1, 5 do
+					local special = function(e) return e.material_level == tier and (not ip[3] or ip[3](e)) end
+					local o = game.zone:makeEntity(game.level, "object", {ignore_material_restriction=true, type=ip[1], subtype=ip[2], special=special, not_properties={"unique"}, ego_filter={ego_chance=-1000}}, nil, true)
+					if o then
+						o:identify(true)
+						game.zone:addEntity(game.level, o, "object", game.player.x, game.player.y)
+					end
 				end
 			end
-			table.print(filter)
 do return end
 			self:changeLevel(game.level.level + 1)
-do return end
-			local o = game.zone:makeEntity(game.level, "object", {subtype="sling", random_object=true}, nil, true)
-			if o then
-				o:identify(true)
-				game.zone:addEntity(game.level, o, "object", game.player.x, game.player.y-1)
-			end
 do return end
 			local f, err = loadfile("/data/general/events/fearscape-portal.lua")
 			print(f, err)
diff --git a/game/modules/tome/data/general/objects/bows.lua b/game/modules/tome/data/general/objects/bows.lua
index 960ae2c10f0dcc08523c303938bb68a298cebf5a..f1ba51c6a596427c01d15608b64b26670e5b7849 100644
--- a/game/modules/tome/data/general/objects/bows.lua
+++ b/game/modules/tome/data/general/objects/bows.lua
@@ -103,7 +103,7 @@ newEntity{ base = "BASE_LONGBOW",
 newEntity{
 	define_as = "BASE_ARROW",
 	slot = "QUIVER",
-	moddable_tile = "quiver",
+	moddable_tile = resolvers.moddable_tile("quiver"),
 	type = "ammo", subtype="arrow",
 	add_name = " (#COMBAT_AMMO#)",
 	display = "{", color=colors.UMBER, image = resolvers.image_material("arrow", "wood"),
diff --git a/game/modules/tome/data/general/objects/cloak.lua b/game/modules/tome/data/general/objects/cloak.lua
index de337ded7180bb3afca942098e078b17dea2e675..57ddcd9bb1ed84794c8b370e11b0e0b5da643c5b 100644
--- a/game/modules/tome/data/general/objects/cloak.lua
+++ b/game/modules/tome/data/general/objects/cloak.lua
@@ -23,7 +23,7 @@ newEntity{
 	type = "armor", subtype="cloak",
 	add_name = " (#ARMOR#)",
 	display = "(", color=colors.UMBER, image = resolvers.image_material("cloak", "cloth"),
-	moddable_tile = resolvers.moddable_tile("cloak"),
+	moddable_tile = resolvers.moddable_tile("cloak"), moddable_tile_hood = true,
 	encumber = 2,
 	rarity = 6,
 	desc = [[A cloth coat typically worn as a loose outer garment. It is spacious enough to be worn even over bulky metal armour.]],
diff --git a/game/modules/tome/data/general/objects/gem.lua b/game/modules/tome/data/general/objects/gem.lua
index dc175ff7cc572d78f4db954b21139ea90c6eb814..000bb711f1dd6298c1f2db049c12788fc3592fc6 100644
--- a/game/modules/tome/data/general/objects/gem.lua
+++ b/game/modules/tome/data/general/objects/gem.lua
@@ -82,7 +82,7 @@ local function newGem(name, image, cost, rarity, color, min_level, max_level, ti
 	-- Alchemist gems, not lootable, only created by talents
 	newEntity{ base = "BASE_GEM", define_as = "ALCHEMIST_GEM_"..name:gsub(" ", "_"):upper(),		name = "alchemist "..name:lower(), type='alchemist-gem', subtype = color,
 		slot = "QUIVER",
-		moddable_tile = "gembag",
+		moddable_tile = resolvers.moddable_tile("gembag"),
 		use_no_wear = false,
 		color = colors[color:upper()], image=image,
 		cost = cost * 0.01,
diff --git a/game/modules/tome/data/general/objects/slings.lua b/game/modules/tome/data/general/objects/slings.lua
index c078e5ba7bb5c10f25e8b0f8664c66a507977958..a172bfa1026ae77d016ad0c2e1ef783d52d4360e 100644
--- a/game/modules/tome/data/general/objects/slings.lua
+++ b/game/modules/tome/data/general/objects/slings.lua
@@ -102,7 +102,7 @@ newEntity{ base = "BASE_SLING",
 newEntity{
 	define_as = "BASE_SHOT",
 	slot = "QUIVER",
-	moddable_tile = "shotbag",
+	moddable_tile = resolvers.moddable_tile("shotbag"),
 	type = "ammo", subtype="shot",
 	add_name = " (#COMBAT_AMMO#)",
 	display = "{", color=colors.UMBER, image = resolvers.image_material("shot", "metal"),
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/cloak_behind_07.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/cloak_behind_07.png
new file mode 100644
index 0000000000000000000000000000000000000000..3fd386c8b54a1f7cabd96be60bf4051d8a82e15e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/cloak_behind_07.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/cloak_behind_08.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/cloak_behind_08.png
new file mode 100644
index 0000000000000000000000000000000000000000..b35304a09936e5d33aff7f5a22564188ea76618b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/cloak_behind_08.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/cloak_behind_09.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/cloak_behind_09.png
new file mode 100644
index 0000000000000000000000000000000000000000..8d31fe8b7fc1e01c22fc025c1dcac4fce6899873
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/cloak_behind_09.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/cloak_hood_07.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/cloak_hood_07.png
new file mode 100644
index 0000000000000000000000000000000000000000..37f922854eb8908056cd3e974ac544e59aa78cc8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/cloak_hood_07.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/cloak_hood_08.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/cloak_hood_08.png
new file mode 100644
index 0000000000000000000000000000000000000000..8a16784cbb49341b80c145082fb1ec662c2e094a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/cloak_hood_08.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/cloak_hood_09.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/cloak_hood_09.png
new file mode 100644
index 0000000000000000000000000000000000000000..1fd36b98af5c20ab5368bfc4dddc358b3670d18f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/cloak_hood_09.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/cloak_shoulder_07.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/cloak_shoulder_07.png
new file mode 100644
index 0000000000000000000000000000000000000000..aa5c11f12db31c6075dfeb0f37d12a755e276ab9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/cloak_shoulder_07.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/cloak_shoulder_08.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/cloak_shoulder_08.png
new file mode 100644
index 0000000000000000000000000000000000000000..b8e6f0c982c5a7f76b6008bfb6f689e82e24962c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/cloak_shoulder_08.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/cloak_shoulder_09.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/cloak_shoulder_09.png
new file mode 100644
index 0000000000000000000000000000000000000000..cded6f54c0b1f7022305d0315d89d16ddcb69c81
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/cloak_shoulder_09.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/feet_10.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/feet_10.png
new file mode 100644
index 0000000000000000000000000000000000000000..0b57992b673319d65f9801f965ce33adf872a546
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/feet_10.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/feet_11.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/feet_11.png
new file mode 100644
index 0000000000000000000000000000000000000000..22d46874de0b314ef165eef4d739f622c31948cd
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/feet_11.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/gembag_01.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/gembag_01.png
new file mode 100644
index 0000000000000000000000000000000000000000..f6b0ebceba201d230cd87af2daf0bb562fadd6f8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/gembag_01.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/gembag_02.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/gembag_02.png
new file mode 100644
index 0000000000000000000000000000000000000000..440da37497a3711629006051ccedb3d7e54c6aba
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/gembag_02.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/gembag_03.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/gembag_03.png
new file mode 100644
index 0000000000000000000000000000000000000000..ac987e8d44e4e8bba4fbf1bf6141f4c0c65c61d8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/gembag_03.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/gembag_04.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/gembag_04.png
new file mode 100644
index 0000000000000000000000000000000000000000..b6818ff6e1e7a6e0e3ae6bae8fee7c0eb4e8db69
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/gembag_04.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/gembag_05.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/gembag_05.png
new file mode 100644
index 0000000000000000000000000000000000000000..593f3505b6a3d990e76f1c30089807bd5235331f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/gembag_05.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/hands_08.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/hands_08.png
new file mode 100644
index 0000000000000000000000000000000000000000..9be339c88852954b57f2aff29257ba72076fc6a0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/hands_08.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/hands_09.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/hands_09.png
new file mode 100644
index 0000000000000000000000000000000000000000..b7f420e4a2a76073c8fe05b08189bfa38aacf813
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/hands_09.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/head_19.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/head_19.png
new file mode 100644
index 0000000000000000000000000000000000000000..f343cf71ce571861cc2bd5da6fe9e4bced2a3ec0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/head_19.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/head_20.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/head_20.png
new file mode 100644
index 0000000000000000000000000000000000000000..c9120ee03211144869acf12c9f750f8fd609ee5a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/head_20.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/head_21.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/head_21.png
new file mode 100644
index 0000000000000000000000000000000000000000..8366d5066d279802aef922e1adbc0781477c0712
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/head_21.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/head_22.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/head_22.png
new file mode 100644
index 0000000000000000000000000000000000000000..fd3303f49642f09bc69d82a50eb97f188fd519fa
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/head_22.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/head_23.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/head_23.png
new file mode 100644
index 0000000000000000000000000000000000000000..c8bdcbbb6d175a8bbf163140836cdcf8e327bd49
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/head_23.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/lower_body_14.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/lower_body_14.png
new file mode 100644
index 0000000000000000000000000000000000000000..5fd95eb12d9f251dbfe203e71f1b7be30d335ec5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/lower_body_14.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/lower_body_15.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/lower_body_15.png
new file mode 100644
index 0000000000000000000000000000000000000000..10a853e7e4704c03109c99b06f874be5bb7b2add
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/lower_body_15.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/lower_body_16.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/lower_body_16.png
new file mode 100644
index 0000000000000000000000000000000000000000..c332fd7f2960a7d73b89eebf75273e8cb6877e00
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/lower_body_16.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/lower_body_17.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/lower_body_17.png
new file mode 100644
index 0000000000000000000000000000000000000000..5590a5b11e9aa65254e8d51c5f7e4684a5dbcc16
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/lower_body_17.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/lower_body_18.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/lower_body_18.png
new file mode 100644
index 0000000000000000000000000000000000000000..f12d88820575deb4ed9a9ed236f55250981c910d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/lower_body_18.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/lower_body_19.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/lower_body_19.png
new file mode 100644
index 0000000000000000000000000000000000000000..5b5a8117e0c889c9eb1ee4ee59eaef8a71e668b1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/lower_body_19.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/quiver_01.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/quiver_01.png
new file mode 100644
index 0000000000000000000000000000000000000000..210b7b3e185bd9228e417f1bd35eb992b3b80eb9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/quiver_01.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/quiver_02.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/quiver_02.png
new file mode 100644
index 0000000000000000000000000000000000000000..ec357649c6b1d5a231c88708a8429f4e6b8b2fe9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/quiver_02.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/quiver_03.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/quiver_03.png
new file mode 100644
index 0000000000000000000000000000000000000000..dcf7d3d67453e3c2da88fd42c2ef21aca48e913b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/quiver_03.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/quiver_04.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/quiver_04.png
new file mode 100644
index 0000000000000000000000000000000000000000..2bb986d92bfb950d565a3907f567a662ccf1204e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/quiver_04.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/quiver_05.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/quiver_05.png
new file mode 100644
index 0000000000000000000000000000000000000000..eeb26636126b6d5f84b75c319469ca7086863f4f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/quiver_05.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/shotbag_01.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/shotbag_01.png
new file mode 100644
index 0000000000000000000000000000000000000000..4a5d32819db6a83c287ed7cbde520c10d08fad07
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/shotbag_01.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/shotbag_02.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/shotbag_02.png
new file mode 100644
index 0000000000000000000000000000000000000000..fa27219637a1a7be44594b1fd15209113c1ed70c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/shotbag_02.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/shotbag_03.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/shotbag_03.png
new file mode 100644
index 0000000000000000000000000000000000000000..39b890d32be17ee4f72364373f2267cf1361906a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/shotbag_03.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/shotbag_04.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/shotbag_04.png
new file mode 100644
index 0000000000000000000000000000000000000000..c26bd9cf14763991130c66367b6a4180ef5f471a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/shotbag_04.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/shotbag_05.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/shotbag_05.png
new file mode 100644
index 0000000000000000000000000000000000000000..f6f9b27f0aafda98e44f62610c4afb1c5445f40d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/shotbag_05.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/aether_walk.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/aether_walk.png
new file mode 100644
index 0000000000000000000000000000000000000000..7664acc18d9872f6315448b063f538103a0f2f29
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/aether_walk.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/arkuls_seige_arrows.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/arkuls_seige_arrows.png
new file mode 100644
index 0000000000000000000000000000000000000000..69fdbbd433bec10479a226eb9b40b0c6f68b25c8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/arkuls_seige_arrows.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/armor_chromatic_harness.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/armor_chromatic_harness.png
new file mode 100644
index 0000000000000000000000000000000000000000..addc1d77c6281c507f279658ec737223ab99face
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/armor_chromatic_harness.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/armor_cuirass_of_the_thronesmen.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/armor_cuirass_of_the_thronesmen.png
new file mode 100644
index 0000000000000000000000000000000000000000..d0f127a13b81949545516ef4f26c98b1c6a67652
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/armor_cuirass_of_the_thronesmen.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/armor_natures_blessing.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/armor_natures_blessing.png
new file mode 100644
index 0000000000000000000000000000000000000000..3217d0bd7b9888de00156101fe9887ddd54fbccf
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/armor_natures_blessing.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/armor_plate_borfasts_cage.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/armor_plate_borfasts_cage.png
new file mode 100644
index 0000000000000000000000000000000000000000..8c2641f16fd5ceea181214b84247bd2e353faab8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/armor_plate_borfasts_cage.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/armor_rogue_plight.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/armor_rogue_plight.png
new file mode 100644
index 0000000000000000000000000000000000000000..32b3d481902dbc7e5f9b7f65815f7b8028ae4f14
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/armor_rogue_plight.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/behemoth_skin.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/behemoth_skin.png
new file mode 100644
index 0000000000000000000000000000000000000000..fc23eefa27c94cd86918613336895adc86d604da
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/behemoth_skin.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/black_cloak_behind.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/black_cloak_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..ff33d204a609adaa4e41116d37d3aabe3641abc1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/black_cloak_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/black_cloak_hood.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/black_cloak_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..a7b375e72273d279d972bd5242e68cbe0c2e2210
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/black_cloak_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/black_cloak_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/black_cloak_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..7d486928b3f8a89d929d1152bdc38d6a8c74a04f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/black_cloak_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/boots_edens_guile.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/boots_edens_guile.png
new file mode 100644
index 0000000000000000000000000000000000000000..b568fc622b54df82df31c0c06c93ef418027565b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/boots_edens_guile.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/boots_of_the_hunter.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/boots_of_the_hunter.png
new file mode 100644
index 0000000000000000000000000000000000000000..c74aff3c8826aaf94dd06486a927beb0e9404f9b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/boots_of_the_hunter.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/breath_of_eyal.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/breath_of_eyal.png
new file mode 100644
index 0000000000000000000000000000000000000000..a2d9aa73e0f862304cee25dc6af8d37ee0605922
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/breath_of_eyal.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/cinderfeet.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/cinderfeet.png
new file mode 100644
index 0000000000000000000000000000000000000000..2e42e62e0aabe1a3ddc1c174dfd7d238c9fe5f52
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/cinderfeet.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/cloak_threads_of_fate_behind.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/cloak_threads_of_fate_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..ae1bcc39273cf9c5c810ae2f1f6e65893a7bbfb3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/cloak_threads_of_fate_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/cloak_threads_of_fate_hood.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/cloak_threads_of_fate_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..02e1a4d55ac0aae7c8c9b4aba72f0a5e36b21d75
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/cloak_threads_of_fate_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/cloak_threads_of_fate_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/cloak_threads_of_fate_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..f67c176a78e0f1041a343052518c65ae0a87a616
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/cloak_threads_of_fate_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/cloak_winds_whisper_behind.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/cloak_winds_whisper_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..d9ec5b96b90fa181fc6d122e976aff1d2941ab16
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/cloak_winds_whisper_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/cloak_winds_whisper_hood.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/cloak_winds_whisper_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..f5a304e608750a1a5aaa57582cecfa464849c0b4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/cloak_winds_whisper_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/cloak_winds_whisper_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/cloak_winds_whisper_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..00450f92cff06d3adea1777e89d6ef0be57b6cec
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/cloak_winds_whisper_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/cloth_armour_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/cloth_armour_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..dfa2e225078511c411540b81c5c7b8752a2db8f7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/cloth_armour_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/cloth_of_dreams_behind.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/cloth_of_dreams_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..57674b2124589c9adeaf4c083537b84a8fd40a0b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/cloth_of_dreams_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/cloth_of_dreams_hood.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/cloth_of_dreams_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..12ea34c4214cf3edfe11e3101feb71a8c09ef3bf
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/cloth_of_dreams_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/cloth_of_dreams_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/cloth_of_dreams_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..9b23d6608ed70bb62f7dd627524ba3a682873aa4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/cloth_of_dreams_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/corrupted_gaze.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/corrupted_gaze.png
new file mode 100644
index 0000000000000000000000000000000000000000..f7a46461795ae352534c50faa48a251edd64f5d2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/corrupted_gaze.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/crimson_robe.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/crimson_robe.png
new file mode 100644
index 0000000000000000000000000000000000000000..6cc8f55a30fbd01d917b7ef1b927896168c3fe6c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/crimson_robe.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/crown_of_burning_pain.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/crown_of_burning_pain.png
new file mode 100644
index 0000000000000000000000000000000000000000..b5afb6fc94a9090d7bff27a21b8650bb24edb5a6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/crown_of_burning_pain.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/crown_of_command.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/crown_of_command.png
new file mode 100644
index 0000000000000000000000000000000000000000..d20f27311f3df638cab56b9df1cecee3cd4229c5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/crown_of_command.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/crown_of_eternal_night.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/crown_of_eternal_night.png
new file mode 100644
index 0000000000000000000000000000000000000000..3e23634fb1a8e827c904f173cf95078d97d6ecf1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/crown_of_eternal_night.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/crown_of_the_elements.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/crown_of_the_elements.png
new file mode 100644
index 0000000000000000000000000000000000000000..1aa7824c9670646f880b590f90256dab7cc2f19b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/crown_of_the_elements.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/crystles_astral_bindings.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/crystles_astral_bindings.png
new file mode 100644
index 0000000000000000000000000000000000000000..41cf64f58d4768ddc112eb0da9491c9531c63088
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/crystles_astral_bindings.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/dakhtuns_gauntlets.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/dakhtuns_gauntlets.png
new file mode 100644
index 0000000000000000000000000000000000000000..a8463e1115c625881febf37d416aec55fd1cf447
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/dakhtuns_gauntlets.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/deaths_embrace.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/deaths_embrace.png
new file mode 100644
index 0000000000000000000000000000000000000000..ad285b7f635596e7c9aca887de81d2b249834959
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/deaths_embrace.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/decayed_visage.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/decayed_visage.png
new file mode 100644
index 0000000000000000000000000000000000000000..82c3eee1ca5d08140a2cabcddeb5b8b02769f3c2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/decayed_visage.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/destalas_scales_whisper_behind.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/destalas_scales_whisper_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..4dfece9b3c03973372abe319cc90ea9e0178dd5a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/destalas_scales_whisper_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/destalas_scales_whisper_hood.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/destalas_scales_whisper_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..77472dec16ac9a212fd0b8802a790a865f364867
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/destalas_scales_whisper_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/destalas_scales_whisper_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/destalas_scales_whisper_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..61b058f863eb5674e61797f042f7b08902ab81b0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/destalas_scales_whisper_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/dgs_clothes.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/dgs_clothes.png
index 8bcba205ae75a0e67221379366766ad3023a3835..718ffdf8b97306df1e100527a9d979f6bca2e83e 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/dgs_clothes.png and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/dgs_clothes.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/diadem_alettas_diadem.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/diadem_alettas_diadem.png
new file mode 100644
index 0000000000000000000000000000000000000000..da9d35556fdfc225fc0347eb4a20a6f0b092448d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/diadem_alettas_diadem.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/dragon_helm_of_kroltar.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/dragon_helm_of_kroltar.png
new file mode 100644
index 0000000000000000000000000000000000000000..885bee106993b2cfbf2fa20c342570363fa1e084
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/dragon_helm_of_kroltar.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/dragonskull_helmet.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/dragonskull_helmet.png
new file mode 100644
index 0000000000000000000000000000000000000000..96dfd913ca8daf723afa82ec13689811767eccd0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/dragonskull_helmet.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/eel_skin_armor.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/eel_skin_armor.png
new file mode 100644
index 0000000000000000000000000000000000000000..30f1ba50d06cff4c12c83461ff926928a3cc69ea
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/eel_skin_armor.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/ethereal_embrace_behind.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/ethereal_embrace_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..f38d78e0188bc7f877e2c9ede71b167657b293f6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/ethereal_embrace_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/ethereal_embrace_hood.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/ethereal_embrace_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..ddea27ae8151ad0643d69b0a92caa00d5827903d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/ethereal_embrace_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/ethereal_embrace_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/ethereal_embrace_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..5a8b5da8da6b77ae808cd7aef883a32d57b67e37
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/ethereal_embrace_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/evermoss_robe.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/evermoss_robe.png
new file mode 100644
index 0000000000000000000000000000000000000000..c5f285447445ed8fcc9d5498d0fb11b62eec384e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/evermoss_robe.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/eye_of_the_forest.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/eye_of_the_forest.png
new file mode 100644
index 0000000000000000000000000000000000000000..4ccf135e12a73ea48823cc26f063ff53f737df57
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/eye_of_the_forest.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/fist_of_the_destroyer.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/fist_of_the_destroyer.png
new file mode 100644
index 0000000000000000000000000000000000000000..db6f546d424c92c40745a43ce3a41e2badc59439
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/fist_of_the_destroyer.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/frost_treads.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/frost_treads.png
new file mode 100644
index 0000000000000000000000000000000000000000..28ee564757e1133eeade1658865e76083fffb701
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/frost_treads.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/frozen_shards.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/frozen_shards.png
new file mode 100644
index 0000000000000000000000000000000000000000..aa97534c669e41079f12377226e6d7298d33245e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/frozen_shards.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/frozen_shroud_behind.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/frozen_shroud_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..58d6bac10980ae130966c16e5bb37fcaa367c1b0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/frozen_shroud_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/frozen_shroud_hood.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/frozen_shroud_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..99ad5867178053173229237eec498848f5235bdc
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/frozen_shroud_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/frozen_shroud_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/frozen_shroud_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..68b98aa901b1dbf3c6ec27f318411574cbb0fa42
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/frozen_shroud_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/gauntlets_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/gauntlets_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..1ca40c27fdd6393454909182b6730765611af573
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/gauntlets_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/gloves_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/gloves_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..545a767141194f8431d3956bf1deb0bf133f0500
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/gloves_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/gloves_flamewrought.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/gloves_flamewrought.png
new file mode 100644
index 0000000000000000000000000000000000000000..915f3b932413548e8379355c7245a6a2f634ed18
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/gloves_flamewrought.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/gloves_of_the_firm_hand.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/gloves_of_the_firm_hand.png
new file mode 100644
index 0000000000000000000000000000000000000000..405fc717974f7e796f50703c302dd31b555ef181
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/gloves_of_the_firm_hand.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/grip_of_death.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/grip_of_death.png
index 49c36d0e66c0a4b4836311c12b63b0d5dd5eb2c6..36b24ce971ef6dfe30460da6b818fc76d569ef5e 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/grip_of_death.png and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/grip_of_death.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/guise_of_the_hated_behind.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/guise_of_the_hated_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..28b44986b7eb3aeaa2fe4a99fae66e9362306e5c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/guise_of_the_hated_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/guise_of_the_hated_hood.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/guise_of_the_hated_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..9c9254f9f66aaa4e48d91c169bf9becf73a66f8c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/guise_of_the_hated_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/guise_of_the_hated_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/guise_of_the_hated_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..e08566899177c60c5257b47e6bb7896b6b3c019f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/guise_of_the_hated_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/hand_of_the_worldshaper.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/hand_of_the_worldshaper.png
new file mode 100644
index 0000000000000000000000000000000000000000..8bc2b49e5ab52a6845088570315ac7f34b7562eb
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/hand_of_the_worldshaper.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/harkor_zun_gauntlets.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/harkor_zun_gauntlets.png
new file mode 100644
index 0000000000000000000000000000000000000000..43c63e1936179eb1d6f879d7c0a6e64c2511ff9c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/harkor_zun_gauntlets.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/heavy_armour_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/heavy_armour_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..2ba00cee473c191f04c3d1481403ffcd32f47263
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/heavy_armour_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/helm_of_garkul.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/helm_of_garkul.png
new file mode 100644
index 0000000000000000000000000000000000000000..c7129a1f173d99808d2e86a219beaf7ccb552aec
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/helm_of_garkul.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/helm_of_the_dwarven_emperors.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/helm_of_the_dwarven_emperors.png
new file mode 100644
index 0000000000000000000000000000000000000000..47ae785c1e584a520a2b9b845d743064890a2cd6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/helm_of_the_dwarven_emperors.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/hornet_stingers.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/hornet_stingers.png
new file mode 100644
index 0000000000000000000000000000000000000000..e268da9112f9cb034c089a2dedcbfcc77619a75a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/hornet_stingers.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/iron_mail_of_bloodletting.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/iron_mail_of_bloodletting.png
new file mode 100644
index 0000000000000000000000000000000000000000..fabd1921fc6b1626aa85c98442ec0185607859fb
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/iron_mail_of_bloodletting.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_1Haxe_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_1Haxe_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..97b6f6be64b81cd0d582d50719ad72072690165b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_1Haxe_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_1Hmace_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_1Hmace_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..be4347785fb6e497d2292825b832b47a54f99b6a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_1Hmace_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_1Hsword_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_1Hsword_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..3e858893befd9e91376785c1d047a33962d7750d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_1Hsword_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_2Haxe_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_2Haxe_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..d43359b05d54b1be9b29666469b88617d0439c0b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_2Haxe_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_2Hmace_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_2Hmace_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..a948b1a2eae509388c73824c7c83aa914fdea442
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_2Hmace_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_2Hsword_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_2Hsword_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..292ec3e2467034ca1fdad983cb39ab8df6991fcf
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_2Hsword_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_amethyst_of_sanctuary.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_amethyst_of_sanctuary.png
new file mode 100644
index 0000000000000000000000000000000000000000..45c6f08bf75fe95b46cb0b39db0916c744ce48fe
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_amethyst_of_sanctuary.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_awaken_staff_of_absorbtion.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_awaken_staff_of_absorbtion.png
new file mode 100644
index 0000000000000000000000000000000000000000..bb0b768afc15b59221fad5e73191a6ed61a0d95c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_awaken_staff_of_absorbtion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_blighted_maul.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_blighted_maul.png
new file mode 100644
index 0000000000000000000000000000000000000000..93093a9b9455b7e620f1b78430fe59792ce1a3f2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_blighted_maul.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_bloomsoul.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_bloomsoul.png
new file mode 100644
index 0000000000000000000000000000000000000000..42ce3ecbbf36aa1b3e82c66ef1521c8dac38a315
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_bloomsoul.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_borosks_hate.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_borosks_hate.png
new file mode 100644
index 0000000000000000000000000000000000000000..c62e5e247f16a85c0be731a7d22eb764c8f5836f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_borosks_hate.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_bow_corpsebow.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_bow_corpsebow.png
new file mode 100644
index 0000000000000000000000000000000000000000..32970c9ac2716b869fe15b5a01ebf39d1ad2c747
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_bow_corpsebow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_bow_epochs_curve.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_bow_epochs_curve.png
new file mode 100644
index 0000000000000000000000000000000000000000..528f1fed3f021844989f70f35e5b3a04ed89753f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_bow_epochs_curve.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_champions_will.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_champions_will.png
new file mode 100644
index 0000000000000000000000000000000000000000..e7ce4d0c15e81f0bfb977995686b0080ce2a6b44
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_champions_will.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_colaryem.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_colaryem.png
new file mode 100644
index 0000000000000000000000000000000000000000..8700a33dcce265623e140b05376f994778f84e18
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_colaryem.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_core_of_the_forge.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_core_of_the_forge.png
new file mode 100644
index 0000000000000000000000000000000000000000..85c20911be57e29261d802bd404b1990c2fd4a09
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_core_of_the_forge.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_corpus_2.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_corpus_2.png
new file mode 100644
index 0000000000000000000000000000000000000000..bf362b274485f8e8f3ad29669b5a4b8c8b6df481
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_corpus_2.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_crystal_shard.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_crystal_shard.png
new file mode 100644
index 0000000000000000000000000000000000000000..3fc0bdc65b0e623b38082d340a4f999adf754f96
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_crystal_shard.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_dagger_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_dagger_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..1410bb55533b5404d4731b409433c6265832e386
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_dagger_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_dream_malleus.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_dream_malleus.png
new file mode 100644
index 0000000000000000000000000000000000000000..263f88c340eb421d442e03c60f1606f8b44b662b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_dream_malleus.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_eclipse.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_eclipse.png
new file mode 100644
index 0000000000000000000000000000000000000000..7f389e17f326ac37666de2f568c160dfb007a070
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_eclipse.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_eyals_will.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_eyals_will.png
new file mode 100644
index 0000000000000000000000000000000000000000..01dd800ce1e77f17b918004265a3f9affbe27c9b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_eyals_will.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_eye_of_the_wyrm.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_eye_of_the_wyrm.png
new file mode 100644
index 0000000000000000000000000000000000000000..4910109a76cf5e4f6708e4acf4268e2b8ced86ff
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_eye_of_the_wyrm.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_focus_whip.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_focus_whip.png
new file mode 100644
index 0000000000000000000000000000000000000000..250940bacb456cd6242a207fc141d5e4bb19a962
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_focus_whip.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_genocide.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_genocide.png
new file mode 100644
index 0000000000000000000000000000000000000000..ed5729144c163fbcdff9b4c70187872483be93de
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_genocide.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_gravitational_staff.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_gravitational_staff.png
new file mode 100644
index 0000000000000000000000000000000000000000..eeb95709e76066c9ff1912aad1c3bf0de887aacd
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_gravitational_staff.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_great_caller.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_great_caller.png
new file mode 100644
index 0000000000000000000000000000000000000000..839e6d91fbf2bb90759b63412ca309569d56061a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_great_caller.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_guidance.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_guidance.png
new file mode 100644
index 0000000000000000000000000000000000000000..58c8cd188d8c51dda1be012a18ee767f2566dd98
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_guidance.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_hareskin_sling.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_hareskin_sling.png
new file mode 100644
index 0000000000000000000000000000000000000000..6c0078f47a9a08c03748c57e81fe28f602f8c239
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_hareskin_sling.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_hydras_bite.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_hydras_bite.png
new file mode 100644
index 0000000000000000000000000000000000000000..9e9ba9f9c44cc558422406cecd906bce32d90cc0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_hydras_bite.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_latafayn.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_latafayn.png
new file mode 100644
index 0000000000000000000000000000000000000000..cd877a496c46b4be40b49127b7709b39cd345059
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_latafayn.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_merkuls_second_eye.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_merkuls_second_eye.png
new file mode 100644
index 0000000000000000000000000000000000000000..29a2b1597cb83ba773cc1c5bc8bc4317b8c388d2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_merkuls_second_eye.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_nexus_of_the_way.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_nexus_of_the_way.png
new file mode 100644
index 0000000000000000000000000000000000000000..cb2973b516bc3bc60decaf4ab7f15db79c73cab9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_nexus_of_the_way.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_nithans_force.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_nithans_force.png
new file mode 100644
index 0000000000000000000000000000000000000000..d5b85ad43e1e1e0f13630b93dd9049409aca8c71
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_nithans_force.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_obliterator.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_obliterator.png
new file mode 100644
index 0000000000000000000000000000000000000000..3829c2f910e8af1a093ab3d7816131a3085d8253
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_obliterator.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_oozing_heart.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_oozing_heart.png
new file mode 100644
index 0000000000000000000000000000000000000000..41e2d6e438421cf9eea2fbc6b0d981d98170c255
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_oozing_heart.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_psionic_fury.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_psionic_fury.png
new file mode 100644
index 0000000000000000000000000000000000000000..4b56f57ba3c4d2341429f3047a05b6fcffa947a1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_psionic_fury.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_rod_of_sarrilon.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_rod_of_sarrilon.png
new file mode 100644
index 0000000000000000000000000000000000000000..24eeec22c9c8dc1c836a9825a24fcfa6db26662b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_rod_of_sarrilon.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_sceptre_of_the_archlich.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_sceptre_of_the_archlich.png
new file mode 100644
index 0000000000000000000000000000000000000000..324af6147c447e6caec92f297f72c31d8e574b55
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_sceptre_of_the_archlich.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_serpents_glare.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_serpents_glare.png
new file mode 100644
index 0000000000000000000000000000000000000000..d2eab0757c61c66f496f66c6ace30a0779686ff5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_serpents_glare.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_shield_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_shield_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..31e36d71326e830d2e703534575cc12ef84cce3a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_shield_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_skeletal_claw.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_skeletal_claw.png
new file mode 100644
index 0000000000000000000000000000000000000000..79f4e25891b29a94b389a85cdfa40181fb3a1594
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_skeletal_claw.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_sling_eldoral_last_resort.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_sling_eldoral_last_resort.png
new file mode 100644
index 0000000000000000000000000000000000000000..edcbdc6467c5a126cca8ad16b43743426cf78f98
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_sling_eldoral_last_resort.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_spectral_blade.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_spectral_blade.png
new file mode 100644
index 0000000000000000000000000000000000000000..5fb7117894aa72c52e448800e886190413c6163c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_spectral_blade.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_spellcrusher.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_spellcrusher.png
new file mode 100644
index 0000000000000000000000000000000000000000..4537fa9f29b666329458ad65f108cc851c9d8c19
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_spellcrusher.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_staff_bolbums_big_knocker.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_staff_bolbums_big_knocker.png
new file mode 100644
index 0000000000000000000000000000000000000000..a82d29cf43f28a366aa6a642eb56018d6f96dca3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_staff_bolbums_big_knocker.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_staff_broken_bottom_telos.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_staff_broken_bottom_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..0c66392174325560bd857ab9cfb040a62860d03d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_staff_broken_bottom_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_staff_broken_top_telos.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_staff_broken_top_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..f149c0207b3f8f51edbd9f71b3ece0efad034236
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_staff_broken_top_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_staff_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_staff_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..6dd5444957946b7b1014c2f22af60c065f64c5b0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_staff_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_staff_kors_fall.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_staff_kors_fall.png
new file mode 100644
index 0000000000000000000000000000000000000000..7b0d5469c3a2ad094ad35eabc11ef933bfa084de
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_staff_kors_fall.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_staff_lost_staff_archmage_tarelion.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_staff_lost_staff_archmage_tarelion.png
new file mode 100644
index 0000000000000000000000000000000000000000..efdbdc6be9902e3417f095e0d55840f4bf613cab
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_staff_lost_staff_archmage_tarelion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_staff_of_absorbtion.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_staff_of_absorbtion.png
new file mode 100644
index 0000000000000000000000000000000000000000..9051a325883895e2dac6cb9d0f1cb3614fcc7886
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_staff_of_absorbtion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_staff_of_arcane_supremacy.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_staff_of_arcane_supremacy.png
new file mode 100644
index 0000000000000000000000000000000000000000..5897d7895978a82ad6f0f55d8e582f9abaebf6e2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_staff_of_arcane_supremacy.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_staff_of_destruction.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_staff_of_destruction.png
new file mode 100644
index 0000000000000000000000000000000000000000..f607ce1df1263ee220d54b2f6cef3b0f2eee7a13
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_staff_of_destruction.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_staff_penitence.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_staff_penitence.png
new file mode 100644
index 0000000000000000000000000000000000000000..3a61df02ec28bacc39cee375233bdf01f439f171
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_staff_penitence.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_staff_voice_of_telos.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_staff_voice_of_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..4dc7aeaebe00a8047a55cc58ad2b47bb15140486
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_staff_voice_of_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_storm_fury.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_storm_fury.png
new file mode 100644
index 0000000000000000000000000000000000000000..a1cd8c39c45de7183253126c717742e2c723bceb
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_storm_fury.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_stormlash.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_stormlash.png
new file mode 100644
index 0000000000000000000000000000000000000000..2354dfaf46c5bf4c723497feb54df9d66c7e670a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_stormlash.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_surefire.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_surefire.png
new file mode 100644
index 0000000000000000000000000000000000000000..1c35017e3c0d3f1b1eac4274b2a8478758e21fcf
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_surefire.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_telos_spire_of_power.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_telos_spire_of_power.png
new file mode 100644
index 0000000000000000000000000000000000000000..49e1f639455716f0175009e23634adaa2e696a08
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_telos_spire_of_power.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_thaloren_tree_longbow.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_thaloren_tree_longbow.png
new file mode 100644
index 0000000000000000000000000000000000000000..978129fe5419e3d6f67c77ba82d066256367042a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_thaloren_tree_longbow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_trident_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_trident_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..abc7d21e7460ebad8c38d4f6a591f5041b875eef
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_trident_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_umbral_razor.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_umbral_razor.png
new file mode 100644
index 0000000000000000000000000000000000000000..184bfec1af6ccff284d76e49b1163f138e135257
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_umbral_razor.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_unstoppable_mauler.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_unstoppable_mauler.png
new file mode 100644
index 0000000000000000000000000000000000000000..a387d345ab5b3b7071229794a54685d945eb365c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_unstoppable_mauler.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_voratun_hammer_of_the_deep_bellow.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_voratun_hammer_of_the_deep_bellow.png
new file mode 100644
index 0000000000000000000000000000000000000000..6e69813fe0cc4f11d67e055d3d37595c4e90f911
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_voratun_hammer_of_the_deep_bellow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_warmaster_gnargs_murderblade.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_warmaster_gnargs_murderblade.png
new file mode 100644
index 0000000000000000000000000000000000000000..a738d187aa23225f8f9f377661ddbe20c4f891a7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_warmaster_gnargs_murderblade.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_whip_of_urh_rok.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_whip_of_urh_rok.png
new file mode 100644
index 0000000000000000000000000000000000000000..6871fb558cd8912f605ca9319e1630be0287ea1c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_whip_of_urh_rok.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_whip_scorpions_tail.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_whip_scorpions_tail.png
new file mode 100644
index 0000000000000000000000000000000000000000..7fe4fb863abf6d4db66fa87a6be221111b567eb1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_whip_scorpions_tail.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_writhing_essence_of_nightmares.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_writhing_essence_of_nightmares.png
new file mode 100644
index 0000000000000000000000000000000000000000..0f4a4c86793a74149a105cdc27665fb4537c684e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/left_writhing_essence_of_nightmares.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/light_armour_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/light_armour_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..68260aaf706acd8c0d090a45b4481a35b2cc2989
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/light_armour_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/malslek_the_accursed_hat.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/malslek_the_accursed_hat.png
new file mode 100644
index 0000000000000000000000000000000000000000..072578500c8fc0559a0699321e869bb1e72a1b9b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/malslek_the_accursed_hat.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/masochism.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/masochism.png
new file mode 100644
index 0000000000000000000000000000000000000000..280c6a259625e9db1deaf791770cea50a2d72940
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/masochism.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/massive_armour_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/massive_armour_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..f8fb598a3e07e962b31fad156fe6996381b2be6a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/massive_armour_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/molten_skin.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/molten_skin.png
index 065da594034e1b0bc670426543785206f96cb753..ff3fce55f680d0d39a5bc8134af2abf057df16a7 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/molten_skin.png and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/molten_skin.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/mummy_wrappings.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/mummy_wrappings.png
index 9133d467707808df6b710723d617f722e1a3482d..36e5ece3360540261df7fb3afdac8d27ad16a32b 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/mummy_wrappings.png and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/mummy_wrappings.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/omniscience.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/omniscience.png
new file mode 100644
index 0000000000000000000000000000000000000000..43274f6a7efe1dd7b35acee6856a98a837031e79
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/omniscience.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/plate_armor_of_the_king.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/plate_armor_of_the_king.png
new file mode 100644
index 0000000000000000000000000000000000000000..fef6525e2cfd55a3ecc02fd29e2a61ae17d95b00
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/plate_armor_of_the_king.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/plate_of_the_blackened_mind.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/plate_of_the_blackened_mind.png
new file mode 100644
index 0000000000000000000000000000000000000000..10277c865125c688b18e52158b53fe5d5fd451e5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/plate_of_the_blackened_mind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/pouch_of_the_subconscious.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/pouch_of_the_subconscious.png
new file mode 100644
index 0000000000000000000000000000000000000000..881c1b51b068dd86157855b70920c929258c2b30
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/pouch_of_the_subconscious.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/quiver_of_domination.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/quiver_of_domination.png
new file mode 100644
index 0000000000000000000000000000000000000000..a8068c26dcf4564448a1a76392839c072146e44b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/quiver_of_domination.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/quiver_of_the_sun.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/quiver_of_the_sun.png
new file mode 100644
index 0000000000000000000000000000000000000000..8c73f4885030403c6d7f8a0eae9c4b6f19c7424d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/quiver_of_the_sun.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/radiance_behind.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/radiance_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..a8b0b21c6344be58ca6456edf18151fe67dcf525
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/radiance_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/radiance_hood.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/radiance_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..da103aacc98231168759ba94e99199751220d7fb
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/radiance_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/radiance_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/radiance_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..91746244d8c0f8f93636bd364a2e4190fb6c4576
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/radiance_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_1Haxe_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_1Haxe_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..b083430b6cb0ee506fb6494b3a3afdf9d4408a49
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_1Haxe_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_1Hmace_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_1Hmace_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..42303d59e545f0f74b41b8641933e78de2426842
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_1Hmace_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_1Hsword_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_1Hsword_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..218631098a3f9a6c3b032ef604f6beef2471336c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_1Hsword_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_2Haxe_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_2Haxe_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..5c15de6ee10caaf78fffdf773eee64e72767e4e8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_2Haxe_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_2Hmace_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_2Hmace_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..8c0365eedef37108a72e771b9a53e6a6bdf6036d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_2Hmace_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_2Hsword_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_2Hsword_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..db0ca919607f21d3e922b02f96290874459e5787
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_2Hsword_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_amethyst_of_sanctuary.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_amethyst_of_sanctuary.png
new file mode 100644
index 0000000000000000000000000000000000000000..e95a4ae75075dc9c4deda3d5a08cfa1bae08a298
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_amethyst_of_sanctuary.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_awaken_staff_of_absorbtion.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_awaken_staff_of_absorbtion.png
new file mode 100644
index 0000000000000000000000000000000000000000..3c8cbb360a01ae8e1cd24dc425991ff92a10c98a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_awaken_staff_of_absorbtion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_blighted_maul.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_blighted_maul.png
new file mode 100644
index 0000000000000000000000000000000000000000..a5d7767d8c2583443b8568a67c2029d434bcb742
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_blighted_maul.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_bloomsoul.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_bloomsoul.png
new file mode 100644
index 0000000000000000000000000000000000000000..e7ee94061750ac58af723a7725925503bab416de
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_bloomsoul.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_borosks_hate.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_borosks_hate.png
new file mode 100644
index 0000000000000000000000000000000000000000..eefdf422d9752099d65ab76d23209d3800bcee12
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_borosks_hate.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_bow_corpsebow.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_bow_corpsebow.png
new file mode 100644
index 0000000000000000000000000000000000000000..fa9ea74bbd75d3fd2b0f2a11af55ccc8fd439d60
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_bow_corpsebow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_bow_epochs_curve.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_bow_epochs_curve.png
new file mode 100644
index 0000000000000000000000000000000000000000..69d5ac13bb67c59433c3027b32eb5704cbd1325c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_bow_epochs_curve.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_champions_will.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_champions_will.png
new file mode 100644
index 0000000000000000000000000000000000000000..3c188d97e4308babcb92a14d9aa6f3b9f4a6bce0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_champions_will.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_colaryem.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_colaryem.png
new file mode 100644
index 0000000000000000000000000000000000000000..efe568b44f805d99e54e9d8245301eab88e3eacd
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_colaryem.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_core_of_the_forge.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_core_of_the_forge.png
new file mode 100644
index 0000000000000000000000000000000000000000..45059807788d675c92dc5024348091cafa28d940
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_core_of_the_forge.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_corpus_2.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_corpus_2.png
new file mode 100644
index 0000000000000000000000000000000000000000..4c492ff70950b9be043b7c1c4b60c2977b4bb02d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_corpus_2.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_crystal_shard.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_crystal_shard.png
new file mode 100644
index 0000000000000000000000000000000000000000..4a6b94349e29c04635d90e1dc8a6b5327d2c1546
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_crystal_shard.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_dagger_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_dagger_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..48ab2702cc7d0e97c821539074680261dc1f388c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_dagger_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_dream_malleus.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_dream_malleus.png
new file mode 100644
index 0000000000000000000000000000000000000000..a64baa67619ed830bae7c9bda1c4bdc7a417fc70
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_dream_malleus.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_eclipse.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_eclipse.png
new file mode 100644
index 0000000000000000000000000000000000000000..65c12a3a56f4a2629f514c18dee3a262a209804f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_eclipse.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_eyals_will.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_eyals_will.png
new file mode 100644
index 0000000000000000000000000000000000000000..9240709122bc7a5d11263738cc90a71085b45d25
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_eyals_will.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_eye_of_the_wyrm.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_eye_of_the_wyrm.png
new file mode 100644
index 0000000000000000000000000000000000000000..cbf5ded4b97637f09731420933009b72641db362
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_eye_of_the_wyrm.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_focus_whip.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_focus_whip.png
new file mode 100644
index 0000000000000000000000000000000000000000..d9afb596f9e80ead262ccb9027c30f8776dbf1cc
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_focus_whip.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_genocide.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_genocide.png
new file mode 100644
index 0000000000000000000000000000000000000000..903518fca0e2ad0d3f5ff70e3107566010cde2cd
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_genocide.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_gravitational_staff.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_gravitational_staff.png
new file mode 100644
index 0000000000000000000000000000000000000000..aa8ace058772937dc9d0e08c8ccd647a67dd476f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_gravitational_staff.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_great_caller.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_great_caller.png
new file mode 100644
index 0000000000000000000000000000000000000000..9e9749c16acc6dc60857a4c1bb9623605258c552
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_great_caller.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_guidance.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_guidance.png
new file mode 100644
index 0000000000000000000000000000000000000000..ca1337664dad48c4bc2eca6370038527df09ef58
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_guidance.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_hareskin_sling.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_hareskin_sling.png
new file mode 100644
index 0000000000000000000000000000000000000000..7bfa39f69a9b4b1d2c7954b026978b68fb0bd7d2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_hareskin_sling.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_hydras_bite.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_hydras_bite.png
new file mode 100644
index 0000000000000000000000000000000000000000..11f0d5b3ec3af73da3a16dcb6500c94c8742c24f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_hydras_bite.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_latafayn.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_latafayn.png
new file mode 100644
index 0000000000000000000000000000000000000000..0def0e081f4ad5c72277c3609778596ce1af82a3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_latafayn.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_merkuls_second_eye.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_merkuls_second_eye.png
new file mode 100644
index 0000000000000000000000000000000000000000..2f169bb4d7863f2231c01a4a528a689caf5f7a04
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_merkuls_second_eye.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_nexus_of_the_way.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_nexus_of_the_way.png
new file mode 100644
index 0000000000000000000000000000000000000000..eb5a0154d55753ae16beaa1e87108d90ee54fb98
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_nexus_of_the_way.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_nithans_force.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_nithans_force.png
new file mode 100644
index 0000000000000000000000000000000000000000..7e6026b5d73c379e7eaa395a7c6e511cc3b71138
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_nithans_force.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_obliterator.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_obliterator.png
new file mode 100644
index 0000000000000000000000000000000000000000..0169d67916a2f24fc7781e8b27727e72f98a1e96
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_obliterator.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_oozing_heart.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_oozing_heart.png
new file mode 100644
index 0000000000000000000000000000000000000000..42b3f10342225c92e27c78622a92b6cfd4a40f3f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_oozing_heart.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_psionic_fury.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_psionic_fury.png
new file mode 100644
index 0000000000000000000000000000000000000000..ad124e1f0129eadf46471ca9c2756494ff955c8f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_psionic_fury.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_rod_of_sarrilon.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_rod_of_sarrilon.png
new file mode 100644
index 0000000000000000000000000000000000000000..b18d41d7b489d3d305751525804b7ad14215599f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_rod_of_sarrilon.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_sceptre_of_the_archlich.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_sceptre_of_the_archlich.png
new file mode 100644
index 0000000000000000000000000000000000000000..1968301b41cff5e44f2a6b554ccfd6a8de34ba54
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_sceptre_of_the_archlich.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_serpents_glare.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_serpents_glare.png
new file mode 100644
index 0000000000000000000000000000000000000000..1f0fc1330f7f58843b39164a90b04f55c8c1b7ec
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_serpents_glare.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_shield_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_shield_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..32ba2a920e34b58903f2247c996d5133d6a3e3c8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_shield_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_skeletal_claw.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_skeletal_claw.png
new file mode 100644
index 0000000000000000000000000000000000000000..4c4636336ce60c5efe6640b62103d0b77a45d0c4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_skeletal_claw.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_sling_eldoral_last_resort.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_sling_eldoral_last_resort.png
new file mode 100644
index 0000000000000000000000000000000000000000..86ee6709dbf646467130670be3d4a943482ee8e3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_sling_eldoral_last_resort.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_spectral_blade.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_spectral_blade.png
new file mode 100644
index 0000000000000000000000000000000000000000..72a63b8763389990f3341fe5768afd3d1ca3fdee
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_spectral_blade.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_spellcrusher.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_spellcrusher.png
new file mode 100644
index 0000000000000000000000000000000000000000..9c613129e99f7fbbe2c4b9f4ac41939e74ad3303
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_spellcrusher.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_staff_bolbums_big_knocker.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_staff_bolbums_big_knocker.png
new file mode 100644
index 0000000000000000000000000000000000000000..200d6a649e65801f01a77537a36cc5cc1abee58b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_staff_bolbums_big_knocker.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_staff_broken_bottom_telos.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_staff_broken_bottom_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..6bec1f91e9cfe8ae61c1811fcff7775fcc7e199c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_staff_broken_bottom_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_staff_broken_top_telos.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_staff_broken_top_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..e41822182544021406742430f6c166d4cd7c6d80
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_staff_broken_top_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_staff_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_staff_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..5e18cd4dee9e9973bd0ef3652221c5b3e53bf974
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_staff_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_staff_kors_fall.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_staff_kors_fall.png
new file mode 100644
index 0000000000000000000000000000000000000000..cd603bb4b8824b7ad9ffa510357486df4bed41b7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_staff_kors_fall.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_staff_lost_staff_archmage_tarelion.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_staff_lost_staff_archmage_tarelion.png
new file mode 100644
index 0000000000000000000000000000000000000000..a5166cfa9b3da7047013083f4cd35f0aec7058b1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_staff_lost_staff_archmage_tarelion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_staff_of_absorbtion.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_staff_of_absorbtion.png
new file mode 100644
index 0000000000000000000000000000000000000000..4f7d8a70f57f8345de65289b516ea2c70ba17009
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_staff_of_absorbtion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_staff_of_arcane_supremacy.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_staff_of_arcane_supremacy.png
new file mode 100644
index 0000000000000000000000000000000000000000..034602703c9529f2cf4bf03395979cbd67ebbea4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_staff_of_arcane_supremacy.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_staff_of_destruction.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_staff_of_destruction.png
new file mode 100644
index 0000000000000000000000000000000000000000..3d05bd8ea5fe6f4041a8d4b74564a953a439b58b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_staff_of_destruction.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_staff_penitence.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_staff_penitence.png
new file mode 100644
index 0000000000000000000000000000000000000000..ab393baf9d194f2efddd04a698a084dec358ce20
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_staff_penitence.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_staff_voice_of_telos.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_staff_voice_of_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..18dfcef72003fc027bf4a7ec8b1db7fdd6567f66
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_staff_voice_of_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_storm_fury.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_storm_fury.png
new file mode 100644
index 0000000000000000000000000000000000000000..017b50ed19935813c684c209b214e7cab5777bee
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_storm_fury.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_stormlash.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_stormlash.png
new file mode 100644
index 0000000000000000000000000000000000000000..7e9f6ae80f94313001dbd91ec26b4f3afbdb7970
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_stormlash.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_surefire.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_surefire.png
new file mode 100644
index 0000000000000000000000000000000000000000..912361cda0949a17d52ba5394eaf6999b52949dd
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_surefire.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_telos_spire_of_power.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_telos_spire_of_power.png
new file mode 100644
index 0000000000000000000000000000000000000000..01458e5604fb4d23fc020e8c4157a91905a5bdbf
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_telos_spire_of_power.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_thaloren_tree_longbow.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_thaloren_tree_longbow.png
new file mode 100644
index 0000000000000000000000000000000000000000..8c7bf8158c1e2bec4eb50d48423c0abeb5279290
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_thaloren_tree_longbow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_trident_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_trident_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..8dc45d09460d4fe53f49a44f6807505d7330c6f3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_trident_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_umbral_razor.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_umbral_razor.png
new file mode 100644
index 0000000000000000000000000000000000000000..32d1573beb71dde63ebe302efd328c19f28b0aa4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_umbral_razor.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_unstoppable_mauler.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_unstoppable_mauler.png
new file mode 100644
index 0000000000000000000000000000000000000000..f5aa25887dae8f1a292c7e655ec9e60c1c1bfa0d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_unstoppable_mauler.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_voratun_hammer_of_the_deep_bellow.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_voratun_hammer_of_the_deep_bellow.png
new file mode 100644
index 0000000000000000000000000000000000000000..733bd7c3254886bb8a89a84e2aef6ea518dc5153
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_voratun_hammer_of_the_deep_bellow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_warmaster_gnargs_murderblade.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_warmaster_gnargs_murderblade.png
new file mode 100644
index 0000000000000000000000000000000000000000..22ade7a97ce2617e4421ae752cd1822432d7ae7e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_warmaster_gnargs_murderblade.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_whip_of_urh_rok.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_whip_of_urh_rok.png
new file mode 100644
index 0000000000000000000000000000000000000000..d32da3f43a809311fb5ae033e372a598b1a3bc90
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_whip_of_urh_rok.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_whip_scorpions_tail.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_whip_scorpions_tail.png
new file mode 100644
index 0000000000000000000000000000000000000000..ea0b0bbb284339e2641924eba9cb50683eab217e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_whip_scorpions_tail.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_writhing_essence_of_nightmares.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_writhing_essence_of_nightmares.png
new file mode 100644
index 0000000000000000000000000000000000000000..16b8e59a2536b01410970e34dfc38ecaa659a42f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/right_writhing_essence_of_nightmares.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/robe_black_robe.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/robe_black_robe.png
new file mode 100644
index 0000000000000000000000000000000000000000..cfca6d0e92d66359d543d227abd581eeada8df2a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/robe_black_robe.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/robe_firewalker.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/robe_firewalker.png
new file mode 100644
index 0000000000000000000000000000000000000000..35bd2a80b8c425a970b3f7ce6dfb906d0da2e2f5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/robe_firewalker.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/robe_of_force.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/robe_of_force.png
new file mode 100644
index 0000000000000000000000000000000000000000..6ddf7c6a95e398feae42b2767ee3a0d5763ad240
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/robe_of_force.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/robe_of_the_archmage.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/robe_of_the_archmage.png
index 31d45348e0ad7511a8843b37178e13cad4d07679..d5a71d2fe4e885f8f693e58607e964a804494cfc 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/robe_of_the_archmage.png and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/robe_of_the_archmage.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/robe_spider_silk_robe_spydre.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/robe_spider_silk_robe_spydre.png
new file mode 100644
index 0000000000000000000000000000000000000000..3bbafe9355fa50635e3a71a056551a7003b760c8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/robe_spider_silk_robe_spydre.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/robe_temporal_augmentation_robe.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/robe_temporal_augmentation_robe.png
new file mode 100644
index 0000000000000000000000000000000000000000..6d50904022f76466ad19049a8e22617848711488
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/robe_temporal_augmentation_robe.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/robe_vestments_of_the_conclave.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/robe_vestments_of_the_conclave.png
new file mode 100644
index 0000000000000000000000000000000000000000..62b1211662076b4ff1770a0a5acf12550e355ee4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/robe_vestments_of_the_conclave.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/robes_of_deflection.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/robes_of_deflection.png
new file mode 100644
index 0000000000000000000000000000000000000000..c6a8365f96d7a32490f5830dd82f705d92bbcb4c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/robes_of_deflection.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/scale_mail_of_kroltar.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/scale_mail_of_kroltar.png
new file mode 100644
index 0000000000000000000000000000000000000000..15912223c2ebcd274f7098c1472ea207a5b2310d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/scale_mail_of_kroltar.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/scorched_boots.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/scorched_boots.png
new file mode 100644
index 0000000000000000000000000000000000000000..ccfcb2a2837e9c384e45140f5e2557b944d5d1de
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/scorched_boots.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/scorpion_gauntlets.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/scorpion_gauntlets.png
new file mode 100644
index 0000000000000000000000000000000000000000..36742af8a1359ff62e615b08625442b1f66c5a5c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/scorpion_gauntlets.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/serpentine_cloak_behind.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/serpentine_cloak_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..ddf351159a4e183da3a9a82dd4ffebb69c8a992b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/serpentine_cloak_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/serpentine_cloak_hood.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/serpentine_cloak_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..1452149f7c4dfb32a0b85abf9e4f4e577bd0c469
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/serpentine_cloak_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/serpentine_cloak_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/serpentine_cloak_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..8a4547697d8b3fa76a863cb12a4d7f3330dae177
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/serpentine_cloak_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/shifting_boots.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/shifting_boots.png
new file mode 100644
index 0000000000000000000000000000000000000000..1bb992a2c6a5b7f149074bfb0babca297a2e3260
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/shifting_boots.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/silk_current.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/silk_current.png
new file mode 100644
index 0000000000000000000000000000000000000000..4033d0bc3e44d6d790e623157a1a3a8ec6b397ef
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/silk_current.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/skin_of_many.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/skin_of_many.png
index ab33f3a050e54126c4f7a0a875aeaa3a2339d007..2f9d3e63f8595034d59781845a0e793d2837145f 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/skin_of_many.png and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/skin_of_many.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/sludgegrip.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/sludgegrip.png
new file mode 100644
index 0000000000000000000000000000000000000000..58219b308d93d0314d25c178b3b5a90268083584
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/sludgegrip.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/snow_giant_arm_wraps.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/snow_giant_arm_wraps.png
new file mode 100644
index 0000000000000000000000000000000000000000..0cf828e0e17c06c7899147635d8cb088b68dc34e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/snow_giant_arm_wraps.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/spellhunt_remnants.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/spellhunt_remnants.png
new file mode 100644
index 0000000000000000000000000000000000000000..a4aa72e9fc0aeab96a4eeacb21b34a720b9b3d7b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/spellhunt_remnants.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/star_shot.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/star_shot.png
new file mode 100644
index 0000000000000000000000000000000000000000..cee9aff8432afec743a35d76df299665eb8c280c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/star_shot.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/storm_bringers_gauntlets.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/storm_bringers_gauntlets.png
new file mode 100644
index 0000000000000000000000000000000000000000..3cdc67ed431954011478824cd5cc6d9311f6c86d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/storm_bringers_gauntlets.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/terrasca.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/terrasca.png
new file mode 100644
index 0000000000000000000000000000000000000000..08ca2ca81bc88735d51b15970ef8c5d1cd824c66
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/terrasca.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/the_calm.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/the_calm.png
new file mode 100644
index 0000000000000000000000000000000000000000..19b23baee7174cc5bb87a5bc00270b96dd6fac0d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/the_calm.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/the_inner_eye.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/the_inner_eye.png
new file mode 100644
index 0000000000000000000000000000000000000000..d007e5b0d39bd5baab1ec37a3b4375cc5b02cc67
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/the_inner_eye.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/the_titans_quiver.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/the_titans_quiver.png
new file mode 100644
index 0000000000000000000000000000000000000000..639fccb2c0457dfa536ab24b4c17a8c4b8255e95
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/the_titans_quiver.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/the_untouchable.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/the_untouchable.png
new file mode 100644
index 0000000000000000000000000000000000000000..4e9e499c53b1c13c19b0bd9c96163f47aa21c935
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/the_untouchable.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/the_warped_boots.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/the_warped_boots.png
new file mode 100644
index 0000000000000000000000000000000000000000..8e45ff315ccc83ae3f4537a7eeee3ad9887238e0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/the_warped_boots.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/unbreakable_greaves.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/unbreakable_greaves.png
new file mode 100644
index 0000000000000000000000000000000000000000..61606287b3ed263be2ac43107216c9d8069668ad
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/unbreakable_greaves.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/ureslaks_molted_scales_behind.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/ureslaks_molted_scales_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..ac57aca5d8f642ba446265738cddc69483b7d89e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/ureslaks_molted_scales_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/ureslaks_molted_scales_hood.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/ureslaks_molted_scales_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..1c1f9409d0ab8b21e9a5c3079f70275a0d6c73b6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/ureslaks_molted_scales_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/ureslaks_molted_scales_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/ureslaks_molted_scales_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..003017ea02d8ed7547b326d94cec49b80559a8a4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/ureslaks_molted_scales_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/void_quiver.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/void_quiver.png
new file mode 100644
index 0000000000000000000000000000000000000000..66e7ea86775828cecb1e5087b64e31dd2febc22c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/void_quiver.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/wanderers_rest.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/wanderers_rest.png
new file mode 100644
index 0000000000000000000000000000000000000000..e9c63fc7c1d32080a2f7f49aeb483ea8eed6009b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/wanderers_rest.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/wind_worn_shot.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/wind_worn_shot.png
new file mode 100644
index 0000000000000000000000000000000000000000..4139bbfb688f68741fc43b1937d645379f2122bf
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/wind_worn_shot.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/wizard_hat_of_arcane_understanding.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/wizard_hat_of_arcane_understanding.png
new file mode 100644
index 0000000000000000000000000000000000000000..651bc72bb8daee2fc5f1026d75866933c62ec49d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/wizard_hat_of_arcane_understanding.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/wooden_cuirass.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/wooden_cuirass.png
index ec29bdd80691de16081567e66bb0a69302a93cad..91afe19e08dd3b85abedb7b3e3020080b48d9408 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/wooden_cuirass.png and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/wooden_cuirass.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/wrap_of_stone_behind.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/wrap_of_stone_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..0dff13df538c8153209febd3c75e9e030cc68fd5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/wrap_of_stone_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/wrap_of_stone_hood.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/wrap_of_stone_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..d32e51222c7cee5e29cd7b43147ccd14c585d650
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/wrap_of_stone_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/wrap_of_stone_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/wrap_of_stone_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..664c819c52df018a6a27f623d08eb21f898ee5eb
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/wrap_of_stone_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/wyrmbreath.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/wyrmbreath.png
new file mode 100644
index 0000000000000000000000000000000000000000..e03cf93ca4fd4b29f47b5597104bbeb2f288d433
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/wyrmbreath.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/yaldan_baoth.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/yaldan_baoth.png
new file mode 100644
index 0000000000000000000000000000000000000000..bb133c6ab45dc54cb970ede84bad8615de448624
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/yaldan_baoth.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/yeek_fur_robe.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/yeek_fur_robe.png
new file mode 100644
index 0000000000000000000000000000000000000000..1f94f97917278c9421796108ca5e1367a80c542a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/special/yeek_fur_robe.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_01.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_01.png
index 29055ed292a065db4a5c479e8ac394c3b16b43dc..c824805a89ec846682cd3f61257ae032909c9943 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_01.png and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_01.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_02.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_02.png
index 5e1cebc62928173467f2d8ebafc82a6c9957b527..1c91c1014cfa40ae247fddb3ddbdacab448de779 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_02.png and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_02.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_03.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_03.png
index 25b751da8d8f94cc73f885670f8c2fe961778c0f..96974b88e5e3ccec1c272105616d674b4bc3a56e 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_03.png and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_03.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_04.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_04.png
index dbc6d018d589a58e81da8efa1f4082f3e3304de0..1101cc90f02dc77998cbbb02e640ec2164e9ffc6 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_04.png and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_04.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_05.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_05.png
index 695c1b7478db1f5c56abde7a45d5c1d118c95e35..5096b6dd7aa1d5c46721b99da6a087b82a90df04 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_05.png and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_05.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_06.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_06.png
index f64c78bb47ff534ad564e0be9dd3e57d7a3063e8..fb6bfb81f349a07cbd8ce33b8be4300d62d74190 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_06.png and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_06.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_07.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_07.png
index 5c16f3db14667e58113432d315298ad846dc4c4c..690678060b963f736f66e64e8d4328bf7d99efd1 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_07.png and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_07.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_08.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_08.png
index 0b981cd7a9fe2acf78cfe57ab4acf17033345875..a633b709e3679e6256e0be54210cafe714809bb1 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_08.png and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_08.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_09.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_09.png
index 5b09fad1e16cd4158c581f536d8111459d654295..5235a208a8acc5612ef50eb9a3cd67e408950416 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_09.png and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_09.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_10.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_10.png
index 178cc33a91ef764e396dfc92c1b56342c73859b7..07447032a01c3f7ea02f4771742f0eac0b8e0d2b 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_10.png and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_10.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_11.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_11.png
index e3c2fd4e4f93fca4e0b6701f406af691444da880..ee0c2e386750e73e5bfcac936eb5cbdf43078527 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_11.png and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_11.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_12.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_12.png
index 6b2e2d568ee69615200564eb6890a3721a536fb5..cc1fb30628944697d1e53f452e66ce1c0e25a789 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_12.png and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_12.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_13.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_13.png
index 4271af85253b95213a2eb502db788789992ba543..89037a54a86ee8e5d64a56ae6b244066011f1c78 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_13.png and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_13.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_14.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_14.png
index 6a42a9040e8299de77d874bebf754598326b9c42..8781cf185e0ee433d95636268b438b79ae22fe54 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_14.png and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_14.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_15.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_15.png
index b46740d372a0c9dc404a9e8cdd522789d8537eed..2bdb3b9db16e5cf3e1bfe0a9e75c4d5c9559db96 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_15.png and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_15.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_16.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_16.png
index 4496f77d816f93a0c8126cafd56d5d8dc8401b37..e1a6f4a97ef2991c3d42dbec8c2911ccc0064640 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_16.png and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_16.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_17.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_17.png
index 22a47e50806378500b25efcee2f97d9a12f43eec..a1defcde5ea83ea6123b73f4e694c5032570cc3d 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_17.png and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_17.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_18.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_18.png
index 50e415bf7a717b1c81ee289ca95db3b3a25c45fc..c489e9585d980ee40a75591ab5b7a465f9a88e7c 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_18.png and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_18.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_19.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_19.png
index dcbedeba9db78f595d2590223c4759b9d18baf5e..d8a5bfc60c890723ad7c003f44f103471b0a400a 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_19.png and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_19.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_20.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_20.png
index ae579c0611903599c3e1ac490a00c8d352c7f1c2..94f39cab7d31002a2932843de2dfd0aafcff5a9a 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_20.png and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_20.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_21.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_21.png
index 279497ae3e5e041d4c513afa803313dd12bada6c..a176de6f7bd6e2262f27373ad7c1de4d26f34501 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_21.png and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_21.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_22.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_22.png
index bcde12402d23c0c638827cc16664c892288849bd..f5fc9ceae263241af7ca47c77a9f6d8b8ff0044a 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_22.png and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_22.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_23.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_23.png
index 98407ece03a7e655d299193f3c3c7ef12ed0e569..576e70137ff4b07c8e498ade885538f803016322 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_23.png and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_23.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_24.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_24.png
index 08ca4b48daa81bb92a4a54b0d9ca8642fe1519bd..661728b97d634d45e88c608973e18fe694ee0572 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_24.png and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_24.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_25.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_25.png
index 72c5a773ec7b18e9ab375ef1490b68f611fc6727..af15c76e0b3565a4d70354c22c2188a9bb2cb853 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_25.png and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_25.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_26.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_26.png
index 9958e9bff327c484d358ed7ce3c7f9c8a7a828ce..398d753d8d4d69e7e57f602940d4f98752b7c723 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_26.png and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_26.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_27.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_27.png
index 053d7f6a2e270f252f97d740b1bcaef9159a485e..b2263c121e49c90e5adc7549d511d5ab995c197b 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_27.png and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_27.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_28.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_28.png
index 067d404bf5ef2cc4f5c11a60dc1f165bb8c0312e..9ab12fa575a62a271bf477bc8649843e6be6987b 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_28.png and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_28.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_29.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_29.png
new file mode 100644
index 0000000000000000000000000000000000000000..54db652d0d87e3acb8bd417c0e4c845215276649
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_29.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_30.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_30.png
new file mode 100644
index 0000000000000000000000000000000000000000..d552fec76adc1f1108772aa7fe0a1fbb8c136f7a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_30.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_31.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_31.png
new file mode 100644
index 0000000000000000000000000000000000000000..fad41e0e159882eda3eff1a0e53d302832544c4e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_31.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_32.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_32.png
new file mode 100644
index 0000000000000000000000000000000000000000..c21d78f2f1efc2a9d75dc42ca94b109426a65a86
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_32.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_33.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_33.png
new file mode 100644
index 0000000000000000000000000000000000000000..afa28b1308e04dff5479a02f9491343bccc99da1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_33.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_34.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_34.png
new file mode 100644
index 0000000000000000000000000000000000000000..d89f86baaedbbae46325c2ae9ac3a9270be0ba72
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_34.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_35.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_35.png
new file mode 100644
index 0000000000000000000000000000000000000000..3819406567f6f67138220be3b405a7ec34543f26
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_35.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_36.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_36.png
new file mode 100644
index 0000000000000000000000000000000000000000..79c1f6727b55ff7d82293b4573ca697de6c42d25
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_36.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_37.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_37.png
new file mode 100644
index 0000000000000000000000000000000000000000..c7061498f579263eedbe5babf32ec6869f1dfbe7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_37.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_38.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_38.png
new file mode 100644
index 0000000000000000000000000000000000000000..05c81f0252c011bd52828115573185ba6d7bda73
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_female/upper_body_38.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/cloak_behind_07.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/cloak_behind_07.png
new file mode 100644
index 0000000000000000000000000000000000000000..3fd386c8b54a1f7cabd96be60bf4051d8a82e15e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/cloak_behind_07.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/cloak_behind_08.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/cloak_behind_08.png
new file mode 100644
index 0000000000000000000000000000000000000000..b35304a09936e5d33aff7f5a22564188ea76618b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/cloak_behind_08.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/cloak_behind_09.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/cloak_behind_09.png
new file mode 100644
index 0000000000000000000000000000000000000000..8d31fe8b7fc1e01c22fc025c1dcac4fce6899873
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/cloak_behind_09.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/cloak_hood_07.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/cloak_hood_07.png
new file mode 100644
index 0000000000000000000000000000000000000000..37f922854eb8908056cd3e974ac544e59aa78cc8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/cloak_hood_07.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/cloak_hood_08.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/cloak_hood_08.png
new file mode 100644
index 0000000000000000000000000000000000000000..8a16784cbb49341b80c145082fb1ec662c2e094a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/cloak_hood_08.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/cloak_hood_09.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/cloak_hood_09.png
new file mode 100644
index 0000000000000000000000000000000000000000..1fd36b98af5c20ab5368bfc4dddc358b3670d18f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/cloak_hood_09.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/cloak_shoulder_07.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/cloak_shoulder_07.png
new file mode 100644
index 0000000000000000000000000000000000000000..aa5c11f12db31c6075dfeb0f37d12a755e276ab9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/cloak_shoulder_07.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/cloak_shoulder_08.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/cloak_shoulder_08.png
new file mode 100644
index 0000000000000000000000000000000000000000..b8e6f0c982c5a7f76b6008bfb6f689e82e24962c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/cloak_shoulder_08.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/cloak_shoulder_09.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/cloak_shoulder_09.png
new file mode 100644
index 0000000000000000000000000000000000000000..cded6f54c0b1f7022305d0315d89d16ddcb69c81
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/cloak_shoulder_09.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/feet_10.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/feet_10.png
new file mode 100644
index 0000000000000000000000000000000000000000..0b57992b673319d65f9801f965ce33adf872a546
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/feet_10.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/feet_11.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/feet_11.png
new file mode 100644
index 0000000000000000000000000000000000000000..22d46874de0b314ef165eef4d739f622c31948cd
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/feet_11.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/gembag_01.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/gembag_01.png
new file mode 100644
index 0000000000000000000000000000000000000000..f6b0ebceba201d230cd87af2daf0bb562fadd6f8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/gembag_01.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/gembag_02.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/gembag_02.png
new file mode 100644
index 0000000000000000000000000000000000000000..440da37497a3711629006051ccedb3d7e54c6aba
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/gembag_02.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/gembag_03.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/gembag_03.png
new file mode 100644
index 0000000000000000000000000000000000000000..ac987e8d44e4e8bba4fbf1bf6141f4c0c65c61d8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/gembag_03.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/gembag_04.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/gembag_04.png
new file mode 100644
index 0000000000000000000000000000000000000000..b6818ff6e1e7a6e0e3ae6bae8fee7c0eb4e8db69
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/gembag_04.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/gembag_05.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/gembag_05.png
new file mode 100644
index 0000000000000000000000000000000000000000..593f3505b6a3d990e76f1c30089807bd5235331f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/gembag_05.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/hands_08.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/hands_08.png
new file mode 100644
index 0000000000000000000000000000000000000000..9be339c88852954b57f2aff29257ba72076fc6a0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/hands_08.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/hands_09.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/hands_09.png
new file mode 100644
index 0000000000000000000000000000000000000000..b7f420e4a2a76073c8fe05b08189bfa38aacf813
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/hands_09.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/head_19.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/head_19.png
new file mode 100644
index 0000000000000000000000000000000000000000..f343cf71ce571861cc2bd5da6fe9e4bced2a3ec0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/head_19.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/head_20.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/head_20.png
new file mode 100644
index 0000000000000000000000000000000000000000..c9120ee03211144869acf12c9f750f8fd609ee5a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/head_20.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/head_21.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/head_21.png
new file mode 100644
index 0000000000000000000000000000000000000000..8366d5066d279802aef922e1adbc0781477c0712
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/head_21.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/head_22.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/head_22.png
new file mode 100644
index 0000000000000000000000000000000000000000..fd3303f49642f09bc69d82a50eb97f188fd519fa
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/head_22.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/head_23.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/head_23.png
new file mode 100644
index 0000000000000000000000000000000000000000..c8bdcbbb6d175a8bbf163140836cdcf8e327bd49
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/head_23.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/lower_body_14.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/lower_body_14.png
new file mode 100644
index 0000000000000000000000000000000000000000..5fd95eb12d9f251dbfe203e71f1b7be30d335ec5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/lower_body_14.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/lower_body_15.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/lower_body_15.png
new file mode 100644
index 0000000000000000000000000000000000000000..10a853e7e4704c03109c99b06f874be5bb7b2add
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/lower_body_15.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/lower_body_16.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/lower_body_16.png
new file mode 100644
index 0000000000000000000000000000000000000000..c332fd7f2960a7d73b89eebf75273e8cb6877e00
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/lower_body_16.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/lower_body_17.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/lower_body_17.png
new file mode 100644
index 0000000000000000000000000000000000000000..5590a5b11e9aa65254e8d51c5f7e4684a5dbcc16
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/lower_body_17.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/lower_body_18.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/lower_body_18.png
new file mode 100644
index 0000000000000000000000000000000000000000..f12d88820575deb4ed9a9ed236f55250981c910d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/lower_body_18.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/lower_body_19.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/lower_body_19.png
new file mode 100644
index 0000000000000000000000000000000000000000..5b5a8117e0c889c9eb1ee4ee59eaef8a71e668b1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/lower_body_19.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/quiver_01.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/quiver_01.png
new file mode 100644
index 0000000000000000000000000000000000000000..210b7b3e185bd9228e417f1bd35eb992b3b80eb9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/quiver_01.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/quiver_02.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/quiver_02.png
new file mode 100644
index 0000000000000000000000000000000000000000..ec357649c6b1d5a231c88708a8429f4e6b8b2fe9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/quiver_02.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/quiver_03.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/quiver_03.png
new file mode 100644
index 0000000000000000000000000000000000000000..dcf7d3d67453e3c2da88fd42c2ef21aca48e913b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/quiver_03.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/quiver_04.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/quiver_04.png
new file mode 100644
index 0000000000000000000000000000000000000000..2bb986d92bfb950d565a3907f567a662ccf1204e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/quiver_04.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/quiver_05.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/quiver_05.png
new file mode 100644
index 0000000000000000000000000000000000000000..eeb26636126b6d5f84b75c319469ca7086863f4f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/quiver_05.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/shotbag_01.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/shotbag_01.png
new file mode 100644
index 0000000000000000000000000000000000000000..4a5d32819db6a83c287ed7cbde520c10d08fad07
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/shotbag_01.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/shotbag_02.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/shotbag_02.png
new file mode 100644
index 0000000000000000000000000000000000000000..fa27219637a1a7be44594b1fd15209113c1ed70c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/shotbag_02.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/shotbag_03.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/shotbag_03.png
new file mode 100644
index 0000000000000000000000000000000000000000..39b890d32be17ee4f72364373f2267cf1361906a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/shotbag_03.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/shotbag_04.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/shotbag_04.png
new file mode 100644
index 0000000000000000000000000000000000000000..c26bd9cf14763991130c66367b6a4180ef5f471a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/shotbag_04.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/shotbag_05.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/shotbag_05.png
new file mode 100644
index 0000000000000000000000000000000000000000..f6f9b27f0aafda98e44f62610c4afb1c5445f40d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/shotbag_05.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/aether_walk.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/aether_walk.png
new file mode 100644
index 0000000000000000000000000000000000000000..7664acc18d9872f6315448b063f538103a0f2f29
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/aether_walk.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/arkuls_seige_arrows.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/arkuls_seige_arrows.png
new file mode 100644
index 0000000000000000000000000000000000000000..69fdbbd433bec10479a226eb9b40b0c6f68b25c8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/arkuls_seige_arrows.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/armor_chromatic_harness.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/armor_chromatic_harness.png
new file mode 100644
index 0000000000000000000000000000000000000000..c496f21d02e2073e695bab949ff1dfe3f6d2c832
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/armor_chromatic_harness.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/armor_cuirass_of_the_thronesmen.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/armor_cuirass_of_the_thronesmen.png
new file mode 100644
index 0000000000000000000000000000000000000000..4c80821ecc625d76fa295d5c2dc7202d43d8a60d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/armor_cuirass_of_the_thronesmen.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/armor_natures_blessing.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/armor_natures_blessing.png
new file mode 100644
index 0000000000000000000000000000000000000000..a3ac964149c683fbd8f85668e54cbb78c0a101de
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/armor_natures_blessing.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/armor_plate_borfasts_cage.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/armor_plate_borfasts_cage.png
new file mode 100644
index 0000000000000000000000000000000000000000..25d1eadd2832317cfb66416aea389fb7301d5037
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/armor_plate_borfasts_cage.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/armor_rogue_plight.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/armor_rogue_plight.png
new file mode 100644
index 0000000000000000000000000000000000000000..c9939353e3f400e9121f1a5d9f602497e1540b68
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/armor_rogue_plight.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/behemoth_skin.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/behemoth_skin.png
new file mode 100644
index 0000000000000000000000000000000000000000..dbd8a027cc2e111679fa84edab7cc96a477cb606
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/behemoth_skin.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/black_cloak_behind.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/black_cloak_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..ff33d204a609adaa4e41116d37d3aabe3641abc1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/black_cloak_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/black_cloak_hood.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/black_cloak_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..a7b375e72273d279d972bd5242e68cbe0c2e2210
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/black_cloak_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/black_cloak_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/black_cloak_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..7d486928b3f8a89d929d1152bdc38d6a8c74a04f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/black_cloak_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/boots_edens_guile.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/boots_edens_guile.png
new file mode 100644
index 0000000000000000000000000000000000000000..b568fc622b54df82df31c0c06c93ef418027565b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/boots_edens_guile.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/boots_of_the_hunter.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/boots_of_the_hunter.png
new file mode 100644
index 0000000000000000000000000000000000000000..c74aff3c8826aaf94dd06486a927beb0e9404f9b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/boots_of_the_hunter.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/breath_of_eyal.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/breath_of_eyal.png
new file mode 100644
index 0000000000000000000000000000000000000000..a3426f1c895db10081cca4e59777ba626fce2528
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/breath_of_eyal.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/cinderfeet.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/cinderfeet.png
new file mode 100644
index 0000000000000000000000000000000000000000..2e42e62e0aabe1a3ddc1c174dfd7d238c9fe5f52
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/cinderfeet.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/cloak_threads_of_fate_behind.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/cloak_threads_of_fate_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..ae1bcc39273cf9c5c810ae2f1f6e65893a7bbfb3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/cloak_threads_of_fate_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/cloak_threads_of_fate_hood.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/cloak_threads_of_fate_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..02e1a4d55ac0aae7c8c9b4aba72f0a5e36b21d75
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/cloak_threads_of_fate_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/cloak_threads_of_fate_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/cloak_threads_of_fate_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..f67c176a78e0f1041a343052518c65ae0a87a616
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/cloak_threads_of_fate_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/cloak_winds_whisper_behind.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/cloak_winds_whisper_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..d9ec5b96b90fa181fc6d122e976aff1d2941ab16
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/cloak_winds_whisper_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/cloak_winds_whisper_hood.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/cloak_winds_whisper_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..f5a304e608750a1a5aaa57582cecfa464849c0b4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/cloak_winds_whisper_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/cloak_winds_whisper_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/cloak_winds_whisper_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..00450f92cff06d3adea1777e89d6ef0be57b6cec
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/cloak_winds_whisper_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/cloth_armour_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/cloth_armour_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..c8c0cc50a0b82907cc0e005b905f6b54a55686dc
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/cloth_armour_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/cloth_of_dreams_behind.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/cloth_of_dreams_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..57674b2124589c9adeaf4c083537b84a8fd40a0b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/cloth_of_dreams_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/cloth_of_dreams_hood.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/cloth_of_dreams_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..12ea34c4214cf3edfe11e3101feb71a8c09ef3bf
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/cloth_of_dreams_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/cloth_of_dreams_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/cloth_of_dreams_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..9b23d6608ed70bb62f7dd627524ba3a682873aa4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/cloth_of_dreams_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/corrupted_gaze.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/corrupted_gaze.png
new file mode 100644
index 0000000000000000000000000000000000000000..f7a46461795ae352534c50faa48a251edd64f5d2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/corrupted_gaze.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/crimson_robe.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/crimson_robe.png
new file mode 100644
index 0000000000000000000000000000000000000000..11a3d7f3fd31fb3f0d112a7089f6c66fb7414b51
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/crimson_robe.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/crown_of_burning_pain.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/crown_of_burning_pain.png
new file mode 100644
index 0000000000000000000000000000000000000000..b5afb6fc94a9090d7bff27a21b8650bb24edb5a6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/crown_of_burning_pain.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/crown_of_command.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/crown_of_command.png
new file mode 100644
index 0000000000000000000000000000000000000000..d20f27311f3df638cab56b9df1cecee3cd4229c5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/crown_of_command.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/crown_of_eternal_night.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/crown_of_eternal_night.png
new file mode 100644
index 0000000000000000000000000000000000000000..3e23634fb1a8e827c904f173cf95078d97d6ecf1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/crown_of_eternal_night.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/crown_of_the_elements.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/crown_of_the_elements.png
new file mode 100644
index 0000000000000000000000000000000000000000..1aa7824c9670646f880b590f90256dab7cc2f19b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/crown_of_the_elements.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/crystles_astral_bindings.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/crystles_astral_bindings.png
new file mode 100644
index 0000000000000000000000000000000000000000..41cf64f58d4768ddc112eb0da9491c9531c63088
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/crystles_astral_bindings.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/dakhtuns_gauntlets.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/dakhtuns_gauntlets.png
new file mode 100644
index 0000000000000000000000000000000000000000..a8463e1115c625881febf37d416aec55fd1cf447
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/dakhtuns_gauntlets.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/deaths_embrace.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/deaths_embrace.png
new file mode 100644
index 0000000000000000000000000000000000000000..86447d4f3e302fcf2b005163e87372a61d2e8b67
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/deaths_embrace.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/decayed_visage.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/decayed_visage.png
new file mode 100644
index 0000000000000000000000000000000000000000..82c3eee1ca5d08140a2cabcddeb5b8b02769f3c2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/decayed_visage.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/destalas_scales_whisper_behind.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/destalas_scales_whisper_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..4dfece9b3c03973372abe319cc90ea9e0178dd5a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/destalas_scales_whisper_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/destalas_scales_whisper_hood.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/destalas_scales_whisper_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..77472dec16ac9a212fd0b8802a790a865f364867
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/destalas_scales_whisper_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/destalas_scales_whisper_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/destalas_scales_whisper_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..61b058f863eb5674e61797f042f7b08902ab81b0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/destalas_scales_whisper_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/dgs_clothes.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/dgs_clothes.png
index 8bcba205ae75a0e67221379366766ad3023a3835..718ffdf8b97306df1e100527a9d979f6bca2e83e 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/dgs_clothes.png and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/dgs_clothes.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/diadem_alettas_diadem.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/diadem_alettas_diadem.png
new file mode 100644
index 0000000000000000000000000000000000000000..da9d35556fdfc225fc0347eb4a20a6f0b092448d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/diadem_alettas_diadem.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/dragon_helm_of_kroltar.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/dragon_helm_of_kroltar.png
new file mode 100644
index 0000000000000000000000000000000000000000..885bee106993b2cfbf2fa20c342570363fa1e084
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/dragon_helm_of_kroltar.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/dragonskull_helmet.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/dragonskull_helmet.png
new file mode 100644
index 0000000000000000000000000000000000000000..96dfd913ca8daf723afa82ec13689811767eccd0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/dragonskull_helmet.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/eel_skin_armor.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/eel_skin_armor.png
new file mode 100644
index 0000000000000000000000000000000000000000..36510483c8417062fe3336beed70512cbda4897f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/eel_skin_armor.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/ethereal_embrace_behind.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/ethereal_embrace_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..f38d78e0188bc7f877e2c9ede71b167657b293f6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/ethereal_embrace_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/ethereal_embrace_hood.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/ethereal_embrace_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..ddea27ae8151ad0643d69b0a92caa00d5827903d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/ethereal_embrace_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/ethereal_embrace_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/ethereal_embrace_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..5a8b5da8da6b77ae808cd7aef883a32d57b67e37
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/ethereal_embrace_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/evermoss_robe.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/evermoss_robe.png
new file mode 100644
index 0000000000000000000000000000000000000000..cf874903160f86cc0307c2c7900441572602ea65
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/evermoss_robe.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/eye_of_the_forest.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/eye_of_the_forest.png
new file mode 100644
index 0000000000000000000000000000000000000000..4ccf135e12a73ea48823cc26f063ff53f737df57
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/eye_of_the_forest.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/fist_of_the_destroyer.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/fist_of_the_destroyer.png
new file mode 100644
index 0000000000000000000000000000000000000000..db6f546d424c92c40745a43ce3a41e2badc59439
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/fist_of_the_destroyer.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/frost_treads.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/frost_treads.png
new file mode 100644
index 0000000000000000000000000000000000000000..28ee564757e1133eeade1658865e76083fffb701
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/frost_treads.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/frozen_shards.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/frozen_shards.png
new file mode 100644
index 0000000000000000000000000000000000000000..aa97534c669e41079f12377226e6d7298d33245e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/frozen_shards.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/frozen_shroud_behind.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/frozen_shroud_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..58d6bac10980ae130966c16e5bb37fcaa367c1b0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/frozen_shroud_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/frozen_shroud_hood.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/frozen_shroud_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..99ad5867178053173229237eec498848f5235bdc
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/frozen_shroud_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/frozen_shroud_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/frozen_shroud_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..68b98aa901b1dbf3c6ec27f318411574cbb0fa42
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/frozen_shroud_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/gauntlets_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/gauntlets_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..1ca40c27fdd6393454909182b6730765611af573
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/gauntlets_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/gloves_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/gloves_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..545a767141194f8431d3956bf1deb0bf133f0500
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/gloves_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/gloves_flamewrought.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/gloves_flamewrought.png
new file mode 100644
index 0000000000000000000000000000000000000000..915f3b932413548e8379355c7245a6a2f634ed18
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/gloves_flamewrought.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/gloves_of_the_firm_hand.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/gloves_of_the_firm_hand.png
new file mode 100644
index 0000000000000000000000000000000000000000..405fc717974f7e796f50703c302dd31b555ef181
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/gloves_of_the_firm_hand.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/grip_of_death.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/grip_of_death.png
index 49c36d0e66c0a4b4836311c12b63b0d5dd5eb2c6..36b24ce971ef6dfe30460da6b818fc76d569ef5e 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/grip_of_death.png and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/grip_of_death.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/guise_of_the_hated_behind.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/guise_of_the_hated_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..28b44986b7eb3aeaa2fe4a99fae66e9362306e5c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/guise_of_the_hated_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/guise_of_the_hated_hood.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/guise_of_the_hated_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..9c9254f9f66aaa4e48d91c169bf9becf73a66f8c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/guise_of_the_hated_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/guise_of_the_hated_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/guise_of_the_hated_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..e08566899177c60c5257b47e6bb7896b6b3c019f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/guise_of_the_hated_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/hand_of_the_worldshaper.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/hand_of_the_worldshaper.png
new file mode 100644
index 0000000000000000000000000000000000000000..8bc2b49e5ab52a6845088570315ac7f34b7562eb
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/hand_of_the_worldshaper.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/harkor_zun_gauntlets.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/harkor_zun_gauntlets.png
new file mode 100644
index 0000000000000000000000000000000000000000..43c63e1936179eb1d6f879d7c0a6e64c2511ff9c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/harkor_zun_gauntlets.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/heavy_armour_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/heavy_armour_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..e906179531b7a5b7b3ed64f8f183da14ba2aefd7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/heavy_armour_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/helm_of_garkul.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/helm_of_garkul.png
new file mode 100644
index 0000000000000000000000000000000000000000..c7129a1f173d99808d2e86a219beaf7ccb552aec
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/helm_of_garkul.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/helm_of_the_dwarven_emperors.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/helm_of_the_dwarven_emperors.png
new file mode 100644
index 0000000000000000000000000000000000000000..47ae785c1e584a520a2b9b845d743064890a2cd6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/helm_of_the_dwarven_emperors.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/hornet_stingers.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/hornet_stingers.png
new file mode 100644
index 0000000000000000000000000000000000000000..e268da9112f9cb034c089a2dedcbfcc77619a75a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/hornet_stingers.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/iron_mail_of_bloodletting.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/iron_mail_of_bloodletting.png
new file mode 100644
index 0000000000000000000000000000000000000000..321a968b083edf2dc336c8972473626b05f141db
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/iron_mail_of_bloodletting.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_1Haxe_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_1Haxe_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..97b6f6be64b81cd0d582d50719ad72072690165b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_1Haxe_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_1Hmace_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_1Hmace_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..be4347785fb6e497d2292825b832b47a54f99b6a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_1Hmace_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_1Hsword_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_1Hsword_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..3e858893befd9e91376785c1d047a33962d7750d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_1Hsword_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_2Haxe_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_2Haxe_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..d43359b05d54b1be9b29666469b88617d0439c0b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_2Haxe_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_2Hmace_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_2Hmace_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..a948b1a2eae509388c73824c7c83aa914fdea442
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_2Hmace_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_2Hsword_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_2Hsword_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..292ec3e2467034ca1fdad983cb39ab8df6991fcf
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_2Hsword_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_amethyst_of_sanctuary.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_amethyst_of_sanctuary.png
new file mode 100644
index 0000000000000000000000000000000000000000..45c6f08bf75fe95b46cb0b39db0916c744ce48fe
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_amethyst_of_sanctuary.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_awaken_staff_of_absorbtion.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_awaken_staff_of_absorbtion.png
new file mode 100644
index 0000000000000000000000000000000000000000..bb0b768afc15b59221fad5e73191a6ed61a0d95c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_awaken_staff_of_absorbtion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_blighted_maul.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_blighted_maul.png
new file mode 100644
index 0000000000000000000000000000000000000000..93093a9b9455b7e620f1b78430fe59792ce1a3f2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_blighted_maul.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_bloomsoul.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_bloomsoul.png
new file mode 100644
index 0000000000000000000000000000000000000000..42ce3ecbbf36aa1b3e82c66ef1521c8dac38a315
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_bloomsoul.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_borosks_hate.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_borosks_hate.png
new file mode 100644
index 0000000000000000000000000000000000000000..c62e5e247f16a85c0be731a7d22eb764c8f5836f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_borosks_hate.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_bow_corpsebow.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_bow_corpsebow.png
new file mode 100644
index 0000000000000000000000000000000000000000..32970c9ac2716b869fe15b5a01ebf39d1ad2c747
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_bow_corpsebow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_bow_epochs_curve.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_bow_epochs_curve.png
new file mode 100644
index 0000000000000000000000000000000000000000..528f1fed3f021844989f70f35e5b3a04ed89753f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_bow_epochs_curve.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_champions_will.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_champions_will.png
new file mode 100644
index 0000000000000000000000000000000000000000..e7ce4d0c15e81f0bfb977995686b0080ce2a6b44
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_champions_will.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_colaryem.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_colaryem.png
new file mode 100644
index 0000000000000000000000000000000000000000..8700a33dcce265623e140b05376f994778f84e18
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_colaryem.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_core_of_the_forge.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_core_of_the_forge.png
new file mode 100644
index 0000000000000000000000000000000000000000..85c20911be57e29261d802bd404b1990c2fd4a09
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_core_of_the_forge.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_corpus_2.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_corpus_2.png
new file mode 100644
index 0000000000000000000000000000000000000000..bf362b274485f8e8f3ad29669b5a4b8c8b6df481
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_corpus_2.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_crystal_shard.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_crystal_shard.png
new file mode 100644
index 0000000000000000000000000000000000000000..3fc0bdc65b0e623b38082d340a4f999adf754f96
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_crystal_shard.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_dagger_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_dagger_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..1410bb55533b5404d4731b409433c6265832e386
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_dagger_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_dream_malleus.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_dream_malleus.png
new file mode 100644
index 0000000000000000000000000000000000000000..263f88c340eb421d442e03c60f1606f8b44b662b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_dream_malleus.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_eclipse.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_eclipse.png
new file mode 100644
index 0000000000000000000000000000000000000000..7f389e17f326ac37666de2f568c160dfb007a070
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_eclipse.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_eyals_will.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_eyals_will.png
new file mode 100644
index 0000000000000000000000000000000000000000..01dd800ce1e77f17b918004265a3f9affbe27c9b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_eyals_will.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_eye_of_the_wyrm.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_eye_of_the_wyrm.png
new file mode 100644
index 0000000000000000000000000000000000000000..4910109a76cf5e4f6708e4acf4268e2b8ced86ff
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_eye_of_the_wyrm.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_focus_whip.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_focus_whip.png
new file mode 100644
index 0000000000000000000000000000000000000000..250940bacb456cd6242a207fc141d5e4bb19a962
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_focus_whip.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_genocide.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_genocide.png
new file mode 100644
index 0000000000000000000000000000000000000000..ed5729144c163fbcdff9b4c70187872483be93de
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_genocide.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_gravitational_staff.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_gravitational_staff.png
new file mode 100644
index 0000000000000000000000000000000000000000..eeb95709e76066c9ff1912aad1c3bf0de887aacd
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_gravitational_staff.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_great_caller.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_great_caller.png
new file mode 100644
index 0000000000000000000000000000000000000000..839e6d91fbf2bb90759b63412ca309569d56061a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_great_caller.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_guidance.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_guidance.png
new file mode 100644
index 0000000000000000000000000000000000000000..58c8cd188d8c51dda1be012a18ee767f2566dd98
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_guidance.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_hareskin_sling.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_hareskin_sling.png
new file mode 100644
index 0000000000000000000000000000000000000000..6c0078f47a9a08c03748c57e81fe28f602f8c239
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_hareskin_sling.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_hydras_bite.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_hydras_bite.png
new file mode 100644
index 0000000000000000000000000000000000000000..9e9ba9f9c44cc558422406cecd906bce32d90cc0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_hydras_bite.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_latafayn.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_latafayn.png
new file mode 100644
index 0000000000000000000000000000000000000000..cd877a496c46b4be40b49127b7709b39cd345059
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_latafayn.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_merkuls_second_eye.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_merkuls_second_eye.png
new file mode 100644
index 0000000000000000000000000000000000000000..29a2b1597cb83ba773cc1c5bc8bc4317b8c388d2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_merkuls_second_eye.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_nexus_of_the_way.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_nexus_of_the_way.png
new file mode 100644
index 0000000000000000000000000000000000000000..cb2973b516bc3bc60decaf4ab7f15db79c73cab9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_nexus_of_the_way.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_nithans_force.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_nithans_force.png
new file mode 100644
index 0000000000000000000000000000000000000000..d5b85ad43e1e1e0f13630b93dd9049409aca8c71
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_nithans_force.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_obliterator.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_obliterator.png
new file mode 100644
index 0000000000000000000000000000000000000000..3829c2f910e8af1a093ab3d7816131a3085d8253
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_obliterator.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_oozing_heart.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_oozing_heart.png
new file mode 100644
index 0000000000000000000000000000000000000000..41e2d6e438421cf9eea2fbc6b0d981d98170c255
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_oozing_heart.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_psionic_fury.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_psionic_fury.png
new file mode 100644
index 0000000000000000000000000000000000000000..4b56f57ba3c4d2341429f3047a05b6fcffa947a1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_psionic_fury.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_rod_of_sarrilon.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_rod_of_sarrilon.png
new file mode 100644
index 0000000000000000000000000000000000000000..24eeec22c9c8dc1c836a9825a24fcfa6db26662b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_rod_of_sarrilon.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_sceptre_of_the_archlich.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_sceptre_of_the_archlich.png
new file mode 100644
index 0000000000000000000000000000000000000000..324af6147c447e6caec92f297f72c31d8e574b55
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_sceptre_of_the_archlich.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_serpents_glare.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_serpents_glare.png
new file mode 100644
index 0000000000000000000000000000000000000000..d2eab0757c61c66f496f66c6ace30a0779686ff5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_serpents_glare.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_shield_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_shield_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..31e36d71326e830d2e703534575cc12ef84cce3a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_shield_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_skeletal_claw.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_skeletal_claw.png
new file mode 100644
index 0000000000000000000000000000000000000000..79f4e25891b29a94b389a85cdfa40181fb3a1594
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_skeletal_claw.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_sling_eldoral_last_resort.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_sling_eldoral_last_resort.png
new file mode 100644
index 0000000000000000000000000000000000000000..edcbdc6467c5a126cca8ad16b43743426cf78f98
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_sling_eldoral_last_resort.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_spectral_blade.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_spectral_blade.png
new file mode 100644
index 0000000000000000000000000000000000000000..5fb7117894aa72c52e448800e886190413c6163c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_spectral_blade.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_spellcrusher.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_spellcrusher.png
new file mode 100644
index 0000000000000000000000000000000000000000..4537fa9f29b666329458ad65f108cc851c9d8c19
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_spellcrusher.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_staff_bolbums_big_knocker.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_staff_bolbums_big_knocker.png
new file mode 100644
index 0000000000000000000000000000000000000000..a82d29cf43f28a366aa6a642eb56018d6f96dca3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_staff_bolbums_big_knocker.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_staff_broken_bottom_telos.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_staff_broken_bottom_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..0c66392174325560bd857ab9cfb040a62860d03d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_staff_broken_bottom_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_staff_broken_top_telos.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_staff_broken_top_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..f149c0207b3f8f51edbd9f71b3ece0efad034236
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_staff_broken_top_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_staff_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_staff_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..6dd5444957946b7b1014c2f22af60c065f64c5b0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_staff_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_staff_kors_fall.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_staff_kors_fall.png
new file mode 100644
index 0000000000000000000000000000000000000000..7b0d5469c3a2ad094ad35eabc11ef933bfa084de
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_staff_kors_fall.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_staff_lost_staff_archmage_tarelion.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_staff_lost_staff_archmage_tarelion.png
new file mode 100644
index 0000000000000000000000000000000000000000..efdbdc6be9902e3417f095e0d55840f4bf613cab
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_staff_lost_staff_archmage_tarelion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_staff_of_absorbtion.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_staff_of_absorbtion.png
new file mode 100644
index 0000000000000000000000000000000000000000..9051a325883895e2dac6cb9d0f1cb3614fcc7886
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_staff_of_absorbtion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_staff_of_arcane_supremacy.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_staff_of_arcane_supremacy.png
new file mode 100644
index 0000000000000000000000000000000000000000..5897d7895978a82ad6f0f55d8e582f9abaebf6e2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_staff_of_arcane_supremacy.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_staff_of_destruction.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_staff_of_destruction.png
new file mode 100644
index 0000000000000000000000000000000000000000..f607ce1df1263ee220d54b2f6cef3b0f2eee7a13
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_staff_of_destruction.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_staff_penitence.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_staff_penitence.png
new file mode 100644
index 0000000000000000000000000000000000000000..3a61df02ec28bacc39cee375233bdf01f439f171
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_staff_penitence.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_staff_voice_of_telos.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_staff_voice_of_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..4dc7aeaebe00a8047a55cc58ad2b47bb15140486
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_staff_voice_of_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_storm_fury.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_storm_fury.png
new file mode 100644
index 0000000000000000000000000000000000000000..a1cd8c39c45de7183253126c717742e2c723bceb
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_storm_fury.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_stormlash.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_stormlash.png
new file mode 100644
index 0000000000000000000000000000000000000000..2354dfaf46c5bf4c723497feb54df9d66c7e670a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_stormlash.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_surefire.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_surefire.png
new file mode 100644
index 0000000000000000000000000000000000000000..1c35017e3c0d3f1b1eac4274b2a8478758e21fcf
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_surefire.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_telos_spire_of_power.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_telos_spire_of_power.png
new file mode 100644
index 0000000000000000000000000000000000000000..49e1f639455716f0175009e23634adaa2e696a08
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_telos_spire_of_power.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_thaloren_tree_longbow.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_thaloren_tree_longbow.png
new file mode 100644
index 0000000000000000000000000000000000000000..978129fe5419e3d6f67c77ba82d066256367042a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_thaloren_tree_longbow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_trident_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_trident_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..abc7d21e7460ebad8c38d4f6a591f5041b875eef
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_trident_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_umbral_razor.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_umbral_razor.png
new file mode 100644
index 0000000000000000000000000000000000000000..184bfec1af6ccff284d76e49b1163f138e135257
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_umbral_razor.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_unstoppable_mauler.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_unstoppable_mauler.png
new file mode 100644
index 0000000000000000000000000000000000000000..a387d345ab5b3b7071229794a54685d945eb365c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_unstoppable_mauler.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_voratun_hammer_of_the_deep_bellow.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_voratun_hammer_of_the_deep_bellow.png
new file mode 100644
index 0000000000000000000000000000000000000000..6e69813fe0cc4f11d67e055d3d37595c4e90f911
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_voratun_hammer_of_the_deep_bellow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_warmaster_gnargs_murderblade.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_warmaster_gnargs_murderblade.png
new file mode 100644
index 0000000000000000000000000000000000000000..a738d187aa23225f8f9f377661ddbe20c4f891a7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_warmaster_gnargs_murderblade.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_whip_of_urh_rok.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_whip_of_urh_rok.png
new file mode 100644
index 0000000000000000000000000000000000000000..6871fb558cd8912f605ca9319e1630be0287ea1c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_whip_of_urh_rok.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_whip_scorpions_tail.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_whip_scorpions_tail.png
new file mode 100644
index 0000000000000000000000000000000000000000..7fe4fb863abf6d4db66fa87a6be221111b567eb1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_whip_scorpions_tail.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_writhing_essence_of_nightmares.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_writhing_essence_of_nightmares.png
new file mode 100644
index 0000000000000000000000000000000000000000..0f4a4c86793a74149a105cdc27665fb4537c684e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/left_writhing_essence_of_nightmares.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/light_armour_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/light_armour_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..f8bc0c6b0d0a3bb5a78c36444bb5c06678dcfa73
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/light_armour_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/malslek_the_accursed_hat.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/malslek_the_accursed_hat.png
new file mode 100644
index 0000000000000000000000000000000000000000..072578500c8fc0559a0699321e869bb1e72a1b9b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/malslek_the_accursed_hat.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/masochism.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/masochism.png
new file mode 100644
index 0000000000000000000000000000000000000000..bf8d679ae6e5a6154f9e71f54888748319d9dfcc
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/masochism.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/massive_armour_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/massive_armour_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..3217b691e11f3aee3cc9420ab8f6dbfa723ee6c5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/massive_armour_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/molten_skin.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/molten_skin.png
index 065da594034e1b0bc670426543785206f96cb753..ff3fce55f680d0d39a5bc8134af2abf057df16a7 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/molten_skin.png and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/molten_skin.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/mummy_wrappings.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/mummy_wrappings.png
index 8a217a61d7cb703b334639b8122a0d251e9d335b..36e5ece3360540261df7fb3afdac8d27ad16a32b 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/mummy_wrappings.png and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/mummy_wrappings.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/omniscience.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/omniscience.png
new file mode 100644
index 0000000000000000000000000000000000000000..43274f6a7efe1dd7b35acee6856a98a837031e79
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/omniscience.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/plate_armor_of_the_king.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/plate_armor_of_the_king.png
new file mode 100644
index 0000000000000000000000000000000000000000..bb3965c048824d10b5467a04db2407448c637d18
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/plate_armor_of_the_king.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/plate_of_the_blackened_mind.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/plate_of_the_blackened_mind.png
new file mode 100644
index 0000000000000000000000000000000000000000..e6debd3abe7585774ce73a1b42758ab047518562
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/plate_of_the_blackened_mind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/pouch_of_the_subconscious.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/pouch_of_the_subconscious.png
new file mode 100644
index 0000000000000000000000000000000000000000..881c1b51b068dd86157855b70920c929258c2b30
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/pouch_of_the_subconscious.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/quiver_of_domination.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/quiver_of_domination.png
new file mode 100644
index 0000000000000000000000000000000000000000..a8068c26dcf4564448a1a76392839c072146e44b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/quiver_of_domination.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/quiver_of_the_sun.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/quiver_of_the_sun.png
new file mode 100644
index 0000000000000000000000000000000000000000..8c73f4885030403c6d7f8a0eae9c4b6f19c7424d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/quiver_of_the_sun.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/radiance_behind.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/radiance_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..a8b0b21c6344be58ca6456edf18151fe67dcf525
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/radiance_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/radiance_hood.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/radiance_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..da103aacc98231168759ba94e99199751220d7fb
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/radiance_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/radiance_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/radiance_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..91746244d8c0f8f93636bd364a2e4190fb6c4576
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/radiance_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_1Haxe_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_1Haxe_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..b083430b6cb0ee506fb6494b3a3afdf9d4408a49
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_1Haxe_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_1Hmace_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_1Hmace_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..42303d59e545f0f74b41b8641933e78de2426842
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_1Hmace_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_1Hsword_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_1Hsword_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..218631098a3f9a6c3b032ef604f6beef2471336c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_1Hsword_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_2Haxe_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_2Haxe_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..5c15de6ee10caaf78fffdf773eee64e72767e4e8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_2Haxe_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_2Hmace_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_2Hmace_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..8c0365eedef37108a72e771b9a53e6a6bdf6036d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_2Hmace_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_2Hsword_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_2Hsword_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..db0ca919607f21d3e922b02f96290874459e5787
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_2Hsword_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_amethyst_of_sanctuary.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_amethyst_of_sanctuary.png
new file mode 100644
index 0000000000000000000000000000000000000000..e95a4ae75075dc9c4deda3d5a08cfa1bae08a298
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_amethyst_of_sanctuary.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_awaken_staff_of_absorbtion.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_awaken_staff_of_absorbtion.png
new file mode 100644
index 0000000000000000000000000000000000000000..3c8cbb360a01ae8e1cd24dc425991ff92a10c98a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_awaken_staff_of_absorbtion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_blighted_maul.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_blighted_maul.png
new file mode 100644
index 0000000000000000000000000000000000000000..a5d7767d8c2583443b8568a67c2029d434bcb742
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_blighted_maul.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_bloomsoul.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_bloomsoul.png
new file mode 100644
index 0000000000000000000000000000000000000000..e7ee94061750ac58af723a7725925503bab416de
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_bloomsoul.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_borosks_hate.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_borosks_hate.png
new file mode 100644
index 0000000000000000000000000000000000000000..eefdf422d9752099d65ab76d23209d3800bcee12
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_borosks_hate.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_bow_corpsebow.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_bow_corpsebow.png
new file mode 100644
index 0000000000000000000000000000000000000000..fa9ea74bbd75d3fd2b0f2a11af55ccc8fd439d60
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_bow_corpsebow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_bow_epochs_curve.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_bow_epochs_curve.png
new file mode 100644
index 0000000000000000000000000000000000000000..69d5ac13bb67c59433c3027b32eb5704cbd1325c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_bow_epochs_curve.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_champions_will.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_champions_will.png
new file mode 100644
index 0000000000000000000000000000000000000000..3c188d97e4308babcb92a14d9aa6f3b9f4a6bce0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_champions_will.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_colaryem.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_colaryem.png
new file mode 100644
index 0000000000000000000000000000000000000000..efe568b44f805d99e54e9d8245301eab88e3eacd
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_colaryem.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_core_of_the_forge.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_core_of_the_forge.png
new file mode 100644
index 0000000000000000000000000000000000000000..45059807788d675c92dc5024348091cafa28d940
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_core_of_the_forge.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_corpus_2.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_corpus_2.png
new file mode 100644
index 0000000000000000000000000000000000000000..4c492ff70950b9be043b7c1c4b60c2977b4bb02d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_corpus_2.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_crystal_shard.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_crystal_shard.png
new file mode 100644
index 0000000000000000000000000000000000000000..4a6b94349e29c04635d90e1dc8a6b5327d2c1546
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_crystal_shard.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_dagger_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_dagger_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..48ab2702cc7d0e97c821539074680261dc1f388c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_dagger_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_dream_malleus.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_dream_malleus.png
new file mode 100644
index 0000000000000000000000000000000000000000..a64baa67619ed830bae7c9bda1c4bdc7a417fc70
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_dream_malleus.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_eclipse.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_eclipse.png
new file mode 100644
index 0000000000000000000000000000000000000000..65c12a3a56f4a2629f514c18dee3a262a209804f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_eclipse.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_eyals_will.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_eyals_will.png
new file mode 100644
index 0000000000000000000000000000000000000000..9240709122bc7a5d11263738cc90a71085b45d25
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_eyals_will.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_eye_of_the_wyrm.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_eye_of_the_wyrm.png
new file mode 100644
index 0000000000000000000000000000000000000000..cbf5ded4b97637f09731420933009b72641db362
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_eye_of_the_wyrm.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_focus_whip.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_focus_whip.png
new file mode 100644
index 0000000000000000000000000000000000000000..d9afb596f9e80ead262ccb9027c30f8776dbf1cc
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_focus_whip.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_genocide.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_genocide.png
new file mode 100644
index 0000000000000000000000000000000000000000..903518fca0e2ad0d3f5ff70e3107566010cde2cd
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_genocide.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_gravitational_staff.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_gravitational_staff.png
new file mode 100644
index 0000000000000000000000000000000000000000..aa8ace058772937dc9d0e08c8ccd647a67dd476f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_gravitational_staff.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_great_caller.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_great_caller.png
new file mode 100644
index 0000000000000000000000000000000000000000..9e9749c16acc6dc60857a4c1bb9623605258c552
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_great_caller.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_guidance.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_guidance.png
new file mode 100644
index 0000000000000000000000000000000000000000..ca1337664dad48c4bc2eca6370038527df09ef58
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_guidance.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_hareskin_sling.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_hareskin_sling.png
new file mode 100644
index 0000000000000000000000000000000000000000..7bfa39f69a9b4b1d2c7954b026978b68fb0bd7d2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_hareskin_sling.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_hydras_bite.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_hydras_bite.png
new file mode 100644
index 0000000000000000000000000000000000000000..11f0d5b3ec3af73da3a16dcb6500c94c8742c24f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_hydras_bite.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_latafayn.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_latafayn.png
new file mode 100644
index 0000000000000000000000000000000000000000..0def0e081f4ad5c72277c3609778596ce1af82a3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_latafayn.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_merkuls_second_eye.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_merkuls_second_eye.png
new file mode 100644
index 0000000000000000000000000000000000000000..2f169bb4d7863f2231c01a4a528a689caf5f7a04
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_merkuls_second_eye.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_nexus_of_the_way.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_nexus_of_the_way.png
new file mode 100644
index 0000000000000000000000000000000000000000..eb5a0154d55753ae16beaa1e87108d90ee54fb98
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_nexus_of_the_way.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_nithans_force.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_nithans_force.png
new file mode 100644
index 0000000000000000000000000000000000000000..7e6026b5d73c379e7eaa395a7c6e511cc3b71138
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_nithans_force.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_obliterator.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_obliterator.png
new file mode 100644
index 0000000000000000000000000000000000000000..0169d67916a2f24fc7781e8b27727e72f98a1e96
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_obliterator.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_oozing_heart.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_oozing_heart.png
new file mode 100644
index 0000000000000000000000000000000000000000..42b3f10342225c92e27c78622a92b6cfd4a40f3f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_oozing_heart.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_psionic_fury.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_psionic_fury.png
new file mode 100644
index 0000000000000000000000000000000000000000..ad124e1f0129eadf46471ca9c2756494ff955c8f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_psionic_fury.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_rod_of_sarrilon.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_rod_of_sarrilon.png
new file mode 100644
index 0000000000000000000000000000000000000000..b18d41d7b489d3d305751525804b7ad14215599f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_rod_of_sarrilon.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_sceptre_of_the_archlich.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_sceptre_of_the_archlich.png
new file mode 100644
index 0000000000000000000000000000000000000000..1968301b41cff5e44f2a6b554ccfd6a8de34ba54
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_sceptre_of_the_archlich.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_serpents_glare.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_serpents_glare.png
new file mode 100644
index 0000000000000000000000000000000000000000..1f0fc1330f7f58843b39164a90b04f55c8c1b7ec
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_serpents_glare.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_shield_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_shield_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..32ba2a920e34b58903f2247c996d5133d6a3e3c8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_shield_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_skeletal_claw.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_skeletal_claw.png
new file mode 100644
index 0000000000000000000000000000000000000000..4c4636336ce60c5efe6640b62103d0b77a45d0c4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_skeletal_claw.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_sling_eldoral_last_resort.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_sling_eldoral_last_resort.png
new file mode 100644
index 0000000000000000000000000000000000000000..86ee6709dbf646467130670be3d4a943482ee8e3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_sling_eldoral_last_resort.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_spectral_blade.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_spectral_blade.png
new file mode 100644
index 0000000000000000000000000000000000000000..72a63b8763389990f3341fe5768afd3d1ca3fdee
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_spectral_blade.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_spellcrusher.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_spellcrusher.png
new file mode 100644
index 0000000000000000000000000000000000000000..9c613129e99f7fbbe2c4b9f4ac41939e74ad3303
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_spellcrusher.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_staff_bolbums_big_knocker.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_staff_bolbums_big_knocker.png
new file mode 100644
index 0000000000000000000000000000000000000000..200d6a649e65801f01a77537a36cc5cc1abee58b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_staff_bolbums_big_knocker.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_staff_broken_bottom_telos.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_staff_broken_bottom_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..6bec1f91e9cfe8ae61c1811fcff7775fcc7e199c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_staff_broken_bottom_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_staff_broken_top_telos.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_staff_broken_top_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..e41822182544021406742430f6c166d4cd7c6d80
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_staff_broken_top_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_staff_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_staff_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..5e18cd4dee9e9973bd0ef3652221c5b3e53bf974
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_staff_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_staff_kors_fall.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_staff_kors_fall.png
new file mode 100644
index 0000000000000000000000000000000000000000..cd603bb4b8824b7ad9ffa510357486df4bed41b7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_staff_kors_fall.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_staff_lost_staff_archmage_tarelion.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_staff_lost_staff_archmage_tarelion.png
new file mode 100644
index 0000000000000000000000000000000000000000..a5166cfa9b3da7047013083f4cd35f0aec7058b1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_staff_lost_staff_archmage_tarelion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_staff_of_absorbtion.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_staff_of_absorbtion.png
new file mode 100644
index 0000000000000000000000000000000000000000..4f7d8a70f57f8345de65289b516ea2c70ba17009
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_staff_of_absorbtion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_staff_of_arcane_supremacy.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_staff_of_arcane_supremacy.png
new file mode 100644
index 0000000000000000000000000000000000000000..034602703c9529f2cf4bf03395979cbd67ebbea4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_staff_of_arcane_supremacy.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_staff_of_destruction.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_staff_of_destruction.png
new file mode 100644
index 0000000000000000000000000000000000000000..3d05bd8ea5fe6f4041a8d4b74564a953a439b58b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_staff_of_destruction.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_staff_penitence.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_staff_penitence.png
new file mode 100644
index 0000000000000000000000000000000000000000..ab393baf9d194f2efddd04a698a084dec358ce20
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_staff_penitence.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_staff_voice_of_telos.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_staff_voice_of_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..18dfcef72003fc027bf4a7ec8b1db7fdd6567f66
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_staff_voice_of_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_storm_fury.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_storm_fury.png
new file mode 100644
index 0000000000000000000000000000000000000000..017b50ed19935813c684c209b214e7cab5777bee
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_storm_fury.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_stormlash.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_stormlash.png
new file mode 100644
index 0000000000000000000000000000000000000000..7e9f6ae80f94313001dbd91ec26b4f3afbdb7970
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_stormlash.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_surefire.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_surefire.png
new file mode 100644
index 0000000000000000000000000000000000000000..912361cda0949a17d52ba5394eaf6999b52949dd
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_surefire.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_telos_spire_of_power.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_telos_spire_of_power.png
new file mode 100644
index 0000000000000000000000000000000000000000..01458e5604fb4d23fc020e8c4157a91905a5bdbf
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_telos_spire_of_power.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_thaloren_tree_longbow.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_thaloren_tree_longbow.png
new file mode 100644
index 0000000000000000000000000000000000000000..8c7bf8158c1e2bec4eb50d48423c0abeb5279290
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_thaloren_tree_longbow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_trident_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_trident_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..8dc45d09460d4fe53f49a44f6807505d7330c6f3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_trident_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_umbral_razor.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_umbral_razor.png
new file mode 100644
index 0000000000000000000000000000000000000000..32d1573beb71dde63ebe302efd328c19f28b0aa4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_umbral_razor.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_unstoppable_mauler.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_unstoppable_mauler.png
new file mode 100644
index 0000000000000000000000000000000000000000..f5aa25887dae8f1a292c7e655ec9e60c1c1bfa0d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_unstoppable_mauler.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_voratun_hammer_of_the_deep_bellow.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_voratun_hammer_of_the_deep_bellow.png
new file mode 100644
index 0000000000000000000000000000000000000000..733bd7c3254886bb8a89a84e2aef6ea518dc5153
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_voratun_hammer_of_the_deep_bellow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_warmaster_gnargs_murderblade.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_warmaster_gnargs_murderblade.png
new file mode 100644
index 0000000000000000000000000000000000000000..22ade7a97ce2617e4421ae752cd1822432d7ae7e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_warmaster_gnargs_murderblade.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_whip_of_urh_rok.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_whip_of_urh_rok.png
new file mode 100644
index 0000000000000000000000000000000000000000..d32da3f43a809311fb5ae033e372a598b1a3bc90
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_whip_of_urh_rok.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_whip_scorpions_tail.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_whip_scorpions_tail.png
new file mode 100644
index 0000000000000000000000000000000000000000..ea0b0bbb284339e2641924eba9cb50683eab217e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_whip_scorpions_tail.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_writhing_essence_of_nightmares.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_writhing_essence_of_nightmares.png
new file mode 100644
index 0000000000000000000000000000000000000000..16b8e59a2536b01410970e34dfc38ecaa659a42f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/right_writhing_essence_of_nightmares.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/robe_black_robe.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/robe_black_robe.png
new file mode 100644
index 0000000000000000000000000000000000000000..fa5a46c27110e23b03d58cf923cc3333b0ee9376
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/robe_black_robe.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/robe_firewalker.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/robe_firewalker.png
new file mode 100644
index 0000000000000000000000000000000000000000..9615843668bd60ffd0c823e7234ee1e07d1c5afd
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/robe_firewalker.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/robe_of_force.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/robe_of_force.png
new file mode 100644
index 0000000000000000000000000000000000000000..2fc6d6a4df084f792a612197114eaacfd6230b8c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/robe_of_force.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/robe_of_the_archmage.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/robe_of_the_archmage.png
index 9218bb2ffe3f59336d55be8439874122c2faecb3..d5a71d2fe4e885f8f693e58607e964a804494cfc 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/robe_of_the_archmage.png and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/robe_of_the_archmage.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/robe_spider_silk_robe_spydre.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/robe_spider_silk_robe_spydre.png
new file mode 100644
index 0000000000000000000000000000000000000000..4cb41034e00038d77d30f2cc2e3637d550b63420
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/robe_spider_silk_robe_spydre.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/robe_temporal_augmentation_robe.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/robe_temporal_augmentation_robe.png
new file mode 100644
index 0000000000000000000000000000000000000000..616a27dbdc75a12852512fdf47744bafb2aed49a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/robe_temporal_augmentation_robe.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/robe_vestments_of_the_conclave.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/robe_vestments_of_the_conclave.png
new file mode 100644
index 0000000000000000000000000000000000000000..854de8c2c4c8a67fe249bbafe6b28b624e19e574
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/robe_vestments_of_the_conclave.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/robes_of_deflection.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/robes_of_deflection.png
new file mode 100644
index 0000000000000000000000000000000000000000..731b501ca98b3cbdfe940fd2e263f293bf94845b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/robes_of_deflection.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/scale_mail_of_kroltar.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/scale_mail_of_kroltar.png
new file mode 100644
index 0000000000000000000000000000000000000000..07215debf224a34383197a8cb882b85e4a46e724
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/scale_mail_of_kroltar.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/scorched_boots.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/scorched_boots.png
new file mode 100644
index 0000000000000000000000000000000000000000..ccfcb2a2837e9c384e45140f5e2557b944d5d1de
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/scorched_boots.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/scorpion_gauntlets.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/scorpion_gauntlets.png
new file mode 100644
index 0000000000000000000000000000000000000000..36742af8a1359ff62e615b08625442b1f66c5a5c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/scorpion_gauntlets.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/serpentine_cloak_behind.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/serpentine_cloak_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..ddf351159a4e183da3a9a82dd4ffebb69c8a992b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/serpentine_cloak_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/serpentine_cloak_hood.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/serpentine_cloak_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..1452149f7c4dfb32a0b85abf9e4f4e577bd0c469
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/serpentine_cloak_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/serpentine_cloak_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/serpentine_cloak_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..8a4547697d8b3fa76a863cb12a4d7f3330dae177
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/serpentine_cloak_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/shifting_boots.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/shifting_boots.png
new file mode 100644
index 0000000000000000000000000000000000000000..1bb992a2c6a5b7f149074bfb0babca297a2e3260
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/shifting_boots.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/silk_current.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/silk_current.png
new file mode 100644
index 0000000000000000000000000000000000000000..f6731654985b46849b4c519520e7d479bfb1686d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/silk_current.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/skin_of_many.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/skin_of_many.png
index ab33f3a050e54126c4f7a0a875aeaa3a2339d007..2f9d3e63f8595034d59781845a0e793d2837145f 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/skin_of_many.png and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/skin_of_many.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/sludgegrip.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/sludgegrip.png
new file mode 100644
index 0000000000000000000000000000000000000000..58219b308d93d0314d25c178b3b5a90268083584
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/sludgegrip.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/snow_giant_arm_wraps.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/snow_giant_arm_wraps.png
new file mode 100644
index 0000000000000000000000000000000000000000..0cf828e0e17c06c7899147635d8cb088b68dc34e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/snow_giant_arm_wraps.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/spellhunt_remnants.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/spellhunt_remnants.png
new file mode 100644
index 0000000000000000000000000000000000000000..a4aa72e9fc0aeab96a4eeacb21b34a720b9b3d7b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/spellhunt_remnants.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/star_shot.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/star_shot.png
new file mode 100644
index 0000000000000000000000000000000000000000..cee9aff8432afec743a35d76df299665eb8c280c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/star_shot.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/storm_bringers_gauntlets.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/storm_bringers_gauntlets.png
new file mode 100644
index 0000000000000000000000000000000000000000..3cdc67ed431954011478824cd5cc6d9311f6c86d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/storm_bringers_gauntlets.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/terrasca.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/terrasca.png
new file mode 100644
index 0000000000000000000000000000000000000000..694297890fd7d51c01808708e3244d14ac0f4989
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/terrasca.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/the_calm.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/the_calm.png
new file mode 100644
index 0000000000000000000000000000000000000000..5b4d19885f58b986a999a80510b7d51f58f09b85
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/the_calm.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/the_inner_eye.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/the_inner_eye.png
new file mode 100644
index 0000000000000000000000000000000000000000..d007e5b0d39bd5baab1ec37a3b4375cc5b02cc67
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/the_inner_eye.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/the_titans_quiver.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/the_titans_quiver.png
new file mode 100644
index 0000000000000000000000000000000000000000..639fccb2c0457dfa536ab24b4c17a8c4b8255e95
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/the_titans_quiver.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/the_untouchable.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/the_untouchable.png
new file mode 100644
index 0000000000000000000000000000000000000000..245befa580fc4d4a4c0fd63774e19b7b7c7d21a1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/the_untouchable.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/the_warped_boots.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/the_warped_boots.png
new file mode 100644
index 0000000000000000000000000000000000000000..8e45ff315ccc83ae3f4537a7eeee3ad9887238e0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/the_warped_boots.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/unbreakable_greaves.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/unbreakable_greaves.png
new file mode 100644
index 0000000000000000000000000000000000000000..61606287b3ed263be2ac43107216c9d8069668ad
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/unbreakable_greaves.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/ureslaks_molted_scales_behind.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/ureslaks_molted_scales_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..ac57aca5d8f642ba446265738cddc69483b7d89e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/ureslaks_molted_scales_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/ureslaks_molted_scales_hood.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/ureslaks_molted_scales_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..1c1f9409d0ab8b21e9a5c3079f70275a0d6c73b6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/ureslaks_molted_scales_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/ureslaks_molted_scales_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/ureslaks_molted_scales_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..003017ea02d8ed7547b326d94cec49b80559a8a4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/ureslaks_molted_scales_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/void_quiver.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/void_quiver.png
new file mode 100644
index 0000000000000000000000000000000000000000..66e7ea86775828cecb1e5087b64e31dd2febc22c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/void_quiver.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/wanderers_rest.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/wanderers_rest.png
new file mode 100644
index 0000000000000000000000000000000000000000..e9c63fc7c1d32080a2f7f49aeb483ea8eed6009b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/wanderers_rest.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/wind_worn_shot.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/wind_worn_shot.png
new file mode 100644
index 0000000000000000000000000000000000000000..4139bbfb688f68741fc43b1937d645379f2122bf
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/wind_worn_shot.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/wizard_hat_of_arcane_understanding.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/wizard_hat_of_arcane_understanding.png
new file mode 100644
index 0000000000000000000000000000000000000000..651bc72bb8daee2fc5f1026d75866933c62ec49d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/wizard_hat_of_arcane_understanding.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/wooden_cuirass.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/wooden_cuirass.png
index ec29bdd80691de16081567e66bb0a69302a93cad..8aaf59576271290a5dbcc9294b892d0c33a4ef23 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/wooden_cuirass.png and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/wooden_cuirass.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/wrap_of_stone_behind.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/wrap_of_stone_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..0dff13df538c8153209febd3c75e9e030cc68fd5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/wrap_of_stone_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/wrap_of_stone_hood.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/wrap_of_stone_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..d32e51222c7cee5e29cd7b43147ccd14c585d650
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/wrap_of_stone_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/wrap_of_stone_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/wrap_of_stone_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..664c819c52df018a6a27f623d08eb21f898ee5eb
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/wrap_of_stone_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/wyrmbreath.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/wyrmbreath.png
new file mode 100644
index 0000000000000000000000000000000000000000..e03cf93ca4fd4b29f47b5597104bbeb2f288d433
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/wyrmbreath.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/yaldan_baoth.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/yaldan_baoth.png
new file mode 100644
index 0000000000000000000000000000000000000000..bb133c6ab45dc54cb970ede84bad8615de448624
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/yaldan_baoth.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/yeek_fur_robe.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/yeek_fur_robe.png
new file mode 100644
index 0000000000000000000000000000000000000000..1ae965ac334c8653891a8f37bb74d4772da91266
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/special/yeek_fur_robe.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/upper_body_25.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/upper_body_25.png
index 005c52c1013dd81c3b65e3becc2476fb9a767eec..25f0a7547cab65325163e9e79f5f40a666832404 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/upper_body_25.png and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/upper_body_25.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/upper_body_29.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/upper_body_29.png
new file mode 100644
index 0000000000000000000000000000000000000000..9deb9ed8ffe2df8fa17382a7ccf3fd368794b82d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/upper_body_29.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/upper_body_30.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/upper_body_30.png
new file mode 100644
index 0000000000000000000000000000000000000000..363f495a4391de5a8b8b1b03261879d508c5eee0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/upper_body_30.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/upper_body_31.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/upper_body_31.png
new file mode 100644
index 0000000000000000000000000000000000000000..1ccb10a78e809f1c13f2b735c9d3992827ce0a7a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/upper_body_31.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/upper_body_32.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/upper_body_32.png
new file mode 100644
index 0000000000000000000000000000000000000000..a5852ae7247aef6aa2ea6b42fb1d1d4496ed06a1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/upper_body_32.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/upper_body_33.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/upper_body_33.png
new file mode 100644
index 0000000000000000000000000000000000000000..6705d1cbe9e697072e7f3d1b3badbd10c3ec7724
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/upper_body_33.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/upper_body_34.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/upper_body_34.png
new file mode 100644
index 0000000000000000000000000000000000000000..36e20ff49574cd09f99e5ead53f4cd8e846ec120
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/upper_body_34.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/upper_body_35.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/upper_body_35.png
new file mode 100644
index 0000000000000000000000000000000000000000..8d85c53ee8c03f9d06c878e14fb8cf93f14d01dc
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/upper_body_35.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/upper_body_36.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/upper_body_36.png
new file mode 100644
index 0000000000000000000000000000000000000000..dfc052a19b607811c3ee1ffad52bfb4e48570cec
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/upper_body_36.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/upper_body_37.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/upper_body_37.png
new file mode 100644
index 0000000000000000000000000000000000000000..a533fca497934595d173abb35c85e28ba3442043
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/upper_body_37.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/upper_body_38.png b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/upper_body_38.png
new file mode 100644
index 0000000000000000000000000000000000000000..bd9389963ea2a17f3056e85598e327eec4b8e45b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/dwarf_male/upper_body_38.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/cloak_behind_07.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/cloak_behind_07.png
new file mode 100644
index 0000000000000000000000000000000000000000..b0d11889ec32527a967516bcd76e7892eed7e706
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/cloak_behind_07.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/cloak_behind_08.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/cloak_behind_08.png
new file mode 100644
index 0000000000000000000000000000000000000000..77115f9886c8fbb7ed77f41857a94e87298ae858
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/cloak_behind_08.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/cloak_behind_09.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/cloak_behind_09.png
new file mode 100644
index 0000000000000000000000000000000000000000..3f271ffaf414bd9bc0e896fa456577a698894768
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/cloak_behind_09.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/cloak_hood_07.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/cloak_hood_07.png
new file mode 100644
index 0000000000000000000000000000000000000000..56904f89a37d7185fcf9340a24231ebddc4cb120
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/cloak_hood_07.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/cloak_hood_08.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/cloak_hood_08.png
new file mode 100644
index 0000000000000000000000000000000000000000..893647ebb9e414fd7c4153185558c3fa9350fa25
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/cloak_hood_08.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/cloak_hood_09.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/cloak_hood_09.png
new file mode 100644
index 0000000000000000000000000000000000000000..497e627565dae1b4c98b36c9efe6f22382b3d2dc
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/cloak_hood_09.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/cloak_shoulder_07.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/cloak_shoulder_07.png
new file mode 100644
index 0000000000000000000000000000000000000000..307350f3956e86870c0a1e2e26e127f53c7d5c59
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/cloak_shoulder_07.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/cloak_shoulder_08.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/cloak_shoulder_08.png
new file mode 100644
index 0000000000000000000000000000000000000000..6d2265e1662e85adbf536be61cc7762ce69d1f72
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/cloak_shoulder_08.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/cloak_shoulder_09.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/cloak_shoulder_09.png
new file mode 100644
index 0000000000000000000000000000000000000000..0b3ec86f1e57f9628f7a5db5555939fb95def1eb
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/cloak_shoulder_09.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/feet_10.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/feet_10.png
new file mode 100644
index 0000000000000000000000000000000000000000..e429e8f134fa7f7e111ccb19ae6ffab29aec734e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/feet_10.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/feet_11.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/feet_11.png
new file mode 100644
index 0000000000000000000000000000000000000000..5b74190cbc5979725ff13b155bc5b4e6456c18fa
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/feet_11.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/gembag_01.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/gembag_01.png
new file mode 100644
index 0000000000000000000000000000000000000000..a4ea0cf980d2c5c7740f6ec63b32c489bcb83f30
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/gembag_01.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/gembag_02.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/gembag_02.png
new file mode 100644
index 0000000000000000000000000000000000000000..41d9a7621b41d5a4cba975ebf87da77205c45c84
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/gembag_02.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/gembag_03.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/gembag_03.png
new file mode 100644
index 0000000000000000000000000000000000000000..8fe8e13e6907a808c1942d6c051ff6c008b4ead3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/gembag_03.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/gembag_04.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/gembag_04.png
new file mode 100644
index 0000000000000000000000000000000000000000..b8949507f6718386d89e780bbcfbb5447846c20c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/gembag_04.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/gembag_05.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/gembag_05.png
new file mode 100644
index 0000000000000000000000000000000000000000..86cb53b0f1631663037075ff1f72910494f139a1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/gembag_05.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/hands_08.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/hands_08.png
new file mode 100644
index 0000000000000000000000000000000000000000..eddc7ad58d2a212c4e85de7e1849f716fabda0be
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/hands_08.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/hands_09.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/hands_09.png
new file mode 100644
index 0000000000000000000000000000000000000000..e2081ad1fcfc81e5d62227f1c0942fe137796ac3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/hands_09.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/head_19.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/head_19.png
new file mode 100644
index 0000000000000000000000000000000000000000..7cf44a9b6a53be2768efec96c463e013adbd8f28
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/head_19.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/head_20.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/head_20.png
new file mode 100644
index 0000000000000000000000000000000000000000..6846af833499a1f7c3d7a79bb4de583eaf452d4a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/head_20.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/head_21.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/head_21.png
new file mode 100644
index 0000000000000000000000000000000000000000..a336560ca74fa13a667fed0f646ec85d0424c8d4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/head_21.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/head_22.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/head_22.png
new file mode 100644
index 0000000000000000000000000000000000000000..c075f79264d9a3fc240277088b5280707f5abb90
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/head_22.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/head_23.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/head_23.png
new file mode 100644
index 0000000000000000000000000000000000000000..fd16f4e912256e07da1e2328e663c4b3bcaa206d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/head_23.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/lower_body_14.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/lower_body_14.png
new file mode 100644
index 0000000000000000000000000000000000000000..9d7f029cd6d32d9c39da16f2c5986024ac3a415b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/lower_body_14.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/lower_body_15.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/lower_body_15.png
new file mode 100644
index 0000000000000000000000000000000000000000..aceaddd53e2da63ada2687b8bb614d2477cfdea2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/lower_body_15.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/lower_body_16.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/lower_body_16.png
new file mode 100644
index 0000000000000000000000000000000000000000..bbd4807fa7f29cf0988a8ea75499636f78114ebe
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/lower_body_16.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/lower_body_17.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/lower_body_17.png
new file mode 100644
index 0000000000000000000000000000000000000000..978016dfa41cb6e7215a8110e6898b884f5c4cc3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/lower_body_17.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/lower_body_18.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/lower_body_18.png
new file mode 100644
index 0000000000000000000000000000000000000000..1c720a829ba3dc55b1b5305b9384c7eea4bbec26
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/lower_body_18.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/lower_body_19.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/lower_body_19.png
new file mode 100644
index 0000000000000000000000000000000000000000..d785fd194c21597ad701c305ce74439e0b2c9caf
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/lower_body_19.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/quiver_01.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/quiver_01.png
new file mode 100644
index 0000000000000000000000000000000000000000..bb5a1f861102337a52ae1c8c944600bcd5454ac4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/quiver_01.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/quiver_02.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/quiver_02.png
new file mode 100644
index 0000000000000000000000000000000000000000..59593a7127e345baf35a5b178c0a201bc4dc8711
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/quiver_02.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/quiver_03.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/quiver_03.png
new file mode 100644
index 0000000000000000000000000000000000000000..fa8acc1ea8287693ee728dfb28daa59c86ef84cc
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/quiver_03.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/quiver_04.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/quiver_04.png
new file mode 100644
index 0000000000000000000000000000000000000000..d80536ea86da489d3f6e25427bbe2b24cf04657b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/quiver_04.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/quiver_05.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/quiver_05.png
new file mode 100644
index 0000000000000000000000000000000000000000..208e8ce7531c664a8af421a4ae4fad7552bedb37
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/quiver_05.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/shotbag_01.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/shotbag_01.png
new file mode 100644
index 0000000000000000000000000000000000000000..f8cdf8e3c382166f33f6e3efa0e6ce9ddffaf536
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/shotbag_01.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/shotbag_02.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/shotbag_02.png
new file mode 100644
index 0000000000000000000000000000000000000000..d65ed7454c78637e7de5ebba1242f16657ae3ee1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/shotbag_02.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/shotbag_03.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/shotbag_03.png
new file mode 100644
index 0000000000000000000000000000000000000000..3c34d68a5a01b67c8676f6c797f2df2e23409f3f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/shotbag_03.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/shotbag_04.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/shotbag_04.png
new file mode 100644
index 0000000000000000000000000000000000000000..2e375c17fce019714fb42dc01b15eef2525c8ecf
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/shotbag_04.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/shotbag_05.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/shotbag_05.png
new file mode 100644
index 0000000000000000000000000000000000000000..8c054d648a267b235beca2a4fca6efd81ba10a42
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/shotbag_05.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/aether_walk.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/aether_walk.png
new file mode 100644
index 0000000000000000000000000000000000000000..4d009042fbf801e8f6f581c15f92fb7730900a04
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/aether_walk.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/arkuls_seige_arrows.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/arkuls_seige_arrows.png
new file mode 100644
index 0000000000000000000000000000000000000000..8d6170558f88b12fc79ddc163c1c8226bb37e4f7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/arkuls_seige_arrows.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/armor_chromatic_harness.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/armor_chromatic_harness.png
new file mode 100644
index 0000000000000000000000000000000000000000..9105935d0fa871474857446a98099120c27bd170
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/armor_chromatic_harness.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/armor_cuirass_of_the_thronesmen.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/armor_cuirass_of_the_thronesmen.png
new file mode 100644
index 0000000000000000000000000000000000000000..82e6c3aa9b03d3b5b6a80471bb50a517bbe7c4d0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/armor_cuirass_of_the_thronesmen.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/armor_natures_blessing.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/armor_natures_blessing.png
new file mode 100644
index 0000000000000000000000000000000000000000..f7d13b6173c4d71eb3f5e9ea0126bb13ffc4f4bd
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/armor_natures_blessing.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/armor_plate_borfasts_cage.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/armor_plate_borfasts_cage.png
new file mode 100644
index 0000000000000000000000000000000000000000..ed1f757ccae0c9c7cb3cc2683989eeda520f346d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/armor_plate_borfasts_cage.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/armor_rogue_plight.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/armor_rogue_plight.png
new file mode 100644
index 0000000000000000000000000000000000000000..93eea5f8e7eebf3d1494376113220a0a1753134b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/armor_rogue_plight.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/behemoth_skin.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/behemoth_skin.png
new file mode 100644
index 0000000000000000000000000000000000000000..f2c26917715ee219dc60b2fd90b726d3b8538d58
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/behemoth_skin.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/black_cloak_behind.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/black_cloak_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..5bfd578117226fc688e5327908faff4f64fe4e75
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/black_cloak_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/black_cloak_hood.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/black_cloak_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..da08ea3f72ebd158dde2f65bf7993685dd863198
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/black_cloak_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/black_cloak_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/black_cloak_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..767155e215956755848235bf1d9ee03087185404
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/black_cloak_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/boots_edens_guile.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/boots_edens_guile.png
new file mode 100644
index 0000000000000000000000000000000000000000..0f8649f011dafb3e3f8fb8f0c9933abf21d50c23
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/boots_edens_guile.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/boots_of_the_hunter.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/boots_of_the_hunter.png
new file mode 100644
index 0000000000000000000000000000000000000000..35ef98979eba6e49d963dcfe360fc63aefbddc4e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/boots_of_the_hunter.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/breath_of_eyal.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/breath_of_eyal.png
new file mode 100644
index 0000000000000000000000000000000000000000..f523b7f37dfb72d1e2bb2a67b8d4aa9ab2b79fb3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/breath_of_eyal.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/cinderfeet.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/cinderfeet.png
new file mode 100644
index 0000000000000000000000000000000000000000..48fbf2206621d4918cf07bf75b8324491577bbc5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/cinderfeet.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/cloak_threads_of_fate_behind.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/cloak_threads_of_fate_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..f9c1522a8764e76543857ca9f6ab207ab10fee86
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/cloak_threads_of_fate_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/cloak_threads_of_fate_hood.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/cloak_threads_of_fate_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..0644785a1436cf275c5301adfb21620cf54e189e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/cloak_threads_of_fate_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/cloak_threads_of_fate_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/cloak_threads_of_fate_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..57004c288934683bb00f24442c8f6f1e5caa378c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/cloak_threads_of_fate_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/cloak_winds_whisper_behind.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/cloak_winds_whisper_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..c284898c7d93f638c63e14b22e4508acace44ba0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/cloak_winds_whisper_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/cloak_winds_whisper_hood.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/cloak_winds_whisper_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..a300929d5319e2baf03f58f543aa1a0da01dba1a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/cloak_winds_whisper_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/cloak_winds_whisper_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/cloak_winds_whisper_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..581b3cae5a7d2bbdd84f816e0f0cff21ed1e9527
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/cloak_winds_whisper_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/cloth_armour_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/cloth_armour_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..3bf249ad7e52a65603ac13e33c1008efa351039b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/cloth_armour_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/cloth_of_dreams_behind.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/cloth_of_dreams_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..704654a5d2c611c0364c5c91d80968b8a4dca795
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/cloth_of_dreams_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/cloth_of_dreams_hood.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/cloth_of_dreams_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..1c896e7c4b3b26dd18fac6f0496616cca755db2c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/cloth_of_dreams_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/cloth_of_dreams_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/cloth_of_dreams_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..5d96a36ae0599583ead93842995beb325e2b79c5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/cloth_of_dreams_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/corrupted_gaze.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/corrupted_gaze.png
new file mode 100644
index 0000000000000000000000000000000000000000..9e7d20a0143cc96ddaa6f2b55d52c9a7ce9f4387
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/corrupted_gaze.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/crimson_robe.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/crimson_robe.png
new file mode 100644
index 0000000000000000000000000000000000000000..cfd4e57ec044dd492416e40398ead3a1ba938036
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/crimson_robe.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/crown_of_burning_pain.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/crown_of_burning_pain.png
new file mode 100644
index 0000000000000000000000000000000000000000..f1a41c22dbba14db2e989fc15dc19649d4de6f03
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/crown_of_burning_pain.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/crown_of_command.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/crown_of_command.png
new file mode 100644
index 0000000000000000000000000000000000000000..43d00df734e585aceb1beb6e6dda3a27c112e184
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/crown_of_command.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/crown_of_eternal_night.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/crown_of_eternal_night.png
new file mode 100644
index 0000000000000000000000000000000000000000..0c78736a1e00468beb2edbbbdbafb6377de9ae89
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/crown_of_eternal_night.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/crown_of_the_elements.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/crown_of_the_elements.png
new file mode 100644
index 0000000000000000000000000000000000000000..60f2877b8a3a6db34feff0feba42eb1d8411dba0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/crown_of_the_elements.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/crystles_astral_bindings.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/crystles_astral_bindings.png
new file mode 100644
index 0000000000000000000000000000000000000000..df228cfe5fb40b259a404897de8be8fa66c57532
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/crystles_astral_bindings.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/dakhtuns_gauntlets.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/dakhtuns_gauntlets.png
new file mode 100644
index 0000000000000000000000000000000000000000..28de6bbc92da185eb668d13e2348c4ca5824c183
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/dakhtuns_gauntlets.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/deaths_embrace.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/deaths_embrace.png
new file mode 100644
index 0000000000000000000000000000000000000000..84f791afd82e7d566691b814ce994897fe7025e2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/deaths_embrace.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/decayed_visage.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/decayed_visage.png
new file mode 100644
index 0000000000000000000000000000000000000000..8e4be28733180a3bc3bfbc1af3e2219216324666
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/decayed_visage.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/destalas_scales_behind.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/destalas_scales_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..2c81651dbc72d64827ff41563cd75c4f5eef988b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/destalas_scales_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/destalas_scales_whisper_hood.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/destalas_scales_whisper_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..93e478477f40534256807bf84d358f457360e5b5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/destalas_scales_whisper_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/destalas_scales_whisper_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/destalas_scales_whisper_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..a2d70fb7b51bf155d99a04cf5dff8784516cd663
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/destalas_scales_whisper_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/dgs_clothes.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/dgs_clothes.png
index dcb6c1b0744213b32bbd8bb87c05b49233f54105..4ca8b6e231b0da8bd11aed9cafe3aecf50df4002 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/dgs_clothes.png and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/dgs_clothes.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/diadem_alettas_diadem.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/diadem_alettas_diadem.png
new file mode 100644
index 0000000000000000000000000000000000000000..0610549b5f27f921c8d892819cb87e641734f929
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/diadem_alettas_diadem.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/dragon_helm_of_kroltar.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/dragon_helm_of_kroltar.png
new file mode 100644
index 0000000000000000000000000000000000000000..fdad3cbd6d99e125ceab881a0c76d44b200bf931
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/dragon_helm_of_kroltar.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/dragonskull_helmet.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/dragonskull_helmet.png
new file mode 100644
index 0000000000000000000000000000000000000000..aeefb3b7e425c3ead6c19e6ab3ced9f1e83e8499
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/dragonskull_helmet.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/eel_skin_armor.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/eel_skin_armor.png
new file mode 100644
index 0000000000000000000000000000000000000000..f9debc14d7b3f2f04be06631d532f5039f766c22
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/eel_skin_armor.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/ethereal_embrace_behind.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/ethereal_embrace_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..bd1cb20c71b0c62fddcf037a02eec8cb5e1fa1b0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/ethereal_embrace_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/ethereal_embrace_hood.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/ethereal_embrace_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..859456fa0f4fe8678f94cb3f99ac537a088d3f94
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/ethereal_embrace_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/ethereal_embrace_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/ethereal_embrace_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..d36ca4a6c81ea21b31199265eed7117f39433668
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/ethereal_embrace_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/evermoss_robe.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/evermoss_robe.png
new file mode 100644
index 0000000000000000000000000000000000000000..bdc37915b38747569b3506a4e24863daeddcb80f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/evermoss_robe.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/eye_of_the_forest.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/eye_of_the_forest.png
new file mode 100644
index 0000000000000000000000000000000000000000..52c4a22888f38427711dfae3ca1f0910be05e5a1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/eye_of_the_forest.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/fist_of_the_destroyer.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/fist_of_the_destroyer.png
new file mode 100644
index 0000000000000000000000000000000000000000..f38b9be48cc4b97d8d32c27a0c2cf4f7143c6acf
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/fist_of_the_destroyer.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/frost_treads.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/frost_treads.png
new file mode 100644
index 0000000000000000000000000000000000000000..6f6a978f88f64643eb49ce611cc629ea395ab875
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/frost_treads.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/frozen_shards.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/frozen_shards.png
new file mode 100644
index 0000000000000000000000000000000000000000..132dc6be7558346ab9406373cb2185a4a1394ff9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/frozen_shards.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/frozen_shroud_behind.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/frozen_shroud_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..82a5896b4dd8dbbcf2e18443d2a7aaf546c04224
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/frozen_shroud_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/frozen_shroud_hood.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/frozen_shroud_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..8251841ff56194a2789c4ddace523871cd7b3c41
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/frozen_shroud_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/frozen_shroud_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/frozen_shroud_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..ee8d3db669ec9dcfd8f4ca10ed70dcfe728a7460
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/frozen_shroud_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/gauntlets_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/gauntlets_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..2070c428dd48d42230a9af04c080d583ac13966e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/gauntlets_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/gloves_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/gloves_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..01c92c2faa192e78ff57ad4c6a838aafbd72b2aa
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/gloves_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/gloves_flamewrought.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/gloves_flamewrought.png
new file mode 100644
index 0000000000000000000000000000000000000000..2eb6663d67306a407ead9f219f7d062145867588
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/gloves_flamewrought.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/gloves_of_the_firm_hand.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/gloves_of_the_firm_hand.png
new file mode 100644
index 0000000000000000000000000000000000000000..22e9febe35889690eee5559430e67b1d6cd8bf1c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/gloves_of_the_firm_hand.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/grip_of_death.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/grip_of_death.png
index 2078c3cfcc265909bf9967aaa19f68c5c7d9263c..edeb81664905fd19718b2b7d16217207ddba7c9c 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/grip_of_death.png and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/grip_of_death.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/guise_of_the_hated_behind.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/guise_of_the_hated_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..ed7e5188ea5e185d4f9e26cd8bce87b99c47047f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/guise_of_the_hated_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/guise_of_the_hated_hood.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/guise_of_the_hated_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..26a2750933b5ec48fa4abb6a5251931f6f6499da
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/guise_of_the_hated_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/guise_of_the_hated_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/guise_of_the_hated_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..fdb6a95fb3f81d8b9269d7b9503d885de5ed9222
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/guise_of_the_hated_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/hand_of_the_worldshaper.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/hand_of_the_worldshaper.png
new file mode 100644
index 0000000000000000000000000000000000000000..353b295720fbb19776917ad18dd76757d6760520
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/hand_of_the_worldshaper.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/harkor_zun_gauntlets.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/harkor_zun_gauntlets.png
new file mode 100644
index 0000000000000000000000000000000000000000..8bf96efd55eb4519cf06a47a0107390175f95699
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/harkor_zun_gauntlets.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/heavy_armour_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/heavy_armour_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..09878bccdcd7771a118a9ac72fc5e66d1890231e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/heavy_armour_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/helm_of_garkul.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/helm_of_garkul.png
new file mode 100644
index 0000000000000000000000000000000000000000..8cad53c18a374cc60ae6406481b6276bc671dc28
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/helm_of_garkul.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/helm_of_the_dwarven_emperors.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/helm_of_the_dwarven_emperors.png
new file mode 100644
index 0000000000000000000000000000000000000000..958c36cc163c77ff2a83dc11e2d27f1bbc0378b3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/helm_of_the_dwarven_emperors.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/hornet_stingers.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/hornet_stingers.png
new file mode 100644
index 0000000000000000000000000000000000000000..76b820d6e60cefa849d1f7c362c0e8934aca5b49
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/hornet_stingers.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/iron_mail_of_bloodletting.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/iron_mail_of_bloodletting.png
new file mode 100644
index 0000000000000000000000000000000000000000..5b42da7cfeae24f79996124e4a66094d28519fd9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/iron_mail_of_bloodletting.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_1Haxe_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_1Haxe_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..71202c27db7bc8496909679d1de09e6e506bf3e9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_1Haxe_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_1Hmace_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_1Hmace_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..f096800b8d62cf389f4df2e9cfc5558316948bb4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_1Hmace_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_1Hsword_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_1Hsword_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..046b7b520492ef74a143283ca630598f0197678b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_1Hsword_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_2Haxe_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_2Haxe_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..3edf80829f22cd211df904275b4ee62427dfe5e1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_2Haxe_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_2Hmace_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_2Hmace_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..c927ee2238aac67381f771f620d85f364014253c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_2Hmace_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_2Hsword_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_2Hsword_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..d7cc9a7986882686182086636c2cfac58335b6d9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_2Hsword_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_amethyst_of_sanctuary.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_amethyst_of_sanctuary.png
new file mode 100644
index 0000000000000000000000000000000000000000..319660ab91e2ccd418fb9549e9cd9dabd737afda
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_amethyst_of_sanctuary.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_awaken_staff_of_absorbtion.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_awaken_staff_of_absorbtion.png
new file mode 100644
index 0000000000000000000000000000000000000000..4c17a6539fe521675b0d28a58685e920650e35ff
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_awaken_staff_of_absorbtion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_blighted_maul.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_blighted_maul.png
new file mode 100644
index 0000000000000000000000000000000000000000..7ce1692e0021f8be12dfa9666b0408eb706387ed
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_blighted_maul.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_bloomsoul.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_bloomsoul.png
new file mode 100644
index 0000000000000000000000000000000000000000..ee0494438a0f562ca9fb81edb5fe11ee4ce86379
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_bloomsoul.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_borosks_hate.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_borosks_hate.png
new file mode 100644
index 0000000000000000000000000000000000000000..1cb770face196e544cb48f0e518e79de694ad58e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_borosks_hate.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_bow_corpsebow.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_bow_corpsebow.png
new file mode 100644
index 0000000000000000000000000000000000000000..40c09b0ba201734462ccdcf9e07cf9e89b7a5eec
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_bow_corpsebow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_bow_epochs_curve.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_bow_epochs_curve.png
new file mode 100644
index 0000000000000000000000000000000000000000..1991b0b2246ee9140b5ee5809b12cec0c94c6070
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_bow_epochs_curve.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_champions_will.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_champions_will.png
new file mode 100644
index 0000000000000000000000000000000000000000..d80b0c7604aa6f4cbfca63c6e9efce6175140bea
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_champions_will.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_colaryem.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_colaryem.png
new file mode 100644
index 0000000000000000000000000000000000000000..d724941625b77d3ed66a595e7ada806eff05d1ad
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_colaryem.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_core_of_the_forge.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_core_of_the_forge.png
new file mode 100644
index 0000000000000000000000000000000000000000..b2c02535df800e3c7f5d76af4c4f57ac3ae5e484
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_core_of_the_forge.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_corpus_2.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_corpus_2.png
new file mode 100644
index 0000000000000000000000000000000000000000..122b448b6cd85338dcf17c52b1799b47c64f10fc
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_corpus_2.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_crystal_shard.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_crystal_shard.png
new file mode 100644
index 0000000000000000000000000000000000000000..0334d308835553999ddd6e851b19b097d41698af
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_crystal_shard.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_dagger_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_dagger_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..53e4cf6464c4b7c7b50987aea22a9052ccb31043
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_dagger_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_dream_malleus.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_dream_malleus.png
new file mode 100644
index 0000000000000000000000000000000000000000..6896f9cedfc35bb816beae9361bdfa9faa562353
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_dream_malleus.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_eclipse.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_eclipse.png
new file mode 100644
index 0000000000000000000000000000000000000000..1cc267b93d5727b522ce1d4883b3ffa0658a8281
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_eclipse.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_eyals_will.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_eyals_will.png
new file mode 100644
index 0000000000000000000000000000000000000000..be656b6331e3f44372ff8666d4394dd806782c9e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_eyals_will.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_eye_of_the_wyrm.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_eye_of_the_wyrm.png
new file mode 100644
index 0000000000000000000000000000000000000000..08978170ce92bdc4314b9ae3d709d301fa08c120
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_eye_of_the_wyrm.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_focus_whip.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_focus_whip.png
new file mode 100644
index 0000000000000000000000000000000000000000..a928b5779d400c617e3c72419d0a0ec70c7a9729
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_focus_whip.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_genocide.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_genocide.png
new file mode 100644
index 0000000000000000000000000000000000000000..0e2ea74fae32126378ff1a1a0ce773681c42debb
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_genocide.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_gravitational_staff.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_gravitational_staff.png
new file mode 100644
index 0000000000000000000000000000000000000000..97163c6b6d10b5ffe05aff17ff894c7866e52ec9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_gravitational_staff.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_great_caller.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_great_caller.png
new file mode 100644
index 0000000000000000000000000000000000000000..db7abea01b1f8c0053e83f239db39319a64240c5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_great_caller.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_guidance.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_guidance.png
new file mode 100644
index 0000000000000000000000000000000000000000..20972b0f85ee5a2aca25c48521775fe7acbe82eb
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_guidance.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_hareskin_sling.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_hareskin_sling.png
new file mode 100644
index 0000000000000000000000000000000000000000..f2499cd5dd6f6ab8565eb5f40246bcf378a25034
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_hareskin_sling.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_hydras_bite.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_hydras_bite.png
new file mode 100644
index 0000000000000000000000000000000000000000..0e005ccacfa91180e83cbbf72e144aa4792a8f34
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_hydras_bite.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_latafayn.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_latafayn.png
new file mode 100644
index 0000000000000000000000000000000000000000..900efd8d55bfa639a18ce3efba2f9438e646abae
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_latafayn.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_merkuls_second_eye.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_merkuls_second_eye.png
new file mode 100644
index 0000000000000000000000000000000000000000..eda2c6bf11865124cd97965d55adeff87a3a4f06
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_merkuls_second_eye.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_nexus_of_the_way.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_nexus_of_the_way.png
new file mode 100644
index 0000000000000000000000000000000000000000..119d9d7fcb642790a859bb0df9e19238eec491e9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_nexus_of_the_way.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_nithans_force.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_nithans_force.png
new file mode 100644
index 0000000000000000000000000000000000000000..2e1b0a4c403f979501014c9bc19f452201f28367
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_nithans_force.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_obliterator.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_obliterator.png
new file mode 100644
index 0000000000000000000000000000000000000000..f3e62d1daf863b15185bd8c6ad8c08230262fa16
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_obliterator.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_oozing_heart.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_oozing_heart.png
new file mode 100644
index 0000000000000000000000000000000000000000..a8a97eb68405f76c9eef5481f64f0f75544f8ba1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_oozing_heart.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_psionic_fury.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_psionic_fury.png
new file mode 100644
index 0000000000000000000000000000000000000000..34f01ec50b5879b8439a33b6a80cd719c61b23a9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_psionic_fury.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_rod_of_sarrilon.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_rod_of_sarrilon.png
new file mode 100644
index 0000000000000000000000000000000000000000..945dfdd8fcefaa0e1d72e0b715fc50798af835f1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_rod_of_sarrilon.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_sceptre_of_the_archlich.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_sceptre_of_the_archlich.png
new file mode 100644
index 0000000000000000000000000000000000000000..07755763472133df5caed0f2dd2017bbd5a8f2d1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_sceptre_of_the_archlich.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_serpents_glare.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_serpents_glare.png
new file mode 100644
index 0000000000000000000000000000000000000000..d9b4c061feb00d596fe8681fd430fa435e2558ed
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_serpents_glare.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_shield_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_shield_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..10dd5f5a5bd929e25600bd56e61e4b13f80ed04f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_shield_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_skeletal_claw.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_skeletal_claw.png
new file mode 100644
index 0000000000000000000000000000000000000000..bef923a08e9ff80aac0a08a7443dc97fa5431d38
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_skeletal_claw.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_sling_eldoral_last_resort.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_sling_eldoral_last_resort.png
new file mode 100644
index 0000000000000000000000000000000000000000..3e7d6c8dbaf226628342ba3d99609d410ff94b03
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_sling_eldoral_last_resort.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_spectral_blade.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_spectral_blade.png
new file mode 100644
index 0000000000000000000000000000000000000000..e472aacac097aec9093e107cca7ea4291e5231b0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_spectral_blade.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_spellcrusher.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_spellcrusher.png
new file mode 100644
index 0000000000000000000000000000000000000000..3ebbaf08fa3cff2400ded146bc81c7925a17d316
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_spellcrusher.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_staff_bolbums_big_knocker.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_staff_bolbums_big_knocker.png
new file mode 100644
index 0000000000000000000000000000000000000000..04002da1bff17a9168e8b6642367cc0091332eb6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_staff_bolbums_big_knocker.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_staff_broken_bottom_telos.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_staff_broken_bottom_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..6ed6541e4be7852ac3abada3e944c08c0bc95efb
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_staff_broken_bottom_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_staff_broken_top_telos.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_staff_broken_top_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..5fa105235bb8a68aba8f3859d8d2d01040db2efa
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_staff_broken_top_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_staff_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_staff_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..3501ff2b11a09c9c44191c26c8d60e6bffba4f8e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_staff_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_staff_kors_fall.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_staff_kors_fall.png
new file mode 100644
index 0000000000000000000000000000000000000000..9b50774c01fdcf203785793da766553ccd6f855b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_staff_kors_fall.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_staff_lost_staff_archmage_tarelion.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_staff_lost_staff_archmage_tarelion.png
new file mode 100644
index 0000000000000000000000000000000000000000..a43d7160872c19656b5a77e5d0323dada1aff56f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_staff_lost_staff_archmage_tarelion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_staff_of_absorbtion.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_staff_of_absorbtion.png
new file mode 100644
index 0000000000000000000000000000000000000000..8e348414251bc6576dd57ad7e4d234fe728c3549
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_staff_of_absorbtion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_staff_of_arcane_supremacy.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_staff_of_arcane_supremacy.png
new file mode 100644
index 0000000000000000000000000000000000000000..89ed4ac0c19cd503ca31e411bc80b78ae782cfb5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_staff_of_arcane_supremacy.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_staff_of_destruction.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_staff_of_destruction.png
new file mode 100644
index 0000000000000000000000000000000000000000..6ede50ea816f4c3353bcab2281b1ab6b0a379817
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_staff_of_destruction.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_staff_penitence.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_staff_penitence.png
new file mode 100644
index 0000000000000000000000000000000000000000..17bb95ccaa341767e7f3a8cf7ef1de425286b3f9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_staff_penitence.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_staff_voice_of_telos.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_staff_voice_of_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..ab56e113e1b58ba31b6ef2db6b569aad5e053672
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_staff_voice_of_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_storm_fury.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_storm_fury.png
new file mode 100644
index 0000000000000000000000000000000000000000..9c817915463a651fbb82d15e70c45d0a7e5f9975
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_storm_fury.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_stormlash.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_stormlash.png
new file mode 100644
index 0000000000000000000000000000000000000000..003cbb8f757419308af8b8a3c94b4b094ba65712
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_stormlash.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_surefire.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_surefire.png
new file mode 100644
index 0000000000000000000000000000000000000000..b6f15efda4da1a227e04a11e610cc8ebfd351130
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_surefire.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_telos_spire_of_power.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_telos_spire_of_power.png
new file mode 100644
index 0000000000000000000000000000000000000000..e2aeb2af9699ab3d44799e6bc05aa66e649fd935
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_telos_spire_of_power.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_thaloren_tree_longbow.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_thaloren_tree_longbow.png
new file mode 100644
index 0000000000000000000000000000000000000000..9e236dae1ee0ff975e68774be1c44af8df7951ac
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_thaloren_tree_longbow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_trident_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_trident_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..35a427446ddd846355c240011da9e2f1caa43b0f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_trident_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_umbral_razor.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_umbral_razor.png
new file mode 100644
index 0000000000000000000000000000000000000000..7e14cef6214eb7d2193cb88c799b9c276cb70528
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_umbral_razor.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_unstoppable_mauler.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_unstoppable_mauler.png
new file mode 100644
index 0000000000000000000000000000000000000000..876e0ee0e714018afccf715d9a8ef419d570e566
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_unstoppable_mauler.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_voratun_hammer_of_the_deep_bellow.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_voratun_hammer_of_the_deep_bellow.png
new file mode 100644
index 0000000000000000000000000000000000000000..087be1074d2a8859604a970d3955b8469575b3ff
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_voratun_hammer_of_the_deep_bellow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_warmaster_gnargs_murderblade.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_warmaster_gnargs_murderblade.png
new file mode 100644
index 0000000000000000000000000000000000000000..79d45d3611e96b640e553c883069a0c8bfc0a77d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_warmaster_gnargs_murderblade.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_whip_of_urh_rok.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_whip_of_urh_rok.png
new file mode 100644
index 0000000000000000000000000000000000000000..b6add49e7b265c2eac5e256cca2cda763f1ac25b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_whip_of_urh_rok.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_whip_scorpions_tail.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_whip_scorpions_tail.png
new file mode 100644
index 0000000000000000000000000000000000000000..66929d1032d2143a9dabffc44abdbab34943ad11
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_whip_scorpions_tail.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_writhing_essence_of_nightmares.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_writhing_essence_of_nightmares.png
new file mode 100644
index 0000000000000000000000000000000000000000..06e9537222c723e713fc745f3033fc6af5b7e96e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/left_writhing_essence_of_nightmares.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/light_armour_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/light_armour_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..e4b019018e0ee41f7cb48b92b93e290896cfcfb7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/light_armour_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/malslek_the_accursed_hat.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/malslek_the_accursed_hat.png
new file mode 100644
index 0000000000000000000000000000000000000000..22bbed8a857f71d17ccfe4deaf7ed5dc94df042d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/malslek_the_accursed_hat.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/masochism.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/masochism.png
new file mode 100644
index 0000000000000000000000000000000000000000..8d049986185fbe8d88b8feb5848d6c5ce0e57f91
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/masochism.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/massive_armour_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/massive_armour_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..5b1b154160a376c84f0727b4539f8acfab6d8d61
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/massive_armour_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/molten_skin.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/molten_skin.png
index 3ae2012b835d925c1432efab820ea3bfb1347cfb..3ce1a27773fd6a872f8e12e12fe78c90f4f827c5 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/molten_skin.png and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/molten_skin.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/omniscience.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/omniscience.png
new file mode 100644
index 0000000000000000000000000000000000000000..13a2a6c10962984b9bbbba78a7bd7cc6413ac107
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/omniscience.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/plate_armor_of_the_king.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/plate_armor_of_the_king.png
new file mode 100644
index 0000000000000000000000000000000000000000..73c654651d356d11548ec4de8a999a183c1c4cb1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/plate_armor_of_the_king.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/plate_of_the_blackened_mind.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/plate_of_the_blackened_mind.png
new file mode 100644
index 0000000000000000000000000000000000000000..b76b3b284de5fe867754364fd52feda85f19b638
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/plate_of_the_blackened_mind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/pouch_of_the_subconscious.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/pouch_of_the_subconscious.png
new file mode 100644
index 0000000000000000000000000000000000000000..41a7499fa6f28c444c132ed4847a74678f1339af
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/pouch_of_the_subconscious.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/quiver_of_domination.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/quiver_of_domination.png
new file mode 100644
index 0000000000000000000000000000000000000000..0250cc01c4bb98dcc665f624175e054741745e8e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/quiver_of_domination.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/quiver_of_the_sun.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/quiver_of_the_sun.png
new file mode 100644
index 0000000000000000000000000000000000000000..a88c24da28ff73d34f47b8019a655b6eeef93465
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/quiver_of_the_sun.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/radiance_behind.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/radiance_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..d97223fbe2fa2c8f601413097b4a9a3fcf3f180d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/radiance_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/radiance_hood.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/radiance_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..2ea72451866f1303e674a9a1629a2ae3630a96ff
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/radiance_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/radiance_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/radiance_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..d4f0fa40133e3868b3635d26f3013abd26542e68
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/radiance_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_1Haxe_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_1Haxe_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..3e0217d628067b82125bca3b25d28d8c5fc0ed03
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_1Haxe_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_1Hmace_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_1Hmace_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..30fb03c67bf8ecd413aa980c3484664c7f87923d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_1Hmace_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_1Hsword_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_1Hsword_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..aa55cafe2a1b7fb6df1f743c98c0b9abb923480c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_1Hsword_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_2Haxe_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_2Haxe_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..683bedd1711c03bea8cc2a6156e30f089707941e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_2Haxe_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_2Hmace_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_2Hmace_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..e988ef51e12dfba2a2ade7ca243a6d1c81227859
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_2Hmace_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_2Hsword_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_2Hsword_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..048bb79b8bd13f0ac6d51099a077e4de36aa4914
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_2Hsword_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_amethyst_of_sanctuary.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_amethyst_of_sanctuary.png
new file mode 100644
index 0000000000000000000000000000000000000000..f4f8db0080ccab2928895c932f120e771808f3f0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_amethyst_of_sanctuary.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_awaken_staff_of_absorbtion.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_awaken_staff_of_absorbtion.png
new file mode 100644
index 0000000000000000000000000000000000000000..9d20996c94a7ba63476444b7cd24f3c67b89851a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_awaken_staff_of_absorbtion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_blighted_maul.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_blighted_maul.png
new file mode 100644
index 0000000000000000000000000000000000000000..b9fd649b59506f9056523522ae64a3ade3cfbdc4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_blighted_maul.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_bloomsoul.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_bloomsoul.png
new file mode 100644
index 0000000000000000000000000000000000000000..b10579bf870eeb003f8e966738ebd70b99ec93d6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_bloomsoul.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_borosks_hate.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_borosks_hate.png
new file mode 100644
index 0000000000000000000000000000000000000000..ac20660a8787a2a72f4f5868bfc6fbfaf491507a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_borosks_hate.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_bow_corpsebow.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_bow_corpsebow.png
new file mode 100644
index 0000000000000000000000000000000000000000..097d62a800c80299db118b8f91ca5b0787da7ac0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_bow_corpsebow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_bow_epochs_curve.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_bow_epochs_curve.png
new file mode 100644
index 0000000000000000000000000000000000000000..4a6b60a7949dc3ea9bd453e02f0b0ca9335e8c71
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_bow_epochs_curve.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_champions_will.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_champions_will.png
new file mode 100644
index 0000000000000000000000000000000000000000..7eac0fb1603c6520f9a989603ab782dc5e339c68
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_champions_will.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_colaryem.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_colaryem.png
new file mode 100644
index 0000000000000000000000000000000000000000..14c9d363dd2ec179d809309282e78dc6dc785912
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_colaryem.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_core_of_the_forge.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_core_of_the_forge.png
new file mode 100644
index 0000000000000000000000000000000000000000..c1e37ed35f922109df75c5517a5bf41ed1555313
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_core_of_the_forge.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_corpus_2.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_corpus_2.png
new file mode 100644
index 0000000000000000000000000000000000000000..bcc1170fe8f33d7196a0fecc811506a045792fd8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_corpus_2.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_crystal_shard.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_crystal_shard.png
new file mode 100644
index 0000000000000000000000000000000000000000..f2831e73fa5a16ba7e922b7f82d65d5a5934e2a2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_crystal_shard.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_dagger_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_dagger_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..7c53c131c1969f2d73a51986948ab1202fc417c9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_dagger_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_dream_malleus.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_dream_malleus.png
new file mode 100644
index 0000000000000000000000000000000000000000..17e1aa41a720c9e23cb84d1f2350600c87f5ded6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_dream_malleus.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_eclipse.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_eclipse.png
new file mode 100644
index 0000000000000000000000000000000000000000..a3978890eab3643d93b901e7538e9c1f0b62db21
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_eclipse.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_eyals_will.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_eyals_will.png
new file mode 100644
index 0000000000000000000000000000000000000000..4d7a7c800dc026a8161aa2b6df47a761894ffc34
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_eyals_will.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_eye_of_the_wyrm.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_eye_of_the_wyrm.png
new file mode 100644
index 0000000000000000000000000000000000000000..b7894641e259ace1db40ca64d65ec85bdd430eec
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_eye_of_the_wyrm.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_focus_whip.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_focus_whip.png
new file mode 100644
index 0000000000000000000000000000000000000000..6e613a04c91d9db65c66915cd369efbb04e53920
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_focus_whip.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_genocide.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_genocide.png
new file mode 100644
index 0000000000000000000000000000000000000000..9b9f396e58461c77a574dc53f59b3dbf59077174
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_genocide.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_gravitational_staff.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_gravitational_staff.png
new file mode 100644
index 0000000000000000000000000000000000000000..7958ef75fcaac9c089d75c787a6b40a92ee4c5b0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_gravitational_staff.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_great_caller.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_great_caller.png
new file mode 100644
index 0000000000000000000000000000000000000000..0c9ed306e035b45e1a39a7281ea2394a8e4ba22f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_great_caller.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_guidance.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_guidance.png
new file mode 100644
index 0000000000000000000000000000000000000000..ae66b6bd855e9916aff14f8aab100a51611aa332
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_guidance.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_hareskin_sling.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_hareskin_sling.png
new file mode 100644
index 0000000000000000000000000000000000000000..912c54da51fdcd74f0097722e597d4f122ae4c27
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_hareskin_sling.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_hydras_bite.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_hydras_bite.png
new file mode 100644
index 0000000000000000000000000000000000000000..05aaf66a42c11bd365ff9e9e837abb750dc039d9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_hydras_bite.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_latafayn.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_latafayn.png
new file mode 100644
index 0000000000000000000000000000000000000000..b26187d2e42c190583bb9394426a0d823a20aea5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_latafayn.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_merkuls_second_eye.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_merkuls_second_eye.png
new file mode 100644
index 0000000000000000000000000000000000000000..d7b6be2f8dad17af5fa4182c491a1c50734b3ade
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_merkuls_second_eye.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_nexus_of_the_way.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_nexus_of_the_way.png
new file mode 100644
index 0000000000000000000000000000000000000000..06fe99a998b57569ab9b09430368917019e34fa1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_nexus_of_the_way.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_nithans_force.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_nithans_force.png
new file mode 100644
index 0000000000000000000000000000000000000000..20810032919ec169acdd28d14da9c4c1b140c3f8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_nithans_force.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_obliterator.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_obliterator.png
new file mode 100644
index 0000000000000000000000000000000000000000..a0e18f97c64bd23cdcbd66bd0a1e341d48658bd6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_obliterator.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_oozing_heart.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_oozing_heart.png
new file mode 100644
index 0000000000000000000000000000000000000000..ef2d4805729f49efa377fe946f49f41812543f81
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_oozing_heart.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_psionic_fury.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_psionic_fury.png
new file mode 100644
index 0000000000000000000000000000000000000000..e8c8a7bee18d7fbba418afb67bfb2d3867079098
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_psionic_fury.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_rod_of_sarrilon.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_rod_of_sarrilon.png
new file mode 100644
index 0000000000000000000000000000000000000000..0ac614a08e10a611f7e8a170b133ed1c3b5132c3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_rod_of_sarrilon.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_sceptre_of_the_archlich.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_sceptre_of_the_archlich.png
new file mode 100644
index 0000000000000000000000000000000000000000..c5abc1a9d4a8f08d9813f015203c789d44c83af5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_sceptre_of_the_archlich.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_serpents_glare.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_serpents_glare.png
new file mode 100644
index 0000000000000000000000000000000000000000..fb9998518e871ac649fc02373bde6a9651e04775
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_serpents_glare.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_shield_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_shield_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..507803031bfc0a1365a4441e0ec862e35e19bd71
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_shield_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_skeletal_claw.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_skeletal_claw.png
new file mode 100644
index 0000000000000000000000000000000000000000..5672fbb57b8554ef67818e8bb6823406a814c880
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_skeletal_claw.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_sling_eldoral_last_resort.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_sling_eldoral_last_resort.png
new file mode 100644
index 0000000000000000000000000000000000000000..9273b59a10a96dbe930991bd16705f37a3104e81
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_sling_eldoral_last_resort.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_spectral_blade.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_spectral_blade.png
new file mode 100644
index 0000000000000000000000000000000000000000..5bc69cf3b8e038d82a61e9ca5c8fc0483176dfd3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_spectral_blade.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_spellcrusher.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_spellcrusher.png
new file mode 100644
index 0000000000000000000000000000000000000000..e6b9f5356a2746d4fee21b29cd2c8d8fef875c8f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_spellcrusher.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_staff_bolbums_big_knocker.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_staff_bolbums_big_knocker.png
new file mode 100644
index 0000000000000000000000000000000000000000..5a9224856ffeb5bc38d23adde3b18b2f91b1307d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_staff_bolbums_big_knocker.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_staff_broken_bottom_telos.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_staff_broken_bottom_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..140846a5e434e113ecd106956ffc1b52a8169306
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_staff_broken_bottom_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_staff_broken_top_telos.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_staff_broken_top_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..5cba646a0f710b5adcc03d30a30a5efd7fc32246
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_staff_broken_top_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_staff_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_staff_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..d454a7003255e104db2cdf830194a8361ce231de
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_staff_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_staff_kors_fall.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_staff_kors_fall.png
new file mode 100644
index 0000000000000000000000000000000000000000..0405e1022b7718d8f2d07c23dff32cb142cad021
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_staff_kors_fall.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_staff_lost_staff_archmage_tarelion.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_staff_lost_staff_archmage_tarelion.png
new file mode 100644
index 0000000000000000000000000000000000000000..1d2f93b053ea3680b4f467783c8175c5c761a59b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_staff_lost_staff_archmage_tarelion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_staff_of_absorbtion.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_staff_of_absorbtion.png
new file mode 100644
index 0000000000000000000000000000000000000000..40e553c4a1b22bcfa03468d72fab93cc77e6420a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_staff_of_absorbtion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_staff_of_arcane_supremacy.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_staff_of_arcane_supremacy.png
new file mode 100644
index 0000000000000000000000000000000000000000..b8d5d044c0e63c61244a1d8471ad49e67938e200
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_staff_of_arcane_supremacy.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_staff_of_destruction.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_staff_of_destruction.png
new file mode 100644
index 0000000000000000000000000000000000000000..94f277b05e723d445d79b998655153131de28b46
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_staff_of_destruction.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_staff_penitence.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_staff_penitence.png
new file mode 100644
index 0000000000000000000000000000000000000000..3f44f3c0231f7d60549c423441ece6e4093831c1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_staff_penitence.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_staff_voice_of_telos.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_staff_voice_of_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..fbfc91071494f2d82ca562c317257971a3beb3cb
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_staff_voice_of_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_storm_fury.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_storm_fury.png
new file mode 100644
index 0000000000000000000000000000000000000000..81a34a187c16415930c5430f17d2c908d48aef06
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_storm_fury.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_stormlash.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_stormlash.png
new file mode 100644
index 0000000000000000000000000000000000000000..d08c9899ae6fdbc8b8f2f16c1596e636ecd9450f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_stormlash.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_surefire.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_surefire.png
new file mode 100644
index 0000000000000000000000000000000000000000..1ee973165d23807845450d8887065700b8940016
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_surefire.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_telos_spire_of_power.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_telos_spire_of_power.png
new file mode 100644
index 0000000000000000000000000000000000000000..357aae583da013704fe72356305f07fcfcdd351b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_telos_spire_of_power.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_thaloren_tree_longbow.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_thaloren_tree_longbow.png
new file mode 100644
index 0000000000000000000000000000000000000000..a52fe8cfff09eacb0d7b81dcd7b6cbea98320f07
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_thaloren_tree_longbow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_trident_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_trident_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..e6868b319ca4c1523bba826bc67b876799ac3a8a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_trident_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_umbral_razor.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_umbral_razor.png
new file mode 100644
index 0000000000000000000000000000000000000000..60df60e184c4c476a74236d9d0d7d6b111981f98
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_umbral_razor.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_unstoppable_mauler.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_unstoppable_mauler.png
new file mode 100644
index 0000000000000000000000000000000000000000..e4678ae70f8d90bb507cab9c2c7207bfb0b2da07
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_unstoppable_mauler.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_voratun_hammer_of_the_deep_bellow.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_voratun_hammer_of_the_deep_bellow.png
new file mode 100644
index 0000000000000000000000000000000000000000..dbc560290fa98c132655f55da4bf311521326cc9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_voratun_hammer_of_the_deep_bellow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_warmaster_gnargs_murderblade.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_warmaster_gnargs_murderblade.png
new file mode 100644
index 0000000000000000000000000000000000000000..d49f76c58f5366e1d67a8a22115d9971cca5fb8b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_warmaster_gnargs_murderblade.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_whip_of_urh_rok.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_whip_of_urh_rok.png
new file mode 100644
index 0000000000000000000000000000000000000000..597004a4072c27165748548614b38dae21ba8657
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_whip_of_urh_rok.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_whip_scorpions_tail.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_whip_scorpions_tail.png
new file mode 100644
index 0000000000000000000000000000000000000000..a6b0668e4a6b76099123cd1e429232dadcde3c71
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_whip_scorpions_tail.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_writhing_essence_of_nightmares.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_writhing_essence_of_nightmares.png
new file mode 100644
index 0000000000000000000000000000000000000000..ba8781e3c8f3bf9408b3f246c971efcb3f058cb4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/right_writhing_essence_of_nightmares.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/robe_black_robe.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/robe_black_robe.png
new file mode 100644
index 0000000000000000000000000000000000000000..700dcdaadf8bef5bfe6a167e42106c2e7e2b3791
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/robe_black_robe.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/robe_firewalker.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/robe_firewalker.png
new file mode 100644
index 0000000000000000000000000000000000000000..56ecd7c5683e92596dbca91283f54075ee918519
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/robe_firewalker.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/robe_of_force.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/robe_of_force.png
new file mode 100644
index 0000000000000000000000000000000000000000..3651e30359e48cf1030ba97f09beea8a2ea14e79
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/robe_of_force.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/robe_spider_silk_robe_spydre.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/robe_spider_silk_robe_spydre.png
new file mode 100644
index 0000000000000000000000000000000000000000..060d39097baa9509b06aa7c7288ad1b7ce037824
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/robe_spider_silk_robe_spydre.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/robe_temporal_augmentation_robe.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/robe_temporal_augmentation_robe.png
new file mode 100644
index 0000000000000000000000000000000000000000..9213d0286a63a9512bec5ab82e55c87eafb568d3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/robe_temporal_augmentation_robe.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/robe_vestments_of_the_conclave.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/robe_vestments_of_the_conclave.png
new file mode 100644
index 0000000000000000000000000000000000000000..e7c9aee5a10d0de3f5c47bcf3cf4a4128d8439f9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/robe_vestments_of_the_conclave.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/robes_of_deflection.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/robes_of_deflection.png
new file mode 100644
index 0000000000000000000000000000000000000000..297f72466c0b2761f988bc927accd1f7e6c0f018
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/robes_of_deflection.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/scale_mail_of_kroltar.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/scale_mail_of_kroltar.png
new file mode 100644
index 0000000000000000000000000000000000000000..fca7cae873288ddb4c673ccfd2858bc25ed0fea4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/scale_mail_of_kroltar.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/scorched_boots.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/scorched_boots.png
new file mode 100644
index 0000000000000000000000000000000000000000..52b8b00334ec4a75f23d65a859e1ee4871258ac5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/scorched_boots.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/scorpion_gauntlets.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/scorpion_gauntlets.png
new file mode 100644
index 0000000000000000000000000000000000000000..cf8ec7c88ecad2f2aafae43a85ba34cb4ede9bb4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/scorpion_gauntlets.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/serpentine_cloak_behind.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/serpentine_cloak_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..11f0457c956883a3abdd7e0fa21d0f4b986bd4a6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/serpentine_cloak_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/serpentine_cloak_hood.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/serpentine_cloak_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..78f9d8ac36dd6397ffebc78931256be7fc517eb6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/serpentine_cloak_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/serpentine_cloak_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/serpentine_cloak_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..c8868f7686b3b767bba0f926b4b37aca543c8b37
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/serpentine_cloak_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/shifting_boots.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/shifting_boots.png
new file mode 100644
index 0000000000000000000000000000000000000000..6fc646849ac3738d6dc6e4a4901ee9cc10909b83
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/shifting_boots.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/silk_current.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/silk_current.png
new file mode 100644
index 0000000000000000000000000000000000000000..64d8a89b231c64cf120a77e664203c0055f82946
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/silk_current.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/skin_of_many.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/skin_of_many.png
index c4afcb07cfc16a66f0eeec9b8199e7ada65844fe..a7eb39435ad93e9aae015e5480ea3bef3034880a 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/skin_of_many.png and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/skin_of_many.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/sludgegrip.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/sludgegrip.png
new file mode 100644
index 0000000000000000000000000000000000000000..5e5225e961ac8d0de52691cab8b3c52c78ccb796
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/sludgegrip.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/snow_giant_arm_wraps.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/snow_giant_arm_wraps.png
new file mode 100644
index 0000000000000000000000000000000000000000..5e394eeced65d08badf3974c576a3119d96b01fb
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/snow_giant_arm_wraps.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/spellhunt_remnants.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/spellhunt_remnants.png
new file mode 100644
index 0000000000000000000000000000000000000000..2bdd281a5fbcb8214d6eeb8efbb2d3f2efc52f4d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/spellhunt_remnants.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/star_shot.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/star_shot.png
new file mode 100644
index 0000000000000000000000000000000000000000..932bdabceea0d321c1f35810df1d63334f0bca22
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/star_shot.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/storm_bringers_gauntlets.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/storm_bringers_gauntlets.png
new file mode 100644
index 0000000000000000000000000000000000000000..643b1749764ec3915595e2fbd6d9e019c3a8c6a7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/storm_bringers_gauntlets.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/terrasca.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/terrasca.png
new file mode 100644
index 0000000000000000000000000000000000000000..80f4f86f659a7fece747731d360ced59524cbf2c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/terrasca.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/the_calm.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/the_calm.png
new file mode 100644
index 0000000000000000000000000000000000000000..b0ba27aa693547e52abff390ccdae066ebfa10f4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/the_calm.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/the_inner_eye.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/the_inner_eye.png
new file mode 100644
index 0000000000000000000000000000000000000000..7c8d85b21b3baa4923f18cfbe708580d3bf75819
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/the_inner_eye.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/the_titans_quiver.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/the_titans_quiver.png
new file mode 100644
index 0000000000000000000000000000000000000000..930a2cd65e9f3b7ddb89c354c4040fe3558d6d35
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/the_titans_quiver.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/the_untouchable.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/the_untouchable.png
new file mode 100644
index 0000000000000000000000000000000000000000..b7426ae8527b9741d0b765c07c003bd31c2fbcdf
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/the_untouchable.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/the_warped_boots.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/the_warped_boots.png
new file mode 100644
index 0000000000000000000000000000000000000000..c2d6e63d118fee14f32c3fe51542d7c97f52103b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/the_warped_boots.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/unbreakable_greaves.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/unbreakable_greaves.png
new file mode 100644
index 0000000000000000000000000000000000000000..b110700da80f7896f26d6e98764ba1a80d30ac5e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/unbreakable_greaves.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/ureslaks_molted_scales_behind.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/ureslaks_molted_scales_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..dcb72ffa09f470832b3af6d42855433f925c23b5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/ureslaks_molted_scales_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/ureslaks_molted_scales_hood.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/ureslaks_molted_scales_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..05e6944add257f77dde673a1b0f90d62fbb9fb89
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/ureslaks_molted_scales_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/ureslaks_molted_scales_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/ureslaks_molted_scales_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..453c05faed5d0ef7ba09bdc34f07fed8acf42ae9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/ureslaks_molted_scales_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/void_quiver.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/void_quiver.png
new file mode 100644
index 0000000000000000000000000000000000000000..0e84c247f873d196800ed9e24afd26303426292f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/void_quiver.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/wanderers_rest.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/wanderers_rest.png
new file mode 100644
index 0000000000000000000000000000000000000000..c8104e7a4d985dbece386821db34c9c2755a4f42
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/wanderers_rest.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/wind_worn_shot.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/wind_worn_shot.png
new file mode 100644
index 0000000000000000000000000000000000000000..4b3a485ad734f9b183c5858c5f7141c434ca4ffd
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/wind_worn_shot.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/wizard_hat_of_arcane_understanding.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/wizard_hat_of_arcane_understanding.png
new file mode 100644
index 0000000000000000000000000000000000000000..b5d7ea692f63e5bc92d2e38d2b48c5d0dda07e98
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/wizard_hat_of_arcane_understanding.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/wooden_cuirass.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/wooden_cuirass.png
index 4d9ca4104d8d121657520960afc532a5d532d2b5..ab19dae873c47a31f8008db1be404062d4b537f5 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/wooden_cuirass.png and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/wooden_cuirass.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/wrap_of_stone_behind.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/wrap_of_stone_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..104b8d6f95c79dfef9c6e7fb80cbbaf5c78224f1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/wrap_of_stone_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/wrap_of_stone_hood.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/wrap_of_stone_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..ee1eaa2df2a8a64b2113bfd799d2b1ab6ea0069c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/wrap_of_stone_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/wrap_of_stone_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/wrap_of_stone_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..46e61e1b92e92e705759da0a49360a074a1f1669
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/wrap_of_stone_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/wyrmbreath.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/wyrmbreath.png
new file mode 100644
index 0000000000000000000000000000000000000000..958c233a95ec220bef8ed942a06b56c7fc75806d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/wyrmbreath.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/yaldan_baoth.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/yaldan_baoth.png
new file mode 100644
index 0000000000000000000000000000000000000000..4c0262983bd766cb09042ff8d0f2a16a3699d2b2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/yaldan_baoth.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/yeek_fur_robe.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/yeek_fur_robe.png
new file mode 100644
index 0000000000000000000000000000000000000000..63de2f619e7f85b9fe4058c78592d0c1c2ccc2b1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/special/yeek_fur_robe.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/upper_body_25.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/upper_body_25.png
index 397de282636c50edd8d07668c4dfbd2b7bd9cf9b..013ae198356135baeebb790477380a01e9ae09aa 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/elf_female/upper_body_25.png and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/upper_body_25.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/upper_body_29.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/upper_body_29.png
new file mode 100644
index 0000000000000000000000000000000000000000..1b52e3a8e1683f1770ac4a912c2646f079f89a0e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/upper_body_29.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/upper_body_30.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/upper_body_30.png
new file mode 100644
index 0000000000000000000000000000000000000000..9261182d4bb197308dd0eac417da859e6bc81193
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/upper_body_30.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/upper_body_31.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/upper_body_31.png
new file mode 100644
index 0000000000000000000000000000000000000000..4eb68927d2197cb026ea2a41f21f8792e8db0115
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/upper_body_31.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/upper_body_32.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/upper_body_32.png
new file mode 100644
index 0000000000000000000000000000000000000000..b91e2d15b0ecb43ea60a5b7322878ba7463fdcf8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/upper_body_32.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/upper_body_33.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/upper_body_33.png
new file mode 100644
index 0000000000000000000000000000000000000000..eb56a13d53f1c5ca5d13d62a4477be8d9a7b9325
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/upper_body_33.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/upper_body_34.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/upper_body_34.png
new file mode 100644
index 0000000000000000000000000000000000000000..1e83fbc7d778b732188cb12a4e8735bfd8794d9f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/upper_body_34.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/upper_body_35.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/upper_body_35.png
new file mode 100644
index 0000000000000000000000000000000000000000..6e8f2ae8bfbedf8fcdc7e2d80f107ccf728f3613
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/upper_body_35.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/upper_body_36.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/upper_body_36.png
new file mode 100644
index 0000000000000000000000000000000000000000..54f9db8775d907383e3d60e442c887d0898408da
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/upper_body_36.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/upper_body_37.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/upper_body_37.png
new file mode 100644
index 0000000000000000000000000000000000000000..1e8618cbea4aacd532e5c3055608776c06261d6d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/upper_body_37.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_female/upper_body_38.png b/game/modules/tome/data/gfx/shockbolt/player/elf_female/upper_body_38.png
new file mode 100644
index 0000000000000000000000000000000000000000..b83889d8a2336dcddbf23fd5f98aa68b3dc5e6a1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_female/upper_body_38.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/cloak_behind_07.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/cloak_behind_07.png
new file mode 100644
index 0000000000000000000000000000000000000000..2f1ab2771a00954954cb8612823cd922401992db
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/cloak_behind_07.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/cloak_behind_08.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/cloak_behind_08.png
new file mode 100644
index 0000000000000000000000000000000000000000..d2d87a964725430fcc1a37fe5a1c9489f0195484
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/cloak_behind_08.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/cloak_behind_09.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/cloak_behind_09.png
new file mode 100644
index 0000000000000000000000000000000000000000..1661fd968b3adbb7373403e04bcf79b1eeab34b0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/cloak_behind_09.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/cloak_hood_07.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/cloak_hood_07.png
new file mode 100644
index 0000000000000000000000000000000000000000..e95b1dafb6d789db98d36743bc2364535f3fbd2b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/cloak_hood_07.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/cloak_hood_08.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/cloak_hood_08.png
new file mode 100644
index 0000000000000000000000000000000000000000..abb5c24ba0c6b518e2c8331a1523cd6269629a20
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/cloak_hood_08.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/cloak_hood_09.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/cloak_hood_09.png
new file mode 100644
index 0000000000000000000000000000000000000000..b02ea03a57d8c68f734c13f1c44f53a1c5c9a7ff
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/cloak_hood_09.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/cloak_shoulder_07.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/cloak_shoulder_07.png
new file mode 100644
index 0000000000000000000000000000000000000000..bc5581abe19088e960a709a378eb5f0c6e9255c1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/cloak_shoulder_07.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/cloak_shoulder_08.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/cloak_shoulder_08.png
new file mode 100644
index 0000000000000000000000000000000000000000..973c5c479ee922b8820ed63e1698676c4d63c982
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/cloak_shoulder_08.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/cloak_shoulder_09.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/cloak_shoulder_09.png
new file mode 100644
index 0000000000000000000000000000000000000000..59756b48970d1b399f2ef0e43b44884b811d5332
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/cloak_shoulder_09.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/feet_10.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/feet_10.png
new file mode 100644
index 0000000000000000000000000000000000000000..843a94ce266e03097e089eed54425d96332dadcd
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/feet_10.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/feet_11.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/feet_11.png
new file mode 100644
index 0000000000000000000000000000000000000000..a7bf4be6c7e8af162c1d33ddf66aeac6b66470b2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/feet_11.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/gembag_01.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/gembag_01.png
new file mode 100644
index 0000000000000000000000000000000000000000..39c4d11cb0beff596ddf609d5dbd31d700625403
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/gembag_01.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/gembag_02.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/gembag_02.png
new file mode 100644
index 0000000000000000000000000000000000000000..06f3af1cad8aad97b3b07cae1b99d6b088f9a219
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/gembag_02.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/gembag_03.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/gembag_03.png
new file mode 100644
index 0000000000000000000000000000000000000000..913441526f749df1c8c0b3d5199a1db4dbf1bc76
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/gembag_03.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/gembag_04.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/gembag_04.png
new file mode 100644
index 0000000000000000000000000000000000000000..541feeb7ca8ec9ce7ca06c1f972a70102d8c5c29
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/gembag_04.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/gembag_05.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/gembag_05.png
new file mode 100644
index 0000000000000000000000000000000000000000..19bf723cb7bdaa93586a27327037afadac95af35
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/gembag_05.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/hands_08.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/hands_08.png
new file mode 100644
index 0000000000000000000000000000000000000000..94ec300238f22a8b21ee54a58b852539b15acc9f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/hands_08.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/hands_09.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/hands_09.png
new file mode 100644
index 0000000000000000000000000000000000000000..a8beaf10e600440cf21421de6fb163ec4380a949
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/hands_09.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/head_19.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/head_19.png
new file mode 100644
index 0000000000000000000000000000000000000000..eb3dc8314e5c0825d8f033096e7025deb0c909e9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/head_19.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/head_20.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/head_20.png
new file mode 100644
index 0000000000000000000000000000000000000000..f378ba5cb570f4723a039b9bf91c356d2f364c8f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/head_20.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/head_21.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/head_21.png
new file mode 100644
index 0000000000000000000000000000000000000000..b5f945dadd1056656e51926abd9c8390f4236a5c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/head_21.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/head_22.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/head_22.png
new file mode 100644
index 0000000000000000000000000000000000000000..345d8b17d8f20914a1997fd5a9e7ef81071e93b9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/head_22.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/head_23.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/head_23.png
new file mode 100644
index 0000000000000000000000000000000000000000..2bd296052ad1cc16788e1878b9f96c2612564a19
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/head_23.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/lower_body_14.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/lower_body_14.png
new file mode 100644
index 0000000000000000000000000000000000000000..9eb307653636b17a27de80e395ac4604af20aa5d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/lower_body_14.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/lower_body_15.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/lower_body_15.png
new file mode 100644
index 0000000000000000000000000000000000000000..61d4c29468bce22d1e82201d828d2845cdcd0e28
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/lower_body_15.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/lower_body_16.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/lower_body_16.png
new file mode 100644
index 0000000000000000000000000000000000000000..89cd4908a444e8c99424ce69eef7c07f5a276c3d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/lower_body_16.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/lower_body_17.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/lower_body_17.png
new file mode 100644
index 0000000000000000000000000000000000000000..f125e7b059a7a00a0927401584327a53f90131af
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/lower_body_17.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/lower_body_18.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/lower_body_18.png
new file mode 100644
index 0000000000000000000000000000000000000000..f21d2f80de12c73c0b2d2aaf12466f9946c2021e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/lower_body_18.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/lower_body_19.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/lower_body_19.png
new file mode 100644
index 0000000000000000000000000000000000000000..b7c64d16511fad675f96887d49b3965970221cd2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/lower_body_19.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/quiver_01.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/quiver_01.png
new file mode 100644
index 0000000000000000000000000000000000000000..a60fb1aaebec32f4abdbdd44f7799629adb43c2d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/quiver_01.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/quiver_02.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/quiver_02.png
new file mode 100644
index 0000000000000000000000000000000000000000..a30eef758e8447c68daec90f8a85f78b996dfb6d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/quiver_02.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/quiver_03.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/quiver_03.png
new file mode 100644
index 0000000000000000000000000000000000000000..a3076192533dec0bf77e8c9a674c1ba55390aca3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/quiver_03.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/quiver_04.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/quiver_04.png
new file mode 100644
index 0000000000000000000000000000000000000000..c1104515a052e9acdeaaf6c5a8fcdbd82a1a97ed
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/quiver_04.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/quiver_05.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/quiver_05.png
new file mode 100644
index 0000000000000000000000000000000000000000..b62eab2e8a24f29032a01dc75affebd3aa2e33f3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/quiver_05.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/shotbag_01.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/shotbag_01.png
new file mode 100644
index 0000000000000000000000000000000000000000..9e67437e5995b22a975f159e59d8e6efbcaa5067
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/shotbag_01.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/shotbag_02.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/shotbag_02.png
new file mode 100644
index 0000000000000000000000000000000000000000..4e857332a63adfc8b1fdd06c443856b759d62688
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/shotbag_02.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/shotbag_03.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/shotbag_03.png
new file mode 100644
index 0000000000000000000000000000000000000000..46a1b9340bfb9c6e84ffd4089bcc97e25abcf595
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/shotbag_03.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/shotbag_04.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/shotbag_04.png
new file mode 100644
index 0000000000000000000000000000000000000000..8aeb2d5140de6fbb439b0f6c5214500b04ea665e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/shotbag_04.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/shotbag_05.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/shotbag_05.png
new file mode 100644
index 0000000000000000000000000000000000000000..0d2b1d2f6228e6a8e61caafed0a8cfb53a748c42
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/shotbag_05.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/aether_walk.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/aether_walk.png
new file mode 100644
index 0000000000000000000000000000000000000000..6ca2a8a7628e8e87621d2b6919ecb5135e55db52
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/aether_walk.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/arkuls_seige_arrows.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/arkuls_seige_arrows.png
new file mode 100644
index 0000000000000000000000000000000000000000..1af5bc94883b4514443b8d0ffe13e6bb1a836a99
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/arkuls_seige_arrows.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/armor_chromatic_harness.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/armor_chromatic_harness.png
new file mode 100644
index 0000000000000000000000000000000000000000..3e4c9247dcef707c38812e4a98e24646a416e4ad
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/armor_chromatic_harness.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/armor_cuirass_of_the_thronesmen.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/armor_cuirass_of_the_thronesmen.png
new file mode 100644
index 0000000000000000000000000000000000000000..048d94fbe4b5dc2178478cb460c8942b662e56aa
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/armor_cuirass_of_the_thronesmen.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/armor_natures_blessing.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/armor_natures_blessing.png
new file mode 100644
index 0000000000000000000000000000000000000000..e2528458b913e83c26d188acf2b1153f4bf19fa6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/armor_natures_blessing.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/armor_plate_borfasts_cage.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/armor_plate_borfasts_cage.png
new file mode 100644
index 0000000000000000000000000000000000000000..e1d6222446e1de69ca8d001cf44167bdda023fef
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/armor_plate_borfasts_cage.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/armor_rogue_plight.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/armor_rogue_plight.png
new file mode 100644
index 0000000000000000000000000000000000000000..fe1b9d7a0350b0737946e35be2c93619362ea213
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/armor_rogue_plight.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/behemoth_skin.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/behemoth_skin.png
new file mode 100644
index 0000000000000000000000000000000000000000..e45a7a6f2f6aed96f17bbca8538395ab321909b3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/behemoth_skin.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/black_cloak_behind.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/black_cloak_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..3d2b64966ae34f4cf7dbc19c2f1492999e2c6819
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/black_cloak_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/black_cloak_hood.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/black_cloak_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..cd6fcacdde3141ed53b0a14cffa550fcde3413b8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/black_cloak_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/black_cloak_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/black_cloak_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..8fc5230cd7315aec261029efa99eed06dc838275
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/black_cloak_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/boots_edens_guile.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/boots_edens_guile.png
new file mode 100644
index 0000000000000000000000000000000000000000..d4357f533efba815f23da1ca879955a24c188eb7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/boots_edens_guile.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/boots_of_the_hunter.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/boots_of_the_hunter.png
new file mode 100644
index 0000000000000000000000000000000000000000..4efb4cadef2c7a257a6c2a8a25e727306d77dfba
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/boots_of_the_hunter.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/breath_of_eyal.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/breath_of_eyal.png
new file mode 100644
index 0000000000000000000000000000000000000000..a124d49fe2bcb2c2cacbda5d86568a9c5d45791f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/breath_of_eyal.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/cinderfeet.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/cinderfeet.png
new file mode 100644
index 0000000000000000000000000000000000000000..582d832a9d9302b397e3e11c33e148a3e8e57d8f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/cinderfeet.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/cloak_threads_of_fate_behind.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/cloak_threads_of_fate_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..fd8d1f602449d92c96ae5474a9772a59265cecc4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/cloak_threads_of_fate_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/cloak_threads_of_fate_hood.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/cloak_threads_of_fate_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..979ccccc17a32e56afbd5cccaf7f4b29ab79e0f1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/cloak_threads_of_fate_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/cloak_threads_of_fate_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/cloak_threads_of_fate_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..f0741821a110c740fc7c359c4b5d722df28599b4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/cloak_threads_of_fate_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/cloak_winds_whisper_behind.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/cloak_winds_whisper_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..d5733c4bfa269181f25182610b7827f741955ca1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/cloak_winds_whisper_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/cloak_winds_whisper_hood.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/cloak_winds_whisper_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..cf5714a4c9bf15a3da07bf437b70021b514fda11
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/cloak_winds_whisper_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/cloak_winds_whisper_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/cloak_winds_whisper_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..e567462d2594c998475f6535a2a25ac52ea4da6a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/cloak_winds_whisper_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/cloth_armour_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/cloth_armour_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..14cdce5aef349758a4a3126584653f6a518bc21d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/cloth_armour_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/cloth_of_dreams_behind.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/cloth_of_dreams_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..8e08dd086acf9aefeb42ab14d05f27a828643943
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/cloth_of_dreams_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/cloth_of_dreams_hood.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/cloth_of_dreams_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..10189ff647854a81535127ab2b6e5b2501ce91aa
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/cloth_of_dreams_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/cloth_of_dreams_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/cloth_of_dreams_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..3ee29124d329eed39b74abe8f910c7576dd39e06
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/cloth_of_dreams_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/corrupted_gaze.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/corrupted_gaze.png
new file mode 100644
index 0000000000000000000000000000000000000000..e0a4a9fb2f22bb35a05a1178042cd56de4433694
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/corrupted_gaze.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/crimson_robe.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/crimson_robe.png
new file mode 100644
index 0000000000000000000000000000000000000000..39045aa2dfd88e09cf20bf125fd727c6d00b0d46
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/crimson_robe.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/crown_of_burning_pain.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/crown_of_burning_pain.png
new file mode 100644
index 0000000000000000000000000000000000000000..f0d2511af1c849b11a0a5bbdaedb74d270a4b616
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/crown_of_burning_pain.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/crown_of_command.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/crown_of_command.png
new file mode 100644
index 0000000000000000000000000000000000000000..56f49249c337168c39c700d8f37787dd48b97dfd
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/crown_of_command.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/crown_of_eternal_night.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/crown_of_eternal_night.png
new file mode 100644
index 0000000000000000000000000000000000000000..a011f19011a271b4bde836f46d93190684ba8b4d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/crown_of_eternal_night.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/crown_of_the_elements.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/crown_of_the_elements.png
new file mode 100644
index 0000000000000000000000000000000000000000..e3f687977bc3bb59b3f75b18dff1200dd4e1c250
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/crown_of_the_elements.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/crystles_astral_bindings.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/crystles_astral_bindings.png
new file mode 100644
index 0000000000000000000000000000000000000000..ee69a02a891ec65bc8d4ec9322bb22ecba055ae6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/crystles_astral_bindings.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/dakhtuns_gauntlets.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/dakhtuns_gauntlets.png
new file mode 100644
index 0000000000000000000000000000000000000000..797e2ddbc3c862487c382f488835410d1d0809d5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/dakhtuns_gauntlets.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/deaths_embrace.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/deaths_embrace.png
new file mode 100644
index 0000000000000000000000000000000000000000..f4366ba0b450f8df17ca1c2f829582da9f70eaa2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/deaths_embrace.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/decayed_visage.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/decayed_visage.png
new file mode 100644
index 0000000000000000000000000000000000000000..3f1abc474d162fc3817e627f5ef1836600c25905
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/decayed_visage.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/destalas_scales_behind.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/destalas_scales_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..24eb44f24a4a41dda1666f954e55cea6d0298fdf
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/destalas_scales_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/destalas_scales_whisper_hood.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/destalas_scales_whisper_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..366dea35cd4d99af178b4f6f1f0ce18eae2282f6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/destalas_scales_whisper_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/destalas_scales_whisper_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/destalas_scales_whisper_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..2d06bd70f775d69de4cab8be33f112ee17aeb126
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/destalas_scales_whisper_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/diadem_alettas_diadem.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/diadem_alettas_diadem.png
new file mode 100644
index 0000000000000000000000000000000000000000..82d902e95c5ee7a4af0f4ea0369d0e75113ad617
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/diadem_alettas_diadem.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/dragon_helm_of_kroltar.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/dragon_helm_of_kroltar.png
new file mode 100644
index 0000000000000000000000000000000000000000..2979203af1044016bc0f754300f751516cb551ea
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/dragon_helm_of_kroltar.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/dragonskull_helmet.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/dragonskull_helmet.png
new file mode 100644
index 0000000000000000000000000000000000000000..086fc95584ea072420ed2bd2ac5d33f8ddafad59
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/dragonskull_helmet.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/eel_skin_armor.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/eel_skin_armor.png
new file mode 100644
index 0000000000000000000000000000000000000000..3f606cc4bb27bb93a3d4f7e85997224e48eabc54
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/eel_skin_armor.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/ethereal_embrace_behind.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/ethereal_embrace_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..c05b1b4cd4f46730af0fd524c89f2a676b91e4b1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/ethereal_embrace_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/ethereal_embrace_hood.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/ethereal_embrace_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..8f0c24aa6ae3227e1be4c4b66051e05b19db36c2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/ethereal_embrace_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/ethereal_embrace_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/ethereal_embrace_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..e52f963e89ba0efb0e16a69cc6037877b4df61f4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/ethereal_embrace_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/evermoss_robe.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/evermoss_robe.png
new file mode 100644
index 0000000000000000000000000000000000000000..4e4a6bbe33b01327a50c32c3e7abb153e487e50f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/evermoss_robe.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/eye_of_the_forest.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/eye_of_the_forest.png
new file mode 100644
index 0000000000000000000000000000000000000000..e9ec8f40f92abacf7820abb272965d68d7397243
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/eye_of_the_forest.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/fist_of_the_destroyer.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/fist_of_the_destroyer.png
new file mode 100644
index 0000000000000000000000000000000000000000..15879e728aa9aaedd83aa192508800a7a994a797
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/fist_of_the_destroyer.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/frost_treads.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/frost_treads.png
new file mode 100644
index 0000000000000000000000000000000000000000..6594afbaf820537568050604ee9c2e3e122c2410
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/frost_treads.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/frozen_shards.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/frozen_shards.png
new file mode 100644
index 0000000000000000000000000000000000000000..958b9c1b313f9f7a3b7d9b72400a52605f5298d2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/frozen_shards.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/frozen_shroud_behind.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/frozen_shroud_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..b51f0271e1f44526d9c8360851e8df841c846f5c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/frozen_shroud_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/frozen_shroud_hood.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/frozen_shroud_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..b771ab7aa36c71b71434b992715992b8bd9cfcd5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/frozen_shroud_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/frozen_shroud_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/frozen_shroud_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..ef819f8e260ce0fd31e97d4cb3ffe5fd7f043038
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/frozen_shroud_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/gauntlets_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/gauntlets_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..23805b0cdbfc82cbfada453b70316de0629d516f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/gauntlets_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/gloves_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/gloves_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..efda5a9785b930cc4531a059c28acfb4a55a983a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/gloves_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/gloves_flamewrought.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/gloves_flamewrought.png
new file mode 100644
index 0000000000000000000000000000000000000000..efab92f709716e820c0e9dc00fd647753b2f337c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/gloves_flamewrought.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/gloves_of_the_firm_hand.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/gloves_of_the_firm_hand.png
new file mode 100644
index 0000000000000000000000000000000000000000..c581cf9462b465b52a9b8e27676454d5f8e83fa2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/gloves_of_the_firm_hand.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/grip_of_death.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/grip_of_death.png
index ac46685cb4f1f80af67c66c32530066ff297d162..8ee332ac35322d1951ae610eb88be6d5af707fc3 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/grip_of_death.png and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/grip_of_death.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/guise_of_the_hated_behind.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/guise_of_the_hated_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..cdc67516aeb4745dd0f498ea3a28bda5615be4ab
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/guise_of_the_hated_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/guise_of_the_hated_hood.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/guise_of_the_hated_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..3a2193733b54f130dced43602cd45faf6bab9f39
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/guise_of_the_hated_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/guise_of_the_hated_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/guise_of_the_hated_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..c30a36121c8f580dc22b6ea96aa0306cd790c377
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/guise_of_the_hated_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/hand_of_the_worldshaper.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/hand_of_the_worldshaper.png
new file mode 100644
index 0000000000000000000000000000000000000000..c9063c5dc8541a8077ec4435cc5274b282f1fe65
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/hand_of_the_worldshaper.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/harkor_zun_gauntlets.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/harkor_zun_gauntlets.png
new file mode 100644
index 0000000000000000000000000000000000000000..9440a2f6e69481c9cc5b91890421b8e3493b1dd9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/harkor_zun_gauntlets.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/heavy_armour_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/heavy_armour_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..debd97b22c060abba06e136cf7f2c534c4d10e83
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/heavy_armour_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/helm_of_garkul.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/helm_of_garkul.png
new file mode 100644
index 0000000000000000000000000000000000000000..ba22c0c5816bd17202d9f31c08c8e504e13f597a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/helm_of_garkul.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/helm_of_the_dwarven_emperors.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/helm_of_the_dwarven_emperors.png
new file mode 100644
index 0000000000000000000000000000000000000000..ce97e8220735dc74d3e542860d38d94ad0b169f3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/helm_of_the_dwarven_emperors.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/hornet_stingers.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/hornet_stingers.png
new file mode 100644
index 0000000000000000000000000000000000000000..292d521d7987fb37b9c08eac77480a8799568922
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/hornet_stingers.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/iron_mail_of_bloodletting.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/iron_mail_of_bloodletting.png
new file mode 100644
index 0000000000000000000000000000000000000000..711e497847a933849667f4b311f5052312d32b2a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/iron_mail_of_bloodletting.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_1Haxe_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_1Haxe_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..008f767ce14535240d274f28859b8a53ce13ce40
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_1Haxe_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_1Hmace_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_1Hmace_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..921fd28f9b033fbd07624ff66cde491c1e46d7d7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_1Hmace_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_1Hsword_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_1Hsword_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..202f58ffb2dce03b74e01be5499c203a1f65259c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_1Hsword_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_2Haxe_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_2Haxe_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..69341d0293c3839d19b9e724bf8211e8354b3aa7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_2Haxe_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_2Hmace_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_2Hmace_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..ddf34c020789273a69a27d3d4db0b4be32fc4784
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_2Hmace_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_2Hsword_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_2Hsword_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..05aed24f98fbe8a3154866e08b442fa3f10e683e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_2Hsword_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_amethyst_of_sanctuary.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_amethyst_of_sanctuary.png
new file mode 100644
index 0000000000000000000000000000000000000000..8a5f13ee61129874715b29beb626d31096eebfce
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_amethyst_of_sanctuary.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_awaken_staff_of_absorbtion.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_awaken_staff_of_absorbtion.png
new file mode 100644
index 0000000000000000000000000000000000000000..9c4352dcd4977f511e0c6be81eeb02dc0479a365
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_awaken_staff_of_absorbtion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_blighted_maul.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_blighted_maul.png
new file mode 100644
index 0000000000000000000000000000000000000000..476e24f727434e0b179d0c9c3292710ebf458a0c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_blighted_maul.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_bloomsoul.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_bloomsoul.png
new file mode 100644
index 0000000000000000000000000000000000000000..242a0ad990508d645b6a8ac77c6ccfea46e29db7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_bloomsoul.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_borosks_hate.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_borosks_hate.png
new file mode 100644
index 0000000000000000000000000000000000000000..0566c0a0403a75320bb1a2b1d53bf6c030c34157
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_borosks_hate.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_bow_corpsebow.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_bow_corpsebow.png
new file mode 100644
index 0000000000000000000000000000000000000000..ab19c78f279cb03e9d3d8293360dbbc1ad931e8a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_bow_corpsebow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_bow_epochs_curve.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_bow_epochs_curve.png
new file mode 100644
index 0000000000000000000000000000000000000000..d888b8e537c10b22e9391857784b001f677b54fd
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_bow_epochs_curve.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_champions_will.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_champions_will.png
new file mode 100644
index 0000000000000000000000000000000000000000..b6be6d98918961fee7309f9a5436b088ac5c62b4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_champions_will.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_colaryem.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_colaryem.png
new file mode 100644
index 0000000000000000000000000000000000000000..0426ea9b450b7b7d69abda419bd4a9695328b33a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_colaryem.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_core_of_the_forge.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_core_of_the_forge.png
new file mode 100644
index 0000000000000000000000000000000000000000..d783404da2a7c5dc40a2b99ec9842878673305d6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_core_of_the_forge.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_corpus_2.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_corpus_2.png
new file mode 100644
index 0000000000000000000000000000000000000000..7158caa968898ccd3ac4b40412213d80ee05d192
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_corpus_2.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_crystal_shard.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_crystal_shard.png
new file mode 100644
index 0000000000000000000000000000000000000000..29920a9ffd69bb49e9367884f3d35c1ee015888b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_crystal_shard.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_dagger_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_dagger_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..cf57b2121f38cec05c890f75e70b0186bd52f3a3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_dagger_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_dream_malleus.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_dream_malleus.png
new file mode 100644
index 0000000000000000000000000000000000000000..728900faf50810e03810fd7ac53b9341de311b2a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_dream_malleus.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_eclipse.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_eclipse.png
new file mode 100644
index 0000000000000000000000000000000000000000..b8a85ccf436fa468c02a73e2e95f18fa3fa553c6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_eclipse.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_eyals_will.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_eyals_will.png
new file mode 100644
index 0000000000000000000000000000000000000000..41cb19459d1f4fbbd3002aa6000671060a1648be
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_eyals_will.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_eye_of_the_wyrm.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_eye_of_the_wyrm.png
new file mode 100644
index 0000000000000000000000000000000000000000..394ad6ba1480547f8691536b740cb3acb54c0f8c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_eye_of_the_wyrm.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_focus_whip.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_focus_whip.png
new file mode 100644
index 0000000000000000000000000000000000000000..416cbced1b16346b48953908be64d37b90944503
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_focus_whip.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_genocide.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_genocide.png
new file mode 100644
index 0000000000000000000000000000000000000000..bd660ddd169f23abe85615360a239444665185bb
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_genocide.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_gravitational_staff.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_gravitational_staff.png
new file mode 100644
index 0000000000000000000000000000000000000000..b6262961da81341a9eea9ab501a907f69cdb2ad8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_gravitational_staff.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_great_caller.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_great_caller.png
new file mode 100644
index 0000000000000000000000000000000000000000..a5cbef42157fd856e1d530a86f295b7c5239fd86
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_great_caller.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_guidance.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_guidance.png
new file mode 100644
index 0000000000000000000000000000000000000000..9bb9a0c9eeb122e6aa03e5047dc8e01a0588425c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_guidance.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_hareskin_sling.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_hareskin_sling.png
new file mode 100644
index 0000000000000000000000000000000000000000..11b623d2c1d444ccc3e74b193f8ec806c56e2b40
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_hareskin_sling.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_hydras_bite.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_hydras_bite.png
new file mode 100644
index 0000000000000000000000000000000000000000..99e16d13deeb5850a0cd312becbc4716cbe6a499
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_hydras_bite.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_latafayn.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_latafayn.png
new file mode 100644
index 0000000000000000000000000000000000000000..58473e963caffaf390124b93bc7c0b17014f76b9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_latafayn.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_merkuls_second_eye.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_merkuls_second_eye.png
new file mode 100644
index 0000000000000000000000000000000000000000..2816081aef2e0ad540f34ab07ca50767e36d9677
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_merkuls_second_eye.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_nexus_of_the_way.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_nexus_of_the_way.png
new file mode 100644
index 0000000000000000000000000000000000000000..701a8c4e5baa94227e69d1b7eff59dd3b32e08c5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_nexus_of_the_way.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_nithans_force.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_nithans_force.png
new file mode 100644
index 0000000000000000000000000000000000000000..cce2f2de9033fd881761596314e411eaa44c14cf
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_nithans_force.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_obliterator.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_obliterator.png
new file mode 100644
index 0000000000000000000000000000000000000000..4f1a24a9b379bc07f340e860bb44215263c7fde2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_obliterator.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_oozing_heart.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_oozing_heart.png
new file mode 100644
index 0000000000000000000000000000000000000000..975954b411867a21373b753b27bdaa6bdf55b819
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_oozing_heart.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_psionic_fury.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_psionic_fury.png
new file mode 100644
index 0000000000000000000000000000000000000000..e5bce8077dd74d2a3c4f39f186cf35d25adca5a7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_psionic_fury.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_rod_of_sarrilon.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_rod_of_sarrilon.png
new file mode 100644
index 0000000000000000000000000000000000000000..64804bce977dde7448530bb0a6a2dcf1168a36f0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_rod_of_sarrilon.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_sceptre_of_the_archlich.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_sceptre_of_the_archlich.png
new file mode 100644
index 0000000000000000000000000000000000000000..20e1257bdc04c582bf5b8da87a9f53634bca892f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_sceptre_of_the_archlich.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_serpents_glare.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_serpents_glare.png
new file mode 100644
index 0000000000000000000000000000000000000000..77f239ec7205c24838657d9d5c2ff5926668c373
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_serpents_glare.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_shield_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_shield_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..b4b1d9897c75022c464bd37976f15122f2a37a76
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_shield_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_skeletal_claw.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_skeletal_claw.png
new file mode 100644
index 0000000000000000000000000000000000000000..d14a5c008235ef7c176c1c2a8e504d730f47e8f9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_skeletal_claw.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_sling_eldoral_last_resort.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_sling_eldoral_last_resort.png
new file mode 100644
index 0000000000000000000000000000000000000000..e0299b28b6e426bf1ada8da5c8f3eda022271630
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_sling_eldoral_last_resort.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_spectral_blade.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_spectral_blade.png
new file mode 100644
index 0000000000000000000000000000000000000000..535329f78e543c59c9d2f3eaa23d9d04161d7078
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_spectral_blade.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_spellcrusher.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_spellcrusher.png
new file mode 100644
index 0000000000000000000000000000000000000000..98180966c49d9a29d1fd30ad4753d4f1a0d0045b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_spellcrusher.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_staff_bolbums_big_knocker.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_staff_bolbums_big_knocker.png
new file mode 100644
index 0000000000000000000000000000000000000000..4cde006750c74f7a63fd30d9ca1580a8fcaee497
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_staff_bolbums_big_knocker.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_staff_broken_bottom_telos.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_staff_broken_bottom_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..c4b400ead9ba0e7243f9d962ded9912d9fd655ff
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_staff_broken_bottom_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_staff_broken_top_telos.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_staff_broken_top_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..a3643cbfd79d36fd0f565406d255a29b3c0d6960
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_staff_broken_top_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_staff_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_staff_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..52a8b3373a1282537f2286a7a002b72c3f52a52c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_staff_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_staff_kors_fall.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_staff_kors_fall.png
new file mode 100644
index 0000000000000000000000000000000000000000..e765b0f3c056d6867ba53c25234f3b1a88b88161
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_staff_kors_fall.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_staff_lost_staff_archmage_tarelion.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_staff_lost_staff_archmage_tarelion.png
new file mode 100644
index 0000000000000000000000000000000000000000..f22a4c3c3e9e5385737a1853549448d325369be3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_staff_lost_staff_archmage_tarelion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_staff_of_absorbtion.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_staff_of_absorbtion.png
new file mode 100644
index 0000000000000000000000000000000000000000..0b5162f39261828ab33d4814202310921c43fc3d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_staff_of_absorbtion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_staff_of_arcane_supremacy.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_staff_of_arcane_supremacy.png
new file mode 100644
index 0000000000000000000000000000000000000000..e29556b065cfb7a05abb34df8360f9bd1f63faf3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_staff_of_arcane_supremacy.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_staff_of_destruction.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_staff_of_destruction.png
new file mode 100644
index 0000000000000000000000000000000000000000..8bdb5c297c05c17f6a67133c1a312f907677c356
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_staff_of_destruction.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_staff_penitence.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_staff_penitence.png
new file mode 100644
index 0000000000000000000000000000000000000000..cbc88a255ec660fbf2c5dd73b64d5af160b70e7b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_staff_penitence.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_staff_voice_of_telos.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_staff_voice_of_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..619119620ec1ccd18d7204d014543137a8779838
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_staff_voice_of_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_storm_fury.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_storm_fury.png
new file mode 100644
index 0000000000000000000000000000000000000000..9c66652cbb96c025d3112a323f74ed5d096380bc
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_storm_fury.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_stormlash.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_stormlash.png
new file mode 100644
index 0000000000000000000000000000000000000000..978106189944a28973f6411590abb81d11e84db8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_stormlash.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_surefire.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_surefire.png
new file mode 100644
index 0000000000000000000000000000000000000000..87e5f2e6cb8caa6992fbfb21620a45e7e5baff57
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_surefire.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_telos_spire_of_power.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_telos_spire_of_power.png
new file mode 100644
index 0000000000000000000000000000000000000000..c7699ed70b461fc8e0aae33aac3bbedfcaab1a92
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_telos_spire_of_power.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_thaloren_tree_longbow.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_thaloren_tree_longbow.png
new file mode 100644
index 0000000000000000000000000000000000000000..54d087998f16b974bd34700f31d462eb83522830
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_thaloren_tree_longbow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_trident_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_trident_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..991384ca7e6726b057ec8d9aeee6e326996176a0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_trident_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_umbral_razor.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_umbral_razor.png
new file mode 100644
index 0000000000000000000000000000000000000000..0e1e51b5415946a29e7ed7bc5ad4b78a2cd23d8c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_umbral_razor.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_unstoppable_mauler.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_unstoppable_mauler.png
new file mode 100644
index 0000000000000000000000000000000000000000..b151786922f4dde2b1fff6df4a3ab363976b70d1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_unstoppable_mauler.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_voratun_hammer_of_the_deep_bellow.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_voratun_hammer_of_the_deep_bellow.png
new file mode 100644
index 0000000000000000000000000000000000000000..e66c2e64793dc6ad49c32481c29122a62f15769f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_voratun_hammer_of_the_deep_bellow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_warmaster_gnargs_murderblade.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_warmaster_gnargs_murderblade.png
new file mode 100644
index 0000000000000000000000000000000000000000..fe76f535dc95bc28bc87465a3400b4b9144250ae
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_warmaster_gnargs_murderblade.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_whip_of_urh_rok.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_whip_of_urh_rok.png
new file mode 100644
index 0000000000000000000000000000000000000000..1236dc06c63642d345fe8da93f6f605aeaeb2e8e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_whip_of_urh_rok.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_whip_scorpions_tail.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_whip_scorpions_tail.png
new file mode 100644
index 0000000000000000000000000000000000000000..afdf7d4c61c2e4bb3e314574d117c56eb6cf4e7a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_whip_scorpions_tail.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_writhing_essence_of_nightmares.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_writhing_essence_of_nightmares.png
new file mode 100644
index 0000000000000000000000000000000000000000..73a701d8f89f4de9e6a709611ad62b0b28e62d50
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/left_writhing_essence_of_nightmares.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/light_armour_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/light_armour_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..11d70b2b337d936905519a034f6c0644420052d5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/light_armour_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/malslek_the_accursed_hat.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/malslek_the_accursed_hat.png
new file mode 100644
index 0000000000000000000000000000000000000000..70a677f3659794a0534b6f4df727f31827c31fa6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/malslek_the_accursed_hat.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/masochism.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/masochism.png
new file mode 100644
index 0000000000000000000000000000000000000000..ec175f02f5c1a30086a6bbb83c2450118d13f707
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/masochism.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/massive_armour_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/massive_armour_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..228a5e0805011b4f539446d443596a7bdf76e00a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/massive_armour_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/omniscience.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/omniscience.png
new file mode 100644
index 0000000000000000000000000000000000000000..d40fe5820075ae5eb4107f46b47ca4ba0830eba3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/omniscience.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/plate_armor_of_the_king.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/plate_armor_of_the_king.png
new file mode 100644
index 0000000000000000000000000000000000000000..cf19a584ba9a95c90a80d5a0bf9ed00f4ff714ca
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/plate_armor_of_the_king.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/plate_of_the_blackened_mind.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/plate_of_the_blackened_mind.png
new file mode 100644
index 0000000000000000000000000000000000000000..457eacc0296c127ab094e63dbdb8a8e27e2bbb3d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/plate_of_the_blackened_mind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/pouch_of_the_subconscious.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/pouch_of_the_subconscious.png
new file mode 100644
index 0000000000000000000000000000000000000000..9e18f480e9e9d3f2d5e6bd30f8c72ed0b1f399cc
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/pouch_of_the_subconscious.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/quiver_of_domination.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/quiver_of_domination.png
new file mode 100644
index 0000000000000000000000000000000000000000..ad6c6d68978f5962da2085130e04a6363f124d40
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/quiver_of_domination.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/quiver_of_the_sun.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/quiver_of_the_sun.png
new file mode 100644
index 0000000000000000000000000000000000000000..039cef45df39e5ec927c6728b16ac7ed73a81a08
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/quiver_of_the_sun.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/radiance_behind.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/radiance_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..e9fd1a2be6f9542652b7fa1454870b260fbd1bd2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/radiance_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/radiance_hood.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/radiance_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..a3de834896eea63c231e433f6e8b5293fd407839
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/radiance_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/radiance_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/radiance_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..b5d12863a141d4cd61e4d9bb9d5ddbd9e2ac4e8d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/radiance_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_1Haxe_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_1Haxe_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..bc5414f80948a603025c381d7f843ed584556144
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_1Haxe_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_1Hmace_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_1Hmace_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..e70c7d53634c99adec26aa5a4916d9866472df4a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_1Hmace_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_1Hsword_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_1Hsword_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..b80165f2c45c72886e05b5f2781a49dfe29af942
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_1Hsword_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_2Haxe_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_2Haxe_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..d481bc652eaa531d6f2800d710dfa286d777510f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_2Haxe_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_2Hmace_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_2Hmace_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..8312acd88cd44d53afaaa8389eeeeea4ebca84a4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_2Hmace_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_2Hsword_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_2Hsword_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..c9caf73bf0194c534f494876c43e5c39f9fd2180
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_2Hsword_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_amethyst_of_sanctuary.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_amethyst_of_sanctuary.png
new file mode 100644
index 0000000000000000000000000000000000000000..bc9368bda4ba7dd8f7c8d6af78d869346ee6ae85
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_amethyst_of_sanctuary.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_awaken_staff_of_absorbtion.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_awaken_staff_of_absorbtion.png
new file mode 100644
index 0000000000000000000000000000000000000000..6f556e71980272bf854d313bec3f73a516725768
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_awaken_staff_of_absorbtion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_blighted_maul.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_blighted_maul.png
new file mode 100644
index 0000000000000000000000000000000000000000..66631aa3441bfd028b1560a002d6b11c63a2e953
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_blighted_maul.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_bloomsoul.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_bloomsoul.png
new file mode 100644
index 0000000000000000000000000000000000000000..11eeee680d85ac74d3c7f89ec73781b7a1be321e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_bloomsoul.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_borosks_hate.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_borosks_hate.png
new file mode 100644
index 0000000000000000000000000000000000000000..99ec9984285b1a146aef605a3fd647ef967cb22a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_borosks_hate.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_bow_corpsebow.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_bow_corpsebow.png
new file mode 100644
index 0000000000000000000000000000000000000000..b6c6feea8e662d39948c87705afb36eba301e32b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_bow_corpsebow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_bow_epochs_curve.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_bow_epochs_curve.png
new file mode 100644
index 0000000000000000000000000000000000000000..1d769a588cb94a8628b74d908fb48656ec4471e6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_bow_epochs_curve.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_champions_will.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_champions_will.png
new file mode 100644
index 0000000000000000000000000000000000000000..1e42a59ef28df120813c6de56d23712c107c5213
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_champions_will.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_colaryem.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_colaryem.png
new file mode 100644
index 0000000000000000000000000000000000000000..e22c99c7046d4ef7031127f75c223b167b098d1e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_colaryem.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_core_of_the_forge.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_core_of_the_forge.png
new file mode 100644
index 0000000000000000000000000000000000000000..9613d41ae9f2f76a4af806b3055cc13e520b17b6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_core_of_the_forge.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_corpus_2.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_corpus_2.png
new file mode 100644
index 0000000000000000000000000000000000000000..9fd2a5cebdf229e43cda55cd31a387e90c086363
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_corpus_2.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_crystal_shard.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_crystal_shard.png
new file mode 100644
index 0000000000000000000000000000000000000000..fa1c8814db6edce51fa806ea5a55c80fe52ade10
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_crystal_shard.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_dagger_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_dagger_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..a9f0d51a00bffca6abba7d0edd145d013771295d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_dagger_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_dream_malleus.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_dream_malleus.png
new file mode 100644
index 0000000000000000000000000000000000000000..17fd68b17923a172c879364d5a672590b49ff79b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_dream_malleus.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_eclipse.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_eclipse.png
new file mode 100644
index 0000000000000000000000000000000000000000..ec31f6022599a92a3583e99a2835840ff67484d4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_eclipse.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_eyals_will.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_eyals_will.png
new file mode 100644
index 0000000000000000000000000000000000000000..d25e09f6894220efc4378baa9f47477980edfac9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_eyals_will.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_eye_of_the_wyrm.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_eye_of_the_wyrm.png
new file mode 100644
index 0000000000000000000000000000000000000000..c16f5c1fd71978d973098ffa5983789e980b1342
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_eye_of_the_wyrm.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_focus_whip.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_focus_whip.png
new file mode 100644
index 0000000000000000000000000000000000000000..12740dc30d7b969eb364965b5517ce7497a0075a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_focus_whip.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_genocide.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_genocide.png
new file mode 100644
index 0000000000000000000000000000000000000000..6082d44fc02d1a7df8ac24e4d591b8fcf2d4548f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_genocide.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_gravitational_staff.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_gravitational_staff.png
new file mode 100644
index 0000000000000000000000000000000000000000..6d6e4c78d2f9331376d5a928295c273ccb66994c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_gravitational_staff.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_great_caller.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_great_caller.png
new file mode 100644
index 0000000000000000000000000000000000000000..8f7ac88db80bdfb3d969c31c3f5015a616c934f1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_great_caller.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_guidance.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_guidance.png
new file mode 100644
index 0000000000000000000000000000000000000000..57b9e3ee74b151cd420ec0f685f275969ab7458b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_guidance.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_hareskin_sling.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_hareskin_sling.png
new file mode 100644
index 0000000000000000000000000000000000000000..96ecc75e5016e615b3e7f0ed1220bb6604ab724d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_hareskin_sling.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_hydras_bite.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_hydras_bite.png
new file mode 100644
index 0000000000000000000000000000000000000000..3345e51282b5f885a1f3e67c1240a1f08f6a4cea
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_hydras_bite.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_latafayn.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_latafayn.png
new file mode 100644
index 0000000000000000000000000000000000000000..03852bb5ac5c15970de437d4dbb3f7f3d0852b84
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_latafayn.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_merkuls_second_eye.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_merkuls_second_eye.png
new file mode 100644
index 0000000000000000000000000000000000000000..9a1a9b4cb48bb5bf02c1623de9bd66bd8f644d7b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_merkuls_second_eye.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_nexus_of_the_way.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_nexus_of_the_way.png
new file mode 100644
index 0000000000000000000000000000000000000000..c46e2da72ff63a7e9b1aef65104f438dfbecac0b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_nexus_of_the_way.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_nithans_force.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_nithans_force.png
new file mode 100644
index 0000000000000000000000000000000000000000..c4768e49833d77ff1092592a573802f348ba0636
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_nithans_force.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_obliterator.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_obliterator.png
new file mode 100644
index 0000000000000000000000000000000000000000..a45158ddd631419c3f834956ce545f125e7c93d1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_obliterator.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_oozing_heart.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_oozing_heart.png
new file mode 100644
index 0000000000000000000000000000000000000000..9c1219e629847a0a38022983bd37cb6cdbf384f1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_oozing_heart.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_psionic_fury.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_psionic_fury.png
new file mode 100644
index 0000000000000000000000000000000000000000..f80a8db476113e699625e48761d2d9549f2cdb1d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_psionic_fury.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_rod_of_sarrilon.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_rod_of_sarrilon.png
new file mode 100644
index 0000000000000000000000000000000000000000..f859f3ae51cf68a94d142ed4a5cb8d41c0efb7dc
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_rod_of_sarrilon.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_sceptre_of_the_archlich.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_sceptre_of_the_archlich.png
new file mode 100644
index 0000000000000000000000000000000000000000..6744edec9d747d6190885262564b072668c277a7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_sceptre_of_the_archlich.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_serpents_glare.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_serpents_glare.png
new file mode 100644
index 0000000000000000000000000000000000000000..94468881e520499fe3e5b4a2ae1e970c3a95f2c6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_serpents_glare.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_shield_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_shield_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..1527d01a1a0af043b08a2f1ece5df6e8c749d24f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_shield_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_skeletal_claw.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_skeletal_claw.png
new file mode 100644
index 0000000000000000000000000000000000000000..90ba2acd3c437ede4fba275838eda8ee2debe10d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_skeletal_claw.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_sling_eldoral_last_resort.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_sling_eldoral_last_resort.png
new file mode 100644
index 0000000000000000000000000000000000000000..8afa70a351d44cd735d98f82f5a1c05f5acde5af
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_sling_eldoral_last_resort.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_spectral_blade.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_spectral_blade.png
new file mode 100644
index 0000000000000000000000000000000000000000..e185d43c1d73f8d7562da2e94f3731cd3377ea3a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_spectral_blade.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_spellcrusher.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_spellcrusher.png
new file mode 100644
index 0000000000000000000000000000000000000000..67f7904d0ca0a577ff048ae762a679565e8bcce9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_spellcrusher.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_staff_bolbums_big_knocker.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_staff_bolbums_big_knocker.png
new file mode 100644
index 0000000000000000000000000000000000000000..18faaaf00e86a37f08b258ff30dd3d7c7cfe231a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_staff_bolbums_big_knocker.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_staff_broken_bottom_telos.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_staff_broken_bottom_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..727d9b5ae8fdbfde74461a3db2e563b5e3650026
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_staff_broken_bottom_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_staff_broken_top_telos.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_staff_broken_top_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..e2517d2a0b86c4543075c219d729181dbabbd367
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_staff_broken_top_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_staff_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_staff_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..e8a636755aecd8abe78548714f823bfe6541a2dd
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_staff_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_staff_kors_fall.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_staff_kors_fall.png
new file mode 100644
index 0000000000000000000000000000000000000000..1c374b955347fb062b82544fb94e5420df9a4502
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_staff_kors_fall.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_staff_lost_staff_archmage_tarelion.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_staff_lost_staff_archmage_tarelion.png
new file mode 100644
index 0000000000000000000000000000000000000000..fa1263c03c76553c13a0a17610dcc2e283cb1227
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_staff_lost_staff_archmage_tarelion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_staff_of_absorbtion.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_staff_of_absorbtion.png
new file mode 100644
index 0000000000000000000000000000000000000000..93224665d736582976dc00b5a36a324caf2d658d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_staff_of_absorbtion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_staff_of_arcane_supremacy.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_staff_of_arcane_supremacy.png
new file mode 100644
index 0000000000000000000000000000000000000000..54fd29e1112692e29a139d4f19abafbe4a3d38bb
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_staff_of_arcane_supremacy.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_staff_of_destruction.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_staff_of_destruction.png
new file mode 100644
index 0000000000000000000000000000000000000000..884043b9ec96d37de5b8eea8ca265c7716ad824d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_staff_of_destruction.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_staff_penitence.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_staff_penitence.png
new file mode 100644
index 0000000000000000000000000000000000000000..220ae4ce1633f4a83684cb20f0f70446123b6824
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_staff_penitence.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_staff_voice_of_telos.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_staff_voice_of_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..ec4e7a12b5e85dab28fca2d924573896b98cc2a9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_staff_voice_of_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_storm_fury.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_storm_fury.png
new file mode 100644
index 0000000000000000000000000000000000000000..9704e71fa6322b3a31dfbd8caaf440aab1d29cdf
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_storm_fury.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_stormlash.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_stormlash.png
new file mode 100644
index 0000000000000000000000000000000000000000..8e87923868dff5b06a57377b1fae623f6b639b38
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_stormlash.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_surefire.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_surefire.png
new file mode 100644
index 0000000000000000000000000000000000000000..b34884c4942873c90b3f6da0d6c96a83122fe75a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_surefire.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_telos_spire_of_power.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_telos_spire_of_power.png
new file mode 100644
index 0000000000000000000000000000000000000000..b06e6405452af33e83f9e0519eedd8984788daa1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_telos_spire_of_power.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_thaloren_tree_longbow.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_thaloren_tree_longbow.png
new file mode 100644
index 0000000000000000000000000000000000000000..2d0303e837b437de2652afc1060ea17b9085f799
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_thaloren_tree_longbow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_trident_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_trident_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..441aff764880885e2b24176642026a73b097bdff
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_trident_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_umbral_razor.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_umbral_razor.png
new file mode 100644
index 0000000000000000000000000000000000000000..c8c5b1376647b5a062b017a679b7315c3fb5e658
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_umbral_razor.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_unstoppable_mauler.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_unstoppable_mauler.png
new file mode 100644
index 0000000000000000000000000000000000000000..6a3a2fc85099cf582aacabda73b0b362148c3c03
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_unstoppable_mauler.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_voratun_hammer_of_the_deep_bellow.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_voratun_hammer_of_the_deep_bellow.png
new file mode 100644
index 0000000000000000000000000000000000000000..1ce306a4d8e1f6c98ad04cd031a90300abea18ae
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_voratun_hammer_of_the_deep_bellow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_warmaster_gnargs_murderblade.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_warmaster_gnargs_murderblade.png
new file mode 100644
index 0000000000000000000000000000000000000000..b44ed3f83b14bc700d77e6932ab8515c262d96de
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_warmaster_gnargs_murderblade.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_whip_of_urh_rok.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_whip_of_urh_rok.png
new file mode 100644
index 0000000000000000000000000000000000000000..764eeca5d25a93ca08abac164fbbfe3ea5ac53c5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_whip_of_urh_rok.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_whip_scorpions_tail.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_whip_scorpions_tail.png
new file mode 100644
index 0000000000000000000000000000000000000000..ee125fe439b012115e773a690ee7d98acf66c913
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_whip_scorpions_tail.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_writhing_essence_of_nightmares.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_writhing_essence_of_nightmares.png
new file mode 100644
index 0000000000000000000000000000000000000000..550de8d0121b1bfb67c713a6100a663acb422197
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/right_writhing_essence_of_nightmares.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/robe_black_robe.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/robe_black_robe.png
new file mode 100644
index 0000000000000000000000000000000000000000..9e8970499f4e4f8131c3ec0b6a9b50abc65856ed
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/robe_black_robe.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/robe_firewalker.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/robe_firewalker.png
new file mode 100644
index 0000000000000000000000000000000000000000..ec0028072572eb46abb27e57ab4c017723a9bac8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/robe_firewalker.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/robe_of_force.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/robe_of_force.png
new file mode 100644
index 0000000000000000000000000000000000000000..a33b7aef5d4f7e1de259a56deb4f596949631515
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/robe_of_force.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/robe_spider_silk_robe_spydre.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/robe_spider_silk_robe_spydre.png
new file mode 100644
index 0000000000000000000000000000000000000000..a0a47ecf9315b548f1079b0352e4e8f9fa565ea9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/robe_spider_silk_robe_spydre.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/robe_temporal_augmentation_robe.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/robe_temporal_augmentation_robe.png
new file mode 100644
index 0000000000000000000000000000000000000000..644d563efbba7ffef77138d14a6ac36f6cb6044c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/robe_temporal_augmentation_robe.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/robe_vestments_of_the_conclave.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/robe_vestments_of_the_conclave.png
new file mode 100644
index 0000000000000000000000000000000000000000..aef3ac3b7c3ad50daa9c5f323bcd97a8f81d7b76
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/robe_vestments_of_the_conclave.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/robes_of_deflection.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/robes_of_deflection.png
new file mode 100644
index 0000000000000000000000000000000000000000..525013a2f2cb734db894e07accf9d75596748ea4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/robes_of_deflection.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/scale_mail_of_kroltar.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/scale_mail_of_kroltar.png
new file mode 100644
index 0000000000000000000000000000000000000000..bb0baf68a0ed5cf1837d45799b6151eee15ca47f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/scale_mail_of_kroltar.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/scorched_boots.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/scorched_boots.png
new file mode 100644
index 0000000000000000000000000000000000000000..26f47061d69003a829fc57841e704c3cb78a6067
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/scorched_boots.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/scorpion_gauntlets.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/scorpion_gauntlets.png
new file mode 100644
index 0000000000000000000000000000000000000000..a8820ed91813d5eb35e2824ddda66492b18df64f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/scorpion_gauntlets.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/serpentine_cloak_behind.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/serpentine_cloak_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..4b65f2dc208b6cacff11f179dd805869bddd6d3d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/serpentine_cloak_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/serpentine_cloak_hood.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/serpentine_cloak_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..3e655a471c87044f18bb4c6c29c44072cd6f5eaf
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/serpentine_cloak_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/serpentine_cloak_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/serpentine_cloak_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..fe1561d3776395a7ddd22e2d9b22c83f4f295058
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/serpentine_cloak_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/shifting_boots.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/shifting_boots.png
new file mode 100644
index 0000000000000000000000000000000000000000..a4e770fcf11478677f17d26e9e73a90758fefeb4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/shifting_boots.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/silk_current.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/silk_current.png
new file mode 100644
index 0000000000000000000000000000000000000000..eced9e7ee9542c68acce01f1fe4ec265d6af1439
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/silk_current.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/sludgegrip.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/sludgegrip.png
new file mode 100644
index 0000000000000000000000000000000000000000..62205a1d271428e3f54d11b9187adbad29b098af
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/sludgegrip.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/snow_giant_arm_wraps.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/snow_giant_arm_wraps.png
new file mode 100644
index 0000000000000000000000000000000000000000..5356429629e529071544a64a00f4233c5616efd9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/snow_giant_arm_wraps.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/spellhunt_remnants.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/spellhunt_remnants.png
new file mode 100644
index 0000000000000000000000000000000000000000..3e56ecb93ab880a621df75d08b5912c3d7035c72
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/spellhunt_remnants.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/star_shot.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/star_shot.png
new file mode 100644
index 0000000000000000000000000000000000000000..8e8f4dbf5d80a87d4acea3c9cb2ecf4942947968
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/star_shot.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/storm_bringers_gauntlets.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/storm_bringers_gauntlets.png
new file mode 100644
index 0000000000000000000000000000000000000000..02af9b9bdd9f9b97da13fccf69129781b69e87e2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/storm_bringers_gauntlets.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/terrasca.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/terrasca.png
new file mode 100644
index 0000000000000000000000000000000000000000..6b904d8fef82175a8fbb1d25d380ea2e0db292fb
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/terrasca.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/the_calm.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/the_calm.png
new file mode 100644
index 0000000000000000000000000000000000000000..f279ea67d9b597af680b072c1100ec4e9e55195e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/the_calm.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/the_inner_eye.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/the_inner_eye.png
new file mode 100644
index 0000000000000000000000000000000000000000..806ada2a1732585f76f74a13c00537ebd04c5a46
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/the_inner_eye.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/the_titans_quiver.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/the_titans_quiver.png
new file mode 100644
index 0000000000000000000000000000000000000000..679030bbc0a8f6e00bddb0b1d81ef4b1ef6b9ae7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/the_titans_quiver.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/the_untouchable.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/the_untouchable.png
new file mode 100644
index 0000000000000000000000000000000000000000..b78a1da1a0485db828411cd792e276b4e69234d5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/the_untouchable.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/the_warped_boots.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/the_warped_boots.png
new file mode 100644
index 0000000000000000000000000000000000000000..aba16a56a1f8fc9bba86a08007b3eab209ba969b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/the_warped_boots.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/unbreakable_greaves.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/unbreakable_greaves.png
new file mode 100644
index 0000000000000000000000000000000000000000..646aa209893a5ec0a122bafda3d519c1da32099e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/unbreakable_greaves.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/ureslaks_molted_scales_behind.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/ureslaks_molted_scales_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..138fc9fcabf36520a265dd02bb6514f8a87c17af
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/ureslaks_molted_scales_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/ureslaks_molted_scales_hood.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/ureslaks_molted_scales_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..f8217aa8a7911f2f3a218d4176658af297e8ca41
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/ureslaks_molted_scales_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/ureslaks_molted_scales_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/ureslaks_molted_scales_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..1b08f3d81f568323ef25afc839d105e4e623f7c4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/ureslaks_molted_scales_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/void_quiver.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/void_quiver.png
new file mode 100644
index 0000000000000000000000000000000000000000..eb330aac0b5d0a085ec3e8c7dd661f3ea40bfa5e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/void_quiver.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/wanderers_rest.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/wanderers_rest.png
new file mode 100644
index 0000000000000000000000000000000000000000..e52979a4b689f4baaae9bea0618e82353f5637cf
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/wanderers_rest.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/wind_worn_shot.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/wind_worn_shot.png
new file mode 100644
index 0000000000000000000000000000000000000000..ac6f5d2c4be3c06f0594a7ea9660c239f0016740
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/wind_worn_shot.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/wizard_hat_of_arcane_understanding.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/wizard_hat_of_arcane_understanding.png
new file mode 100644
index 0000000000000000000000000000000000000000..ab5e44a803a88f7fa58cf14f19ad55019cc2f059
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/wizard_hat_of_arcane_understanding.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/wooden_cuirass.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/wooden_cuirass.png
index 83a322467ef8cf1e3ccba6029538ded809ba82df..5c20550512f798962cb3f77b290e4f59cb5b68a7 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/wooden_cuirass.png and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/wooden_cuirass.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/wrap_of_stone_behind.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/wrap_of_stone_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..7ca224fbc27656e7c5da974656555b707a2d30e1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/wrap_of_stone_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/wrap_of_stone_hood.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/wrap_of_stone_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..6621974bd493a05ed304cec8f7a82be642fc6f91
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/wrap_of_stone_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/wrap_of_stone_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/wrap_of_stone_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..6524f2fae38ecfbe4e598489aebb86a06b1cca96
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/wrap_of_stone_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/wyrmbreath.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/wyrmbreath.png
new file mode 100644
index 0000000000000000000000000000000000000000..02fa3cbb033ea691a2ddf65feb8c56413aa37fff
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/wyrmbreath.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/yaldan_baoth.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/yaldan_baoth.png
new file mode 100644
index 0000000000000000000000000000000000000000..bdc8e285d70f1716d86f063819395065ec21c969
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/yaldan_baoth.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/yeek_fur_robe.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/yeek_fur_robe.png
new file mode 100644
index 0000000000000000000000000000000000000000..0e37f0aae4f7eb06c7c651be3d2e60f2a9916f69
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/special/yeek_fur_robe.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/upper_body_25.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/upper_body_25.png
index ad4caaf9e716d37b0a664c5c4fc9764bbe8e0786..c2b07bfb33849d57ee7e54f207a039707b68c907 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/elf_male/upper_body_25.png and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/upper_body_25.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/upper_body_29.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/upper_body_29.png
new file mode 100644
index 0000000000000000000000000000000000000000..6578b15af515f2a87ffd9523f35957d3201e20e7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/upper_body_29.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/upper_body_30.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/upper_body_30.png
new file mode 100644
index 0000000000000000000000000000000000000000..19d35d331f6b5c447760db9f5158c8caa33a9f5e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/upper_body_30.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/upper_body_31.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/upper_body_31.png
new file mode 100644
index 0000000000000000000000000000000000000000..081d4bf573e8d63600876ccc2ae0f1a54ca69490
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/upper_body_31.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/upper_body_32.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/upper_body_32.png
new file mode 100644
index 0000000000000000000000000000000000000000..cc7e00c30ee5ce70deeb942eb5fa4eb94dc3ab59
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/upper_body_32.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/upper_body_33.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/upper_body_33.png
new file mode 100644
index 0000000000000000000000000000000000000000..83e8d0fc0952bfd2024178c84d46830326cbbcc1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/upper_body_33.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/upper_body_34.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/upper_body_34.png
new file mode 100644
index 0000000000000000000000000000000000000000..59f822e867bcf95d8e3c4a18a7e21fbb0965e6a9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/upper_body_34.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/upper_body_35.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/upper_body_35.png
new file mode 100644
index 0000000000000000000000000000000000000000..f82a69b6b41080b04ceb9b794b3f67c0f6ba0308
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/upper_body_35.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/upper_body_36.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/upper_body_36.png
new file mode 100644
index 0000000000000000000000000000000000000000..a3d11b2c859c6273daaf26ea07f0e8d582bdd9a9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/upper_body_36.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/upper_body_37.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/upper_body_37.png
new file mode 100644
index 0000000000000000000000000000000000000000..3419a3a11d3a7c8a52f5a9d0b4e7fc7e4bb1d902
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/upper_body_37.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/elf_male/upper_body_38.png b/game/modules/tome/data/gfx/shockbolt/player/elf_male/upper_body_38.png
new file mode 100644
index 0000000000000000000000000000000000000000..948d4b1dbc7c1abbb235ca81cef297acbf5fd21d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/elf_male/upper_body_38.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/cloak_behind_07.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/cloak_behind_07.png
new file mode 100644
index 0000000000000000000000000000000000000000..8bc1670c703577622e79cf059a95a6fc9681091b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/cloak_behind_07.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/cloak_behind_08.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/cloak_behind_08.png
new file mode 100644
index 0000000000000000000000000000000000000000..88ac3affbda0e2f19ae82e91a0f6460e7f6763fe
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/cloak_behind_08.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/cloak_behind_09.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/cloak_behind_09.png
new file mode 100644
index 0000000000000000000000000000000000000000..b39c4a5c9879dd87215ae689a4d0ac8721abde80
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/cloak_behind_09.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/cloak_hood_07.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/cloak_hood_07.png
new file mode 100644
index 0000000000000000000000000000000000000000..0efff740e2a106a3776a20873296d0bb5797307e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/cloak_hood_07.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/cloak_hood_08.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/cloak_hood_08.png
new file mode 100644
index 0000000000000000000000000000000000000000..b87e29902e86d7adb7d27e320eac2cfdcbfd0cee
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/cloak_hood_08.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/cloak_hood_09.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/cloak_hood_09.png
new file mode 100644
index 0000000000000000000000000000000000000000..b0607302b2e576f96d2c593fd51626c8c7fa2f11
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/cloak_hood_09.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/cloak_shoulder_07.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/cloak_shoulder_07.png
new file mode 100644
index 0000000000000000000000000000000000000000..f9d029dc381f0227c9cab70b0cd26f4d738e2102
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/cloak_shoulder_07.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/cloak_shoulder_08.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/cloak_shoulder_08.png
new file mode 100644
index 0000000000000000000000000000000000000000..3f6cb44c93d0f17e584ffd75beb4a8b39d0d34f3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/cloak_shoulder_08.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/cloak_shoulder_09.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/cloak_shoulder_09.png
new file mode 100644
index 0000000000000000000000000000000000000000..4e9a5070bb7ea52f8227f41b150dfce842dc1afe
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/cloak_shoulder_09.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/feet_10.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/feet_10.png
new file mode 100644
index 0000000000000000000000000000000000000000..60d078fa3c5246670b21b706aed53fc0994aa646
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/feet_10.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/feet_11.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/feet_11.png
new file mode 100644
index 0000000000000000000000000000000000000000..daee748938d588f1bc969dc9356695a23fd611a3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/feet_11.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/gembag_01.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/gembag_01.png
new file mode 100644
index 0000000000000000000000000000000000000000..71d5890fc8ded22164b1332f4635323d9dfd3ba7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/gembag_01.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/gembag_02.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/gembag_02.png
new file mode 100644
index 0000000000000000000000000000000000000000..089e8c0c02ce3bad610cd3e2492c7c671866552d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/gembag_02.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/gembag_03.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/gembag_03.png
new file mode 100644
index 0000000000000000000000000000000000000000..8ebfffc58fd2dce58eee4e794495058ce17de991
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/gembag_03.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/gembag_04.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/gembag_04.png
new file mode 100644
index 0000000000000000000000000000000000000000..4ebf839a57d0635a4ced007d59f743b3f1915e2f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/gembag_04.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/gembag_05.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/gembag_05.png
new file mode 100644
index 0000000000000000000000000000000000000000..da5164ac6ff3cb7f70ab50094bc5aeabee5883a2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/gembag_05.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/hands_08.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/hands_08.png
new file mode 100644
index 0000000000000000000000000000000000000000..942ab2937bbfc171d482122059b8638cb8ef284e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/hands_08.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/hands_09.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/hands_09.png
new file mode 100644
index 0000000000000000000000000000000000000000..538de44745c4135a58621ad4e41dd13c047121ae
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/hands_09.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/head_19.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/head_19.png
new file mode 100644
index 0000000000000000000000000000000000000000..0369e8f035b0c8bfd6b1eae76807da72167fea2c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/head_19.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/head_20.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/head_20.png
new file mode 100644
index 0000000000000000000000000000000000000000..52d830d2dc9385e1f5e9660cdd7d81269bda222b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/head_20.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/head_21.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/head_21.png
new file mode 100644
index 0000000000000000000000000000000000000000..e2268699edf04ea9225b5cebf9b438103933e131
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/head_21.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/head_22.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/head_22.png
new file mode 100644
index 0000000000000000000000000000000000000000..20d7113063803bb04fa89244c3710027fa18f04c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/head_22.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/head_23.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/head_23.png
new file mode 100644
index 0000000000000000000000000000000000000000..78f510228a8a7f75b951c4048869490c566e749b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/head_23.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/lower_body_14.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/lower_body_14.png
new file mode 100644
index 0000000000000000000000000000000000000000..efb02ed2f103898c4a7d9966d76f57f7fd6e8c25
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/lower_body_14.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/lower_body_15.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/lower_body_15.png
new file mode 100644
index 0000000000000000000000000000000000000000..1dcf25629eadb498b2c693a57b1a5eda194afa1f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/lower_body_15.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/lower_body_16.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/lower_body_16.png
new file mode 100644
index 0000000000000000000000000000000000000000..4658edeca5817f97eafcfecb9c50fe339e671799
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/lower_body_16.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/lower_body_17.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/lower_body_17.png
new file mode 100644
index 0000000000000000000000000000000000000000..3171912d74215893c17d79d624d64711ec5f7efa
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/lower_body_17.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/lower_body_18.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/lower_body_18.png
new file mode 100644
index 0000000000000000000000000000000000000000..889e00bfafe7895477a6450b70c3372c09d2732e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/lower_body_18.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/lower_body_19.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/lower_body_19.png
new file mode 100644
index 0000000000000000000000000000000000000000..f1c504bb8f46081d7c6a5617adadaf28802b23d3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/lower_body_19.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/quiver_01.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/quiver_01.png
new file mode 100644
index 0000000000000000000000000000000000000000..ddde79b3808fd1bd69d93d7581ad85e0dbcb9817
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/quiver_01.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/quiver_02.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/quiver_02.png
new file mode 100644
index 0000000000000000000000000000000000000000..ba373b0273b4d2e3bf39b5d59da099218c9611d8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/quiver_02.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/quiver_03.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/quiver_03.png
new file mode 100644
index 0000000000000000000000000000000000000000..3af9283f795e6c484765417ec9da5baf75024ca1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/quiver_03.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/quiver_04.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/quiver_04.png
new file mode 100644
index 0000000000000000000000000000000000000000..5ec18b6c31c8f345f1632746f9447e15b6b5b721
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/quiver_04.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/quiver_05.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/quiver_05.png
new file mode 100644
index 0000000000000000000000000000000000000000..bd7f581da70469631fa032f11432bd4bc0374882
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/quiver_05.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/shotbag_01.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/shotbag_01.png
new file mode 100644
index 0000000000000000000000000000000000000000..0a18dac22437b756f74ed9d89a55872e096b452b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/shotbag_01.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/shotbag_02.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/shotbag_02.png
new file mode 100644
index 0000000000000000000000000000000000000000..2dac3694ccb54feeb4229eb3052c74230dd3ae42
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/shotbag_02.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/shotbag_03.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/shotbag_03.png
new file mode 100644
index 0000000000000000000000000000000000000000..619749a5cc223cc6ad674611784c3facb1a7ab33
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/shotbag_03.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/shotbag_04.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/shotbag_04.png
new file mode 100644
index 0000000000000000000000000000000000000000..4ddb1ba0c2997eaf5578e0ff3f9d27658d5f0146
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/shotbag_04.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/shotbag_05.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/shotbag_05.png
new file mode 100644
index 0000000000000000000000000000000000000000..3c4d541fc3e16de227ca1dc243ee509e2ecb6ce8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/shotbag_05.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/aether_walk.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/aether_walk.png
new file mode 100644
index 0000000000000000000000000000000000000000..b0195935b1e599adb279a80de2bbb23e4ad79989
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/aether_walk.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/arkuls_seige_arrows.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/arkuls_seige_arrows.png
new file mode 100644
index 0000000000000000000000000000000000000000..2686165c4c4cca076fc7a3c65d7d12fde52b4a86
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/arkuls_seige_arrows.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/armor_chromatic_harness.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/armor_chromatic_harness.png
new file mode 100644
index 0000000000000000000000000000000000000000..e2ddb6940a70fe7c40eb1d12db94b0ea529760f7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/armor_chromatic_harness.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/armor_cuirass_of_the_thronesmen.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/armor_cuirass_of_the_thronesmen.png
new file mode 100644
index 0000000000000000000000000000000000000000..9d9f59476723a464b794220af095278caeb17411
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/armor_cuirass_of_the_thronesmen.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/armor_natures_blessing.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/armor_natures_blessing.png
new file mode 100644
index 0000000000000000000000000000000000000000..1ba86cf14c3ca01182c0a8c0559efc6393b81a55
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/armor_natures_blessing.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/armor_plate_borfasts_cage.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/armor_plate_borfasts_cage.png
new file mode 100644
index 0000000000000000000000000000000000000000..0c89cf1d97aa49a53295ab26466183c80ac91062
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/armor_plate_borfasts_cage.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/armor_rogue_plight.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/armor_rogue_plight.png
new file mode 100644
index 0000000000000000000000000000000000000000..7125773157b55e18b15a0a4e920c06a8fe0dc75f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/armor_rogue_plight.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/behemoth_skin.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/behemoth_skin.png
new file mode 100644
index 0000000000000000000000000000000000000000..a19364ae996f35cc9f66619d29b3db2e8a2d3cb6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/behemoth_skin.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/black_cloak_behind.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/black_cloak_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..5bb3c2aa4fb80a94a0e93b967777ff3a23d63bc5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/black_cloak_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/black_cloak_hood.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/black_cloak_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..31905e227a4b0ae9e18a9263d7aeff2ac96ee267
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/black_cloak_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/black_cloak_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/black_cloak_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..28529614917ac34cd1ecf9cf0f1176ad53ce3150
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/black_cloak_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/boots_edens_guile.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/boots_edens_guile.png
new file mode 100644
index 0000000000000000000000000000000000000000..c103b56ed235035b5c9970c078b6019afc187443
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/boots_edens_guile.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/boots_of_the_hunter.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/boots_of_the_hunter.png
new file mode 100644
index 0000000000000000000000000000000000000000..54ca66ade60dee822364b66887b2742ad8b77799
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/boots_of_the_hunter.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/breath_of_eyal.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/breath_of_eyal.png
new file mode 100644
index 0000000000000000000000000000000000000000..3c6755644038992545d5569df2deea1e4cc1bf0c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/breath_of_eyal.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/cinderfeet.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/cinderfeet.png
new file mode 100644
index 0000000000000000000000000000000000000000..9d1a6e57f6ea1f53df91f381f192c29923518d54
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/cinderfeet.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/cloak_threads_of_fate_behind.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/cloak_threads_of_fate_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..d4225958e17d7fbd3ee356859c0025b907c1db31
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/cloak_threads_of_fate_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/cloak_threads_of_fate_hood.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/cloak_threads_of_fate_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..9e373c5383d572fb67b5a8e585e85c1bebcb1cb6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/cloak_threads_of_fate_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/cloak_threads_of_fate_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/cloak_threads_of_fate_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..9d59732a85acc60e68f195058394aae39dafb962
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/cloak_threads_of_fate_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/cloak_winds_whisper_behind.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/cloak_winds_whisper_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..50f8c465368a846a40968d31c5d75fb721ef5f72
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/cloak_winds_whisper_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/cloak_winds_whisper_hood.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/cloak_winds_whisper_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..91fe03b544e3a4652136c162f23f57397c938ef7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/cloak_winds_whisper_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/cloak_winds_whisper_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/cloak_winds_whisper_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..22600762d0018ab1a44d3e4dd3f4b23ba994c830
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/cloak_winds_whisper_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/cloth_armour_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/cloth_armour_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..998952506722ac3d4ed720d93fc5b2f679dd17c6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/cloth_armour_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/cloth_of_dreams_behind.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/cloth_of_dreams_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..8effbc337f9a836bccb239d1f7d117bfcc79e868
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/cloth_of_dreams_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/cloth_of_dreams_hood.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/cloth_of_dreams_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..15ea25fcc9b57e49e919233d937ac496e12b6036
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/cloth_of_dreams_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/cloth_of_dreams_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/cloth_of_dreams_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..934fbba52a717d007a9ba5e1ddc7abbc8a4db944
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/cloth_of_dreams_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/corrupted_gaze.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/corrupted_gaze.png
new file mode 100644
index 0000000000000000000000000000000000000000..e487eaf51ce162ad6a1799e1581416406ca0f55f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/corrupted_gaze.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/crimson_robe.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/crimson_robe.png
new file mode 100644
index 0000000000000000000000000000000000000000..0ba9a09bb84bce6320027142a35e1e16bc624bc6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/crimson_robe.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/crown_of_burning_pain.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/crown_of_burning_pain.png
new file mode 100644
index 0000000000000000000000000000000000000000..147c1b95ba803e92507455d98148c0c333a0627f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/crown_of_burning_pain.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/crown_of_command.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/crown_of_command.png
new file mode 100644
index 0000000000000000000000000000000000000000..d4094994597d263e5eb05bcd8d396b29dc3fb500
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/crown_of_command.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/crown_of_eternal_night.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/crown_of_eternal_night.png
new file mode 100644
index 0000000000000000000000000000000000000000..557ccd6524ac98c89e19b13174a685a9cca140dc
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/crown_of_eternal_night.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/crown_of_the_elements.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/crown_of_the_elements.png
new file mode 100644
index 0000000000000000000000000000000000000000..d12ba8f164b5e97bb4f98a17e1d7f71ec476adfb
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/crown_of_the_elements.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/crystles_astral_bindings.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/crystles_astral_bindings.png
new file mode 100644
index 0000000000000000000000000000000000000000..c335d5e6755fcf1cf6bda638f552637e3fea296d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/crystles_astral_bindings.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/dakhtuns_gauntlets.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/dakhtuns_gauntlets.png
new file mode 100644
index 0000000000000000000000000000000000000000..d95dcbed9a2d7dc7675eddd4c15f002d899f79cc
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/dakhtuns_gauntlets.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/deaths_embrace.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/deaths_embrace.png
new file mode 100644
index 0000000000000000000000000000000000000000..cbcad84a912b0a7758a829231c3860fb63b44d88
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/deaths_embrace.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/decayed_visage.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/decayed_visage.png
new file mode 100644
index 0000000000000000000000000000000000000000..9326d78722978a88f1994f8568795687aeca35e0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/decayed_visage.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/destalas_scales_behind.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/destalas_scales_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..e640b52b38128e1ac06f7f5a9603eaf175725e90
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/destalas_scales_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/destalas_scales_whisper_hood.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/destalas_scales_whisper_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..4003f4c38572351320ac3f5696fc76c4bf4bc1e6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/destalas_scales_whisper_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/destalas_scales_whisper_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/destalas_scales_whisper_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..9b48aaeb7ebfba83a131d5104d32a92d544f56a5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/destalas_scales_whisper_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/diadem_alettas_diadem.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/diadem_alettas_diadem.png
new file mode 100644
index 0000000000000000000000000000000000000000..5d93c857257d3e6f3f4d6f2fa45e8401dab43ea8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/diadem_alettas_diadem.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/dragon_helm_of_kroltar.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/dragon_helm_of_kroltar.png
new file mode 100644
index 0000000000000000000000000000000000000000..a30838ec46b0c4bb0799f2531c88e7f322e07070
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/dragon_helm_of_kroltar.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/dragonskull_helmet.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/dragonskull_helmet.png
new file mode 100644
index 0000000000000000000000000000000000000000..6ddd3a5015ec21f22f8382b54621758a2952ff5d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/dragonskull_helmet.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/eel_skin_armor.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/eel_skin_armor.png
new file mode 100644
index 0000000000000000000000000000000000000000..166f6a27f863ba08e6e55a7a4911ee7f8b404ce1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/eel_skin_armor.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/ethereal_embrace_behind.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/ethereal_embrace_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..32340766a93ae4ce7b3ef62fdc0eea4711ee50d2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/ethereal_embrace_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/ethereal_embrace_hood.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/ethereal_embrace_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..a90ae2b1f420cbb2e9ec090f8f7bf27a5b6a178c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/ethereal_embrace_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/ethereal_embrace_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/ethereal_embrace_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..939d7780b7b0458293b768040621df2095009c14
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/ethereal_embrace_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/evermoss_robe.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/evermoss_robe.png
new file mode 100644
index 0000000000000000000000000000000000000000..8f45652480a3f35991d26e56a6685946d2b22c10
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/evermoss_robe.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/eye_of_the_forest.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/eye_of_the_forest.png
new file mode 100644
index 0000000000000000000000000000000000000000..7db7127717a11a5aca43ea1564451d72c3d745ed
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/eye_of_the_forest.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/fist_of_the_destroyer.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/fist_of_the_destroyer.png
new file mode 100644
index 0000000000000000000000000000000000000000..09c0d59dcbec338b95a8082bed33611c20c83faa
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/fist_of_the_destroyer.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/frost_treads.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/frost_treads.png
new file mode 100644
index 0000000000000000000000000000000000000000..2da3d5d6618bbec54ff0dfe6b49ce577361ed9f2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/frost_treads.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/frozen_shards.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/frozen_shards.png
new file mode 100644
index 0000000000000000000000000000000000000000..9677dfb71ebfe6e28188ffdb27866ec6fd30632c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/frozen_shards.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/frozen_shroud_behind.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/frozen_shroud_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..4bef974951e417ddce18a3a6534a2d324f8d3f84
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/frozen_shroud_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/frozen_shroud_hood.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/frozen_shroud_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..89679b86a383b6560b9eb9067fe22af5f36c306f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/frozen_shroud_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/frozen_shroud_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/frozen_shroud_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..34f87b0254429d26ae7a6c7d383a34529350ddf6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/frozen_shroud_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/gauntlets_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/gauntlets_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..f0b0d954c8882c97872987554c82a53494042b32
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/gauntlets_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/gloves_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/gloves_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..40f5dad01ef7bce6ffcce1aa080fd5b8bfc3c205
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/gloves_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/gloves_flamewrought.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/gloves_flamewrought.png
new file mode 100644
index 0000000000000000000000000000000000000000..628a6f6afced3dff53b613f23a034da09b90923a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/gloves_flamewrought.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/gloves_of_the_firm_hand.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/gloves_of_the_firm_hand.png
new file mode 100644
index 0000000000000000000000000000000000000000..25d7be323acc2247bfcd478f37850f2f6a09676b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/gloves_of_the_firm_hand.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/grip_of_death.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/grip_of_death.png
index c5390d09ac9223051b508211bc429de17d59933b..3b0c66bac38ca184324700456c50d6a554acfb31 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/grip_of_death.png and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/grip_of_death.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/guise_of_the_hated_behind.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/guise_of_the_hated_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..794e3aceae2f3b65cec80214d586c1a504d731fe
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/guise_of_the_hated_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/guise_of_the_hated_hood.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/guise_of_the_hated_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..3666b19a0ff0eabeb0945d621702160e2696ac56
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/guise_of_the_hated_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/guise_of_the_hated_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/guise_of_the_hated_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..0871d33c038e8eda81145aaab6b251203fe077a5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/guise_of_the_hated_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/hand_of_the_worldshaper.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/hand_of_the_worldshaper.png
new file mode 100644
index 0000000000000000000000000000000000000000..1037645d1910eb3da3e64e3f26ecb845c3436ce1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/hand_of_the_worldshaper.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/harkor_zun_gauntlets.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/harkor_zun_gauntlets.png
new file mode 100644
index 0000000000000000000000000000000000000000..b23203bda64f4a591af02c498efb4a6f8459cb4d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/harkor_zun_gauntlets.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/heavy_armour_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/heavy_armour_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..0e32e9b9a5ecddafbaee83347fd4379d6c666bd6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/heavy_armour_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/helm_of_garkul.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/helm_of_garkul.png
new file mode 100644
index 0000000000000000000000000000000000000000..1d10b2b509467469e0365df78c97f6e0e7221fde
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/helm_of_garkul.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/helm_of_the_dwarven_emperors.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/helm_of_the_dwarven_emperors.png
new file mode 100644
index 0000000000000000000000000000000000000000..6fb06887aab8f0a16c0832855a86fadd94164c02
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/helm_of_the_dwarven_emperors.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/hornet_stingers.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/hornet_stingers.png
new file mode 100644
index 0000000000000000000000000000000000000000..eeb08ea763f0f48ca5f3095a59a4fe3ed3bec050
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/hornet_stingers.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/iron_mail_of_bloodletting.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/iron_mail_of_bloodletting.png
new file mode 100644
index 0000000000000000000000000000000000000000..e43f1c9f1624b14f64b21937d75c629cef7cada5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/iron_mail_of_bloodletting.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_1Haxe_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_1Haxe_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..d630f14a42586afc21ee6cded4efc3715fe47a60
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_1Haxe_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_1Hmace_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_1Hmace_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..3badfa2152c66e990720040e26b0848d28b850d4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_1Hmace_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_1Hsword_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_1Hsword_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..891c5f03c4175611b46a891a8a0d5caff3791f06
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_1Hsword_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_2Haxe_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_2Haxe_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..252648c54cf7749a6ac9dcd3751f880879dd6fca
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_2Haxe_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_2Hmace_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_2Hmace_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..66b6fe7dd77b2ac173cb27c624b42324c5e0d48e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_2Hmace_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_2Hsword_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_2Hsword_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..dc04a6e3aa90f180957abf9fb44fc560d1027950
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_2Hsword_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_amethyst_of_sanctuary.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_amethyst_of_sanctuary.png
new file mode 100644
index 0000000000000000000000000000000000000000..0a6650cc8bb359e980366f6e1d95f5951c81e9c2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_amethyst_of_sanctuary.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_awaken_staff_of_absorbtion.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_awaken_staff_of_absorbtion.png
new file mode 100644
index 0000000000000000000000000000000000000000..2c2f6cc6074a2b475ca6cbe0b8c7a350575ec4cc
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_awaken_staff_of_absorbtion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_blighted_maul.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_blighted_maul.png
new file mode 100644
index 0000000000000000000000000000000000000000..c466a52b4778c56b6653a91ea20a6d8330671603
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_blighted_maul.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_bloomsoul.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_bloomsoul.png
new file mode 100644
index 0000000000000000000000000000000000000000..3403162e83b6ca86955a7c839c05cc12505f76c5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_bloomsoul.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_borosks_hate.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_borosks_hate.png
new file mode 100644
index 0000000000000000000000000000000000000000..996c2c6fe73f4263d748d52bb968c68843da2453
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_borosks_hate.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_bow_corpsebow.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_bow_corpsebow.png
new file mode 100644
index 0000000000000000000000000000000000000000..bdbc5424c4d0db35b9e22128d5b6535d8bf8dfb8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_bow_corpsebow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_bow_epochs_curve.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_bow_epochs_curve.png
new file mode 100644
index 0000000000000000000000000000000000000000..6cf6e9556495b124c62e7bb1623b7117351e9207
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_bow_epochs_curve.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_champions_will.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_champions_will.png
new file mode 100644
index 0000000000000000000000000000000000000000..5d1bd76b134c6bfc0ba2a2dd33f5bb5e5ea74abf
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_champions_will.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_colaryem.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_colaryem.png
new file mode 100644
index 0000000000000000000000000000000000000000..8cbf4fb01d7d0e33f0bcc270616b29cb1ff89089
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_colaryem.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_core_of_the_forge.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_core_of_the_forge.png
new file mode 100644
index 0000000000000000000000000000000000000000..2e94fc623ab00d7801d77abe0206500bcf06016f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_core_of_the_forge.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_corpus_2.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_corpus_2.png
new file mode 100644
index 0000000000000000000000000000000000000000..e49142c313fb55cb74fa020ee5325583a86feab7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_corpus_2.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_crystal_shard.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_crystal_shard.png
new file mode 100644
index 0000000000000000000000000000000000000000..c70f6abb2e542522bbea5e997bd95b8d3c0c39b2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_crystal_shard.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_dagger_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_dagger_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..84210cc745a65c3ba483695d9c8981424fdfcfd4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_dagger_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_dream_malleus.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_dream_malleus.png
new file mode 100644
index 0000000000000000000000000000000000000000..eb8833047b02ec4aceb3209630e6bbf785ee1a8c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_dream_malleus.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_eclipse.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_eclipse.png
new file mode 100644
index 0000000000000000000000000000000000000000..459f6e308d6a0bf683c71e5d25a732057c000e10
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_eclipse.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_eyals_will.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_eyals_will.png
new file mode 100644
index 0000000000000000000000000000000000000000..f7b544df46a90e6128f4f0dec2deb26de951fda9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_eyals_will.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_eye_of_the_wyrm.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_eye_of_the_wyrm.png
new file mode 100644
index 0000000000000000000000000000000000000000..6633b116839c5a051c8487ca4361c463d7e44a04
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_eye_of_the_wyrm.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_focus_whip.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_focus_whip.png
new file mode 100644
index 0000000000000000000000000000000000000000..635016285ebd9c45306c06f6a15499c8a750b583
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_focus_whip.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_genocide.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_genocide.png
new file mode 100644
index 0000000000000000000000000000000000000000..5e7344bb2ecd0d2b627131b780abe09083800871
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_genocide.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_gravitational_staff.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_gravitational_staff.png
new file mode 100644
index 0000000000000000000000000000000000000000..70f2653e6d3f7c365b63b104a1117ef3c9902180
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_gravitational_staff.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_great_caller.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_great_caller.png
new file mode 100644
index 0000000000000000000000000000000000000000..f2ef6ad353d408ecb97d32ac5a92dd26678b76aa
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_great_caller.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_guidance.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_guidance.png
new file mode 100644
index 0000000000000000000000000000000000000000..90888a111ba2dd0e9c6ff78fe3a79cefb55139bb
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_guidance.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_hareskin_sling.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_hareskin_sling.png
new file mode 100644
index 0000000000000000000000000000000000000000..2484cd7cbcc2223a0f3f2ec298f0fc7f3f144d14
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_hareskin_sling.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_hydras_bite.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_hydras_bite.png
new file mode 100644
index 0000000000000000000000000000000000000000..8dfc33f08291dc3f7d0090f75f2b36f0df5205c0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_hydras_bite.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_latafayn.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_latafayn.png
new file mode 100644
index 0000000000000000000000000000000000000000..029d6785d837f381f4e81d486d6dc2746ee8e9f8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_latafayn.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_merkuls_second_eye.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_merkuls_second_eye.png
new file mode 100644
index 0000000000000000000000000000000000000000..a7988632c8dbe68a56d8aff1b299cebfcd288bd7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_merkuls_second_eye.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_nexus_of_the_way.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_nexus_of_the_way.png
new file mode 100644
index 0000000000000000000000000000000000000000..b04db18942ad137cdad6fb74d91e2bd57960757f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_nexus_of_the_way.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_nithans_force.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_nithans_force.png
new file mode 100644
index 0000000000000000000000000000000000000000..474e3507a6e1c2dd3869c0964342975575731766
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_nithans_force.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_obliterator.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_obliterator.png
new file mode 100644
index 0000000000000000000000000000000000000000..03806ab34047738f695e7d9d64c2fa924c2bb33d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_obliterator.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_oozing_heart.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_oozing_heart.png
new file mode 100644
index 0000000000000000000000000000000000000000..36c5e2c4dacd9a246a7da6c5faa1d80f742069ae
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_oozing_heart.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_psionic_fury.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_psionic_fury.png
new file mode 100644
index 0000000000000000000000000000000000000000..737ed4a01d3ef5a9378ecab5dd7321e34f501ec0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_psionic_fury.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_rod_of_sarrilon.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_rod_of_sarrilon.png
new file mode 100644
index 0000000000000000000000000000000000000000..354c39950f929093a6330f866953303d1ed397b1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_rod_of_sarrilon.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_sceptre_of_the_archlich.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_sceptre_of_the_archlich.png
new file mode 100644
index 0000000000000000000000000000000000000000..af0c0e79fb3d359478433c60823ac13e9f0e4cc8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_sceptre_of_the_archlich.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_serpents_glare.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_serpents_glare.png
new file mode 100644
index 0000000000000000000000000000000000000000..dd99b1dabc88ad674da8df2107812dd1dbd6734e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_serpents_glare.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_shield_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_shield_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..d3727c58c196222b8899ddc5df72d5f11df22ea2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_shield_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_skeletal_claw.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_skeletal_claw.png
new file mode 100644
index 0000000000000000000000000000000000000000..9dee42af75354fd06677f102717137bae97c41b6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_skeletal_claw.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_sling_eldoral_last_resort.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_sling_eldoral_last_resort.png
new file mode 100644
index 0000000000000000000000000000000000000000..be40d521a867e32fecc9f28167f1cc45a5098025
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_sling_eldoral_last_resort.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_spectral_blade.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_spectral_blade.png
new file mode 100644
index 0000000000000000000000000000000000000000..20c13a8eba6e170cfd8f6cd5c4913446531b017f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_spectral_blade.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_spellcrusher.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_spellcrusher.png
new file mode 100644
index 0000000000000000000000000000000000000000..18a6f5f053e7564385398e1d4b549b924f3783d0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_spellcrusher.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_staff_bolbums_big_knocker.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_staff_bolbums_big_knocker.png
new file mode 100644
index 0000000000000000000000000000000000000000..7fd969917debb9bd66ac206a34792f2a057f94fa
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_staff_bolbums_big_knocker.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_staff_broken_bottom_telos.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_staff_broken_bottom_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..1d7c207034aa1deb7a06a70256bd08fd89fb069b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_staff_broken_bottom_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_staff_broken_top_telos.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_staff_broken_top_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..79de3342dc488f1e159ba44ce309b99cd389bd76
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_staff_broken_top_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_staff_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_staff_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..3e636fbfbe9d4c075d8122455c6494e37aa0b6c9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_staff_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_staff_kors_fall.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_staff_kors_fall.png
new file mode 100644
index 0000000000000000000000000000000000000000..eb0c6575f4683887673630e6ac13a697f23e21aa
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_staff_kors_fall.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_staff_lost_staff_archmage_tarelion.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_staff_lost_staff_archmage_tarelion.png
new file mode 100644
index 0000000000000000000000000000000000000000..cff997da71e10458ce584528f2484e01d7e638d3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_staff_lost_staff_archmage_tarelion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_staff_of_absorbtion.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_staff_of_absorbtion.png
new file mode 100644
index 0000000000000000000000000000000000000000..23d6708d4fe9d8332fa3bf84ded07a7a3c4a530f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_staff_of_absorbtion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_staff_of_arcane_supremacy.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_staff_of_arcane_supremacy.png
new file mode 100644
index 0000000000000000000000000000000000000000..766f674a179bb47dc3b0849c0cc2b4ce8579ba10
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_staff_of_arcane_supremacy.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_staff_of_destruction.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_staff_of_destruction.png
new file mode 100644
index 0000000000000000000000000000000000000000..847eaeb5ea2eadcff591c8bf5e0ae33b24c4a37a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_staff_of_destruction.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_staff_penitence.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_staff_penitence.png
new file mode 100644
index 0000000000000000000000000000000000000000..31decdcedbf37d719f2f5c1f5004b68b85f2bbe1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_staff_penitence.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_staff_voice_of_telos.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_staff_voice_of_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..fa36ab4a901b0726724892a830aa2e8938909046
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_staff_voice_of_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_storm_fury.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_storm_fury.png
new file mode 100644
index 0000000000000000000000000000000000000000..7e6c98157565cbce62c6ed524eb16fe218a5dba0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_storm_fury.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_stormlash.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_stormlash.png
new file mode 100644
index 0000000000000000000000000000000000000000..218dca14fbea6d8c4fad69785e90afbfd144babf
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_stormlash.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_surefire.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_surefire.png
new file mode 100644
index 0000000000000000000000000000000000000000..7f8515a9dd34462d698ad880ac7bab1073d58856
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_surefire.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_telos_spire_of_power.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_telos_spire_of_power.png
new file mode 100644
index 0000000000000000000000000000000000000000..09f2cffa51aef78d176cfba0034d12e321082fdb
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_telos_spire_of_power.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_thaloren_tree_longbow.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_thaloren_tree_longbow.png
new file mode 100644
index 0000000000000000000000000000000000000000..fb00fa541cad3978ff5230813fab91efa7cf0812
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_thaloren_tree_longbow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_trident_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_trident_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..9bf8a3b7a5b31daeef8c9e8ed48642fc4d76bcd5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_trident_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_umbral_razor.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_umbral_razor.png
new file mode 100644
index 0000000000000000000000000000000000000000..e75e1927e7ec51a02606bf74563d07596127bf63
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_umbral_razor.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_unstoppable_mauler.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_unstoppable_mauler.png
new file mode 100644
index 0000000000000000000000000000000000000000..129935ff849e9109f2d77b757621a340b26746ba
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_unstoppable_mauler.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_voratun_hammer_of_the_deep_bellow.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_voratun_hammer_of_the_deep_bellow.png
new file mode 100644
index 0000000000000000000000000000000000000000..ad1c54014c13b636ea066915a6318e45cc9d1976
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_voratun_hammer_of_the_deep_bellow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_warmaster_gnargs_murderblade.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_warmaster_gnargs_murderblade.png
new file mode 100644
index 0000000000000000000000000000000000000000..bc94274cb73e8779e6c854008960343aa5430635
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_warmaster_gnargs_murderblade.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_whip_of_urh_rok.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_whip_of_urh_rok.png
new file mode 100644
index 0000000000000000000000000000000000000000..dd10f70febbb23dd13972399223e7dd88307088e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_whip_of_urh_rok.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_whip_scorpions_tail.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_whip_scorpions_tail.png
new file mode 100644
index 0000000000000000000000000000000000000000..22a3c3fdafdf4fcce75691698c3ae3fdb41dfb21
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_whip_scorpions_tail.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_writhing_essence_of_nightmares.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_writhing_essence_of_nightmares.png
new file mode 100644
index 0000000000000000000000000000000000000000..db12b52d30677b01612fbd2c2a4cd48c852cf823
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/left_writhing_essence_of_nightmares.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/light_armour_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/light_armour_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..0e7383f1e23b2cfc157620891586c7b3fa82537f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/light_armour_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/malslek_the_accursed_hat.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/malslek_the_accursed_hat.png
new file mode 100644
index 0000000000000000000000000000000000000000..bd613b2742dd95c2eb9b8633e5056504b4fca0d2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/malslek_the_accursed_hat.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/masochism.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/masochism.png
new file mode 100644
index 0000000000000000000000000000000000000000..498f063c1f106aeb764d163a09c932c7f2327c36
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/masochism.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/massive_armour_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/massive_armour_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..d5ffb7ba4c6f312013b29bac9d9a7a7db0792435
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/massive_armour_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/omniscience.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/omniscience.png
new file mode 100644
index 0000000000000000000000000000000000000000..7d7043b074df5775682d4e20a41c7a68495027e0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/omniscience.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/plate_armor_of_the_king.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/plate_armor_of_the_king.png
new file mode 100644
index 0000000000000000000000000000000000000000..3b1fc95d726c2ab12563b43faaffe428acc83fbc
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/plate_armor_of_the_king.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/plate_of_the_blackened_mind.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/plate_of_the_blackened_mind.png
new file mode 100644
index 0000000000000000000000000000000000000000..8ffc6278739caf4b67b0e03b454cbfef97fa7250
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/plate_of_the_blackened_mind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/pouch_of_the_subconscious.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/pouch_of_the_subconscious.png
new file mode 100644
index 0000000000000000000000000000000000000000..4a27477d555038272d155f3554fe5496bba568d1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/pouch_of_the_subconscious.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/quiver_of_domination.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/quiver_of_domination.png
new file mode 100644
index 0000000000000000000000000000000000000000..407272878620c2aad39b30e9e17db2f2a625bccf
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/quiver_of_domination.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/quiver_of_the_sun.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/quiver_of_the_sun.png
new file mode 100644
index 0000000000000000000000000000000000000000..4d8c8cb128afd8ce974ea23c4804a99f565046f1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/quiver_of_the_sun.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/radiance_behind.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/radiance_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..cdd32a4d1867221d8a5b8df8f9d556e0252396de
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/radiance_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/radiance_hood.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/radiance_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..c146a3156042c326c0387815ccf8c5a581217479
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/radiance_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/radiance_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/radiance_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..5670439e95cf779ca45b1fb315acaaf88c52b22b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/radiance_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_1Haxe_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_1Haxe_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..14f58d9d3c2086a42e087edd20970492befee055
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_1Haxe_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_1Hmace_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_1Hmace_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..6534676bb24c11107613de44d8cbc8414a0b7da2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_1Hmace_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_1Hsword_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_1Hsword_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..0f0aa4afd9a9ba4dee9d05f2c16761d0734e679c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_1Hsword_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_2Haxe_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_2Haxe_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..fe1bfaf5970ef4e160f5b54f967b6e958b2050e3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_2Haxe_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_2Hmace_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_2Hmace_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..6fb6aa2f24ea066d9a08e1f18f34ed6db6248e47
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_2Hmace_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_2Hsword_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_2Hsword_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..8422418e4af021c3bf1e5039ca613ca94885ffc9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_2Hsword_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_amethyst_of_sanctuary.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_amethyst_of_sanctuary.png
new file mode 100644
index 0000000000000000000000000000000000000000..39f4265afb215f82b19f819d4516981522404ce6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_amethyst_of_sanctuary.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_awaken_staff_of_absorbtion.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_awaken_staff_of_absorbtion.png
new file mode 100644
index 0000000000000000000000000000000000000000..83836baa1dfd2f481a304636c07edabc6aaa4b52
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_awaken_staff_of_absorbtion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_blighted_maul.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_blighted_maul.png
new file mode 100644
index 0000000000000000000000000000000000000000..9e0f1baff7c39887fc59bf4a40420ea7ee9aedf5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_blighted_maul.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_bloomsoul.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_bloomsoul.png
new file mode 100644
index 0000000000000000000000000000000000000000..3f09c3239ac94021796d5b5ef117353166f2d83a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_bloomsoul.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_borosks_hate.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_borosks_hate.png
new file mode 100644
index 0000000000000000000000000000000000000000..8abb09ef56e9c7d29d568d1f7417ddab1a665405
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_borosks_hate.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_bow_corpsebow.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_bow_corpsebow.png
new file mode 100644
index 0000000000000000000000000000000000000000..77d3898e2d1c5a11be249248310d45c695edc6da
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_bow_corpsebow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_bow_epochs_curve.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_bow_epochs_curve.png
new file mode 100644
index 0000000000000000000000000000000000000000..feecbc3782ee56eff52cadb5b5fa6372aa4e678f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_bow_epochs_curve.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_champions_will.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_champions_will.png
new file mode 100644
index 0000000000000000000000000000000000000000..0e4ab2dc8ccc492731a24fb94d89d861908c0fca
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_champions_will.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_colaryem.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_colaryem.png
new file mode 100644
index 0000000000000000000000000000000000000000..d0315e5b0291510c9133590524fa7451098f3622
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_colaryem.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_core_of_the_forge.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_core_of_the_forge.png
new file mode 100644
index 0000000000000000000000000000000000000000..b28889b2b4a9099345b9dcd6b343ddd7a071a3b6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_core_of_the_forge.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_corpus_2.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_corpus_2.png
new file mode 100644
index 0000000000000000000000000000000000000000..959356588c2a2089ef61c22f0bab70f68f1aab68
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_corpus_2.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_crystal_shard.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_crystal_shard.png
new file mode 100644
index 0000000000000000000000000000000000000000..ad4b45f6b51e0a3535c55b9570343e6770600c4f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_crystal_shard.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_dagger_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_dagger_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..52eb13ddff5dbc4bc2bfd29c88ab3d25f63103ac
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_dagger_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_dream_malleus.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_dream_malleus.png
new file mode 100644
index 0000000000000000000000000000000000000000..a819783e46a7dbb66b4d879af5599e4a2989237c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_dream_malleus.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_eclipse.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_eclipse.png
new file mode 100644
index 0000000000000000000000000000000000000000..3db55a0a668328df2eed98ea813f3711453bbf8c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_eclipse.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_eyals_will.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_eyals_will.png
new file mode 100644
index 0000000000000000000000000000000000000000..b0d74569d2f929515908d10591599857eeb7e57b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_eyals_will.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_eye_of_the_wyrm.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_eye_of_the_wyrm.png
new file mode 100644
index 0000000000000000000000000000000000000000..18f1300c505cefcbf9cdb007f8af48cc53f3a884
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_eye_of_the_wyrm.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_focus_whip.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_focus_whip.png
new file mode 100644
index 0000000000000000000000000000000000000000..b50764231283265bf3285b810777fb808b74c9a9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_focus_whip.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_genocide.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_genocide.png
new file mode 100644
index 0000000000000000000000000000000000000000..ae83ac81c611a74fd7f0f5034085021e0311c2e9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_genocide.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_gravitational_staff.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_gravitational_staff.png
new file mode 100644
index 0000000000000000000000000000000000000000..96913f915cacf025c72966e74751402d8830dde1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_gravitational_staff.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_great_caller.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_great_caller.png
new file mode 100644
index 0000000000000000000000000000000000000000..5b82580fcca9d3d6af12167d4561496f8614c33e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_great_caller.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_guidance.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_guidance.png
new file mode 100644
index 0000000000000000000000000000000000000000..ca9e7cb0f58c89b2906d427c09e5e0cf6ed83194
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_guidance.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_hareskin_sling.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_hareskin_sling.png
new file mode 100644
index 0000000000000000000000000000000000000000..377513206d8716f4d8c0380b56a86cb6fecf75a8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_hareskin_sling.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_hydras_bite.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_hydras_bite.png
new file mode 100644
index 0000000000000000000000000000000000000000..449aa150696ef1399fbd76bc2e7be2a8eda1ee76
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_hydras_bite.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_latafayn.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_latafayn.png
new file mode 100644
index 0000000000000000000000000000000000000000..f66f2367f8c0b30123709bb2182239c064a9ad7e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_latafayn.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_merkuls_second_eye.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_merkuls_second_eye.png
new file mode 100644
index 0000000000000000000000000000000000000000..d0996026838dab70d825ded39f7e18871fd2feac
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_merkuls_second_eye.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_nexus_of_the_way.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_nexus_of_the_way.png
new file mode 100644
index 0000000000000000000000000000000000000000..24dca0284ebcaf14c2d0ccd31ad1547d857483c4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_nexus_of_the_way.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_nithans_force.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_nithans_force.png
new file mode 100644
index 0000000000000000000000000000000000000000..c10ae440befe4f9128b3af65a86c204d790d6666
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_nithans_force.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_obliterator.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_obliterator.png
new file mode 100644
index 0000000000000000000000000000000000000000..0d184a3c6c319c44288ac34e7cf22199703f4808
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_obliterator.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_oozing_heart.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_oozing_heart.png
new file mode 100644
index 0000000000000000000000000000000000000000..9dbc61eba576d85301ba715ab557eb58b6e5c372
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_oozing_heart.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_psionic_fury.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_psionic_fury.png
new file mode 100644
index 0000000000000000000000000000000000000000..a76924062e1f2545b90f728b980d08bfd793fe5c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_psionic_fury.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_rod_of_sarrilon.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_rod_of_sarrilon.png
new file mode 100644
index 0000000000000000000000000000000000000000..d09b4de11a2a484d84b3ea9d0f55ddaf8dbf2bb0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_rod_of_sarrilon.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_sceptre_of_the_archlich.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_sceptre_of_the_archlich.png
new file mode 100644
index 0000000000000000000000000000000000000000..cd8e6641cfa26a716c8c5fca7ff3910098e435e1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_sceptre_of_the_archlich.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_serpents_glare.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_serpents_glare.png
new file mode 100644
index 0000000000000000000000000000000000000000..1601e7c394df43630e9c1dbc60ac8c85a9885940
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_serpents_glare.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_shield_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_shield_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..834316652c7478790aff5e64034f544c9574e693
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_shield_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_skeletal_claw.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_skeletal_claw.png
new file mode 100644
index 0000000000000000000000000000000000000000..1c87448a13bfcb83fdd1bfbced2fb19d40f254a6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_skeletal_claw.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_sling_eldoral_last_resort.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_sling_eldoral_last_resort.png
new file mode 100644
index 0000000000000000000000000000000000000000..943611638a8752b812fbaf40f1a82424385a75d4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_sling_eldoral_last_resort.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_spectral_blade.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_spectral_blade.png
new file mode 100644
index 0000000000000000000000000000000000000000..f841c0087253f9bd811189708cc7ee27c7fb4366
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_spectral_blade.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_spellcrusher.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_spellcrusher.png
new file mode 100644
index 0000000000000000000000000000000000000000..d42e02a3a1f0326f1710afeb869eb2a6124fce87
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_spellcrusher.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_staff_bolbums_big_knocker.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_staff_bolbums_big_knocker.png
new file mode 100644
index 0000000000000000000000000000000000000000..9f495fcff9ffa11ad8c36f77293a0cfac0696af8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_staff_bolbums_big_knocker.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_staff_broken_bottom_telos.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_staff_broken_bottom_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..c4412bf087a09f8b4b56120cb9938a83d21a7dc3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_staff_broken_bottom_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_staff_broken_top_telos.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_staff_broken_top_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..2c493de1320d5525c0c046c12e1bbba7d9c2008d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_staff_broken_top_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_staff_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_staff_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..68e26f8b543a80d73d3940788944038eb354275c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_staff_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_staff_kors_fall.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_staff_kors_fall.png
new file mode 100644
index 0000000000000000000000000000000000000000..004d202db118a5f4bda7852e5733ecf071837e9d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_staff_kors_fall.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_staff_lost_staff_archmage_tarelion.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_staff_lost_staff_archmage_tarelion.png
new file mode 100644
index 0000000000000000000000000000000000000000..067da5f3b1d38749fbe44421f042a1097607823e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_staff_lost_staff_archmage_tarelion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_staff_of_absorbtion.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_staff_of_absorbtion.png
new file mode 100644
index 0000000000000000000000000000000000000000..cc524d1e6e0954373d23f45b98384b3ce7936d1f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_staff_of_absorbtion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_staff_of_arcane_supremacy.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_staff_of_arcane_supremacy.png
new file mode 100644
index 0000000000000000000000000000000000000000..88d35a4af9477199876f339674d08c42c8474d24
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_staff_of_arcane_supremacy.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_staff_of_destruction.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_staff_of_destruction.png
new file mode 100644
index 0000000000000000000000000000000000000000..387299467ce4b12a5c27fd186aaf1e8c12e6e329
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_staff_of_destruction.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_staff_penitence.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_staff_penitence.png
new file mode 100644
index 0000000000000000000000000000000000000000..3fc33f55544d92e018cd355e15ee51ce952771e4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_staff_penitence.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_staff_voice_of_telos.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_staff_voice_of_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..d42bc2908bacbf06ebc9e92ce808a3d342e5759a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_staff_voice_of_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_storm_fury.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_storm_fury.png
new file mode 100644
index 0000000000000000000000000000000000000000..9408669cf7d9c6f2c6f42749773d6dba6acabee1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_storm_fury.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_stormlash.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_stormlash.png
new file mode 100644
index 0000000000000000000000000000000000000000..5703a2cc6ee164b9987baef20e0f8d5d8cad12ec
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_stormlash.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_surefire.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_surefire.png
new file mode 100644
index 0000000000000000000000000000000000000000..eefe647e4e2803f3d3b5c9a7ab2189de0fd9cc6a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_surefire.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_telos_spire_of_power.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_telos_spire_of_power.png
new file mode 100644
index 0000000000000000000000000000000000000000..c15d194230eac9ce57bb185fdb501459367eca0a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_telos_spire_of_power.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_thaloren_tree_longbow.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_thaloren_tree_longbow.png
new file mode 100644
index 0000000000000000000000000000000000000000..1060780b5044aa4217ed59aa733427dce2ac9efb
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_thaloren_tree_longbow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_trident_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_trident_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..a56b7e8126f48b9a98ee97d384c10831d38f1ce6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_trident_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_umbral_razor.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_umbral_razor.png
new file mode 100644
index 0000000000000000000000000000000000000000..889b3ae414da0cfe08b14ba56c38d6ae235ad90c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_umbral_razor.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_unstoppable_mauler.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_unstoppable_mauler.png
new file mode 100644
index 0000000000000000000000000000000000000000..2555313a2289cc8a6881a615f87a155743fffa93
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_unstoppable_mauler.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_voratun_hammer_of_the_deep_bellow.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_voratun_hammer_of_the_deep_bellow.png
new file mode 100644
index 0000000000000000000000000000000000000000..56e6100840f546e5407a27d2c0b0f79034707efc
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_voratun_hammer_of_the_deep_bellow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_warmaster_gnargs_murderblade.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_warmaster_gnargs_murderblade.png
new file mode 100644
index 0000000000000000000000000000000000000000..5a38fb40611964a4e82a7785c749213de6be1db7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_warmaster_gnargs_murderblade.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_whip_of_urh_rok.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_whip_of_urh_rok.png
new file mode 100644
index 0000000000000000000000000000000000000000..97f6429baf52daa8a269ee4a0fcdcc205d89e5df
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_whip_of_urh_rok.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_whip_scorpions_tail.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_whip_scorpions_tail.png
new file mode 100644
index 0000000000000000000000000000000000000000..64c5d8e901c6523d23c30cab335f0f590c449b91
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_whip_scorpions_tail.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_writhing_essence_of_nightmares.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_writhing_essence_of_nightmares.png
new file mode 100644
index 0000000000000000000000000000000000000000..6179f11c1beff27e4f5b97e2c0292d45923da54c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/right_writhing_essence_of_nightmares.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/robe_black_robe.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/robe_black_robe.png
new file mode 100644
index 0000000000000000000000000000000000000000..e08f4cfece16f7c83b732f31b4e1b11c4bacdd8b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/robe_black_robe.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/robe_firewalker.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/robe_firewalker.png
new file mode 100644
index 0000000000000000000000000000000000000000..5a7ae298eb3405e8e2012de4a80da1c9e3254ad8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/robe_firewalker.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/robe_of_force.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/robe_of_force.png
new file mode 100644
index 0000000000000000000000000000000000000000..146ac43be1efc520df830b741810f1046ae68385
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/robe_of_force.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/robe_spider_silk_robe_spydre.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/robe_spider_silk_robe_spydre.png
new file mode 100644
index 0000000000000000000000000000000000000000..91838e024a3cd5e80cdb29c77f2722c27edbd74e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/robe_spider_silk_robe_spydre.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/robe_temporal_augmentation_robe.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/robe_temporal_augmentation_robe.png
new file mode 100644
index 0000000000000000000000000000000000000000..2bc786c58fcb15f1bf8048aa293ecbea8060b126
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/robe_temporal_augmentation_robe.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/robe_vestments_of_the_conclave.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/robe_vestments_of_the_conclave.png
new file mode 100644
index 0000000000000000000000000000000000000000..60969fffc7282246e445889d1992b309112541ba
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/robe_vestments_of_the_conclave.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/robes_of_deflection.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/robes_of_deflection.png
new file mode 100644
index 0000000000000000000000000000000000000000..94649bbe079e5cba71c8dba0fec657fc0d846bc7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/robes_of_deflection.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/scale_mail_of_kroltar.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/scale_mail_of_kroltar.png
new file mode 100644
index 0000000000000000000000000000000000000000..916aa8090e55f5a3d4316b3a19020ad782c537b1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/scale_mail_of_kroltar.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/scorched_boots.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/scorched_boots.png
new file mode 100644
index 0000000000000000000000000000000000000000..8d5eb7292120e2344d8f338c5e091bf9d2627436
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/scorched_boots.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/scorpion_gauntlets.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/scorpion_gauntlets.png
new file mode 100644
index 0000000000000000000000000000000000000000..83d218f266594cffdffa4bc6b6a16615ff816492
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/scorpion_gauntlets.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/serpentine_cloak_behind.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/serpentine_cloak_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..02247534ac7e470d2e4b5bd4d420a1e68833049c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/serpentine_cloak_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/serpentine_cloak_hood.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/serpentine_cloak_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..96c03ea5c14ef6a24d76b5f9b0df2186bc17f86f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/serpentine_cloak_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/serpentine_cloak_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/serpentine_cloak_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..4e69799bf5337a42ec4c9562ccbae7901f07a55f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/serpentine_cloak_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/shifting_boots.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/shifting_boots.png
new file mode 100644
index 0000000000000000000000000000000000000000..e33ee84103dfaa4d025bc5b1740b3b6137eae1fa
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/shifting_boots.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/silk_current.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/silk_current.png
new file mode 100644
index 0000000000000000000000000000000000000000..d2771607e883aab09dce2d4d465a0698055225ce
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/silk_current.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/sludgegrip.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/sludgegrip.png
new file mode 100644
index 0000000000000000000000000000000000000000..18514bede10c9553a82c643165ca20c5bb9be33f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/sludgegrip.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/snow_giant_arm_wraps.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/snow_giant_arm_wraps.png
new file mode 100644
index 0000000000000000000000000000000000000000..943fb8d37ec45dc9982b6c98f08f2c10abe4e04b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/snow_giant_arm_wraps.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/spellhunt_remnants.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/spellhunt_remnants.png
new file mode 100644
index 0000000000000000000000000000000000000000..7de57cbf540f1366b8ea1b6b538503c87f73f51f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/spellhunt_remnants.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/star_shot.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/star_shot.png
new file mode 100644
index 0000000000000000000000000000000000000000..92c8908e11c9a8540c0bc77f924383597928fcdf
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/star_shot.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/storm_bringers_gauntlets.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/storm_bringers_gauntlets.png
new file mode 100644
index 0000000000000000000000000000000000000000..2b89e225d77009be47cca14e9e58ac4b9bfdde73
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/storm_bringers_gauntlets.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/terrasca.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/terrasca.png
new file mode 100644
index 0000000000000000000000000000000000000000..3c989110b6643b14101a197ffdc7ea86bad833ad
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/terrasca.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/the_calm.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/the_calm.png
new file mode 100644
index 0000000000000000000000000000000000000000..bffdd074197e09d67a260689963fb807e29c0ada
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/the_calm.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/the_inner_eye.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/the_inner_eye.png
new file mode 100644
index 0000000000000000000000000000000000000000..0f292395c3c3d893486e957761f3bd0199de3bfa
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/the_inner_eye.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/the_titans_quiver.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/the_titans_quiver.png
new file mode 100644
index 0000000000000000000000000000000000000000..f4373904a4afd93a1a28c8538efc6b9dcef927c4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/the_titans_quiver.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/the_untouchable.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/the_untouchable.png
new file mode 100644
index 0000000000000000000000000000000000000000..02cafdd05c8a32473e06208caf4d4b38da517876
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/the_untouchable.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/the_warped_boots.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/the_warped_boots.png
new file mode 100644
index 0000000000000000000000000000000000000000..7bf705748e723491c6bbaaf07f369c177cb1d144
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/the_warped_boots.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/unbreakable_greaves.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/unbreakable_greaves.png
new file mode 100644
index 0000000000000000000000000000000000000000..b1e6a31f8ee7b29d5411af7782d47db25588ef8e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/unbreakable_greaves.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/ureslaks_molted_scales_behind.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/ureslaks_molted_scales_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..cc2a0e67c2961a2cba73b0deccb573c8da13893f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/ureslaks_molted_scales_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/ureslaks_molted_scales_hood.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/ureslaks_molted_scales_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..fa23c8e428a8b1f761f9f1af2fe2773bd8f36e28
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/ureslaks_molted_scales_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/ureslaks_molted_scales_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/ureslaks_molted_scales_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..8602fe97f6ed171670418c752491f5837acd5d09
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/ureslaks_molted_scales_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/void_quiver.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/void_quiver.png
new file mode 100644
index 0000000000000000000000000000000000000000..6a8ecbc914585f384fe920069d164afaa5203c02
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/void_quiver.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/wanderers_rest.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/wanderers_rest.png
new file mode 100644
index 0000000000000000000000000000000000000000..82313946fe1647d666b345aac7294e184ed8c52b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/wanderers_rest.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/wind_worn_shot.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/wind_worn_shot.png
new file mode 100644
index 0000000000000000000000000000000000000000..21d60cb3491808ce6c2db72aa25eb25275e511ce
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/wind_worn_shot.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/wizard_hat_of_arcane_understanding.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/wizard_hat_of_arcane_understanding.png
new file mode 100644
index 0000000000000000000000000000000000000000..771c849ffd9600a8709b4f0dd628793753895cc7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/wizard_hat_of_arcane_understanding.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/wooden_cuirass.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/wooden_cuirass.png
index 674cd6cf6dbac3f7ec86b88eb8a02c1bc48c1898..353d24088cfb50460fe4732bc1e22ea1b5f83874 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/wooden_cuirass.png and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/wooden_cuirass.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/wrap_of_stone_behind.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/wrap_of_stone_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..363464e66119e0064ae9a074dcb04351444aaaa3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/wrap_of_stone_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/wrap_of_stone_hood.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/wrap_of_stone_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..2ce7b65574ced2abbb81c9aad98a8bb012dfb126
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/wrap_of_stone_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/wrap_of_stone_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/wrap_of_stone_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..ae1734a104666f80a95d5b104652c3cb6d350483
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/wrap_of_stone_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/wyrmbreath.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/wyrmbreath.png
new file mode 100644
index 0000000000000000000000000000000000000000..cce40db73ca4036612d5436d318082d1a53c1a4e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/wyrmbreath.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/yaldan_baoth.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/yaldan_baoth.png
new file mode 100644
index 0000000000000000000000000000000000000000..c494dbe0ed6777733d0a947e59048ef0f6f3af4d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/yaldan_baoth.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/yeek_fur_robe.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/yeek_fur_robe.png
new file mode 100644
index 0000000000000000000000000000000000000000..ed711df8c8c36c5ff3038d33070b0ec81580edbc
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/special/yeek_fur_robe.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/upper_body_25.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/upper_body_25.png
index 6dbce3e525d11cbcac7dc65edf958341354598b1..0c01b7325ad8b785eb645fba6c6d80d386d67670 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/ghoul/upper_body_25.png and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/upper_body_25.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/upper_body_29.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/upper_body_29.png
new file mode 100644
index 0000000000000000000000000000000000000000..070790914b15b23a737d3784e274d1c4cded0c8a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/upper_body_29.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/upper_body_30.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/upper_body_30.png
new file mode 100644
index 0000000000000000000000000000000000000000..9133b4179040123de12f3d036d140c20de2dbeaa
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/upper_body_30.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/upper_body_31.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/upper_body_31.png
new file mode 100644
index 0000000000000000000000000000000000000000..61511857abf4609f50e0e642e33d4bb43522abbe
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/upper_body_31.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/upper_body_32.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/upper_body_32.png
new file mode 100644
index 0000000000000000000000000000000000000000..9b2acf7696933d918a88ef36ba2d0f6523c26b7b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/upper_body_32.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/upper_body_33.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/upper_body_33.png
new file mode 100644
index 0000000000000000000000000000000000000000..c520afadccd53236126384add3074b8d8df83302
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/upper_body_33.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/upper_body_34.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/upper_body_34.png
new file mode 100644
index 0000000000000000000000000000000000000000..0b2670fe946f5516d892e1f265b23440f040987a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/upper_body_34.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/upper_body_35.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/upper_body_35.png
new file mode 100644
index 0000000000000000000000000000000000000000..9b108e8d251c340770a47e24054657e485e12c42
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/upper_body_35.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/upper_body_36.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/upper_body_36.png
new file mode 100644
index 0000000000000000000000000000000000000000..75c1f763973ea57da9e0e6e4028ee763390633a4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/upper_body_36.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/upper_body_37.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/upper_body_37.png
new file mode 100644
index 0000000000000000000000000000000000000000..034be1ed50d0aa1da17ed518cb7310004a970db4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/upper_body_37.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/ghoul/upper_body_38.png b/game/modules/tome/data/gfx/shockbolt/player/ghoul/upper_body_38.png
new file mode 100644
index 0000000000000000000000000000000000000000..f1a8de3e790ffa5616b77e15610a4c711ea30fe9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/ghoul/upper_body_38.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/cloak_behind_07.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/cloak_behind_07.png
new file mode 100644
index 0000000000000000000000000000000000000000..53527e0f06b297a2cbace4d9a437e2551becaf11
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/cloak_behind_07.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/cloak_behind_08.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/cloak_behind_08.png
new file mode 100644
index 0000000000000000000000000000000000000000..842a70c7e9184e5b0ba9c77c0d78bb92d4f9289e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/cloak_behind_08.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/cloak_behind_09.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/cloak_behind_09.png
new file mode 100644
index 0000000000000000000000000000000000000000..7c5437ac1d7bcb90c27dd6236077bb1571ebb9dd
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/cloak_behind_09.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/cloak_hood_07.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/cloak_hood_07.png
new file mode 100644
index 0000000000000000000000000000000000000000..6eddaecd48e6121b76c25ef62ee08563c8b6cef5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/cloak_hood_07.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/cloak_hood_08.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/cloak_hood_08.png
new file mode 100644
index 0000000000000000000000000000000000000000..7fc18cdb3efcf0cc2c7215a465d88e81f36b6af8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/cloak_hood_08.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/cloak_hood_09.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/cloak_hood_09.png
new file mode 100644
index 0000000000000000000000000000000000000000..8c6a556cb87a3141f8bcefcfbefc55d6bdde6a01
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/cloak_hood_09.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/cloak_shoulder_07.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/cloak_shoulder_07.png
new file mode 100644
index 0000000000000000000000000000000000000000..e906fb6ae4f6eaab835ed5d5b4d13d74323b91dd
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/cloak_shoulder_07.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/cloak_shoulder_08.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/cloak_shoulder_08.png
new file mode 100644
index 0000000000000000000000000000000000000000..9c47224494ca8387897369f151c5ff9c7f1eb10c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/cloak_shoulder_08.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/cloak_shoulder_09.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/cloak_shoulder_09.png
new file mode 100644
index 0000000000000000000000000000000000000000..e2c4980dbd1297ce209d3bb7a0bac7627c400667
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/cloak_shoulder_09.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/feet_10.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/feet_10.png
new file mode 100644
index 0000000000000000000000000000000000000000..be1c0cf59aa9cc9898146cd11e23a28ff752be7c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/feet_10.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/feet_11.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/feet_11.png
new file mode 100644
index 0000000000000000000000000000000000000000..1c0736af59af9ab9230e34db82c76412422191ef
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/feet_11.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/gembag_01.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/gembag_01.png
new file mode 100644
index 0000000000000000000000000000000000000000..1a6228a0d5ce1033821d2dd76a175ea2bb8c3b1b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/gembag_01.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/gembag_02.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/gembag_02.png
new file mode 100644
index 0000000000000000000000000000000000000000..5ca39f58119dc13fb18b1b3d46c1204433b3e6a1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/gembag_02.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/gembag_03.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/gembag_03.png
new file mode 100644
index 0000000000000000000000000000000000000000..d01a9d39d712eabf3cf164f0d05109130fd1c06a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/gembag_03.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/gembag_04.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/gembag_04.png
new file mode 100644
index 0000000000000000000000000000000000000000..aac2322e81a01c6c37f7acffa0593229d66fe9bb
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/gembag_04.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/gembag_05.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/gembag_05.png
new file mode 100644
index 0000000000000000000000000000000000000000..7ed1b5bf4e20cc07442c0db2af1809fec3c3b181
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/gembag_05.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/hands_08.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/hands_08.png
new file mode 100644
index 0000000000000000000000000000000000000000..9126fb65f8266e7a387a9beffb56a037882d5f90
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/hands_08.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/hands_09.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/hands_09.png
new file mode 100644
index 0000000000000000000000000000000000000000..057dff9d03260d88d70aba98ad92b5da081f1790
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/hands_09.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/head_19.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/head_19.png
new file mode 100644
index 0000000000000000000000000000000000000000..2e1c32eef1334fcf30c035b58bd751b5cecbc2ff
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/head_19.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/head_20.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/head_20.png
new file mode 100644
index 0000000000000000000000000000000000000000..725c9f77f38df1560f680321d1ca89dae4948070
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/head_20.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/head_21.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/head_21.png
new file mode 100644
index 0000000000000000000000000000000000000000..06eaf3e2b24e363cc98eb6173145a98677e2bf2e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/head_21.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/head_22.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/head_22.png
new file mode 100644
index 0000000000000000000000000000000000000000..937e6d195e272be00a699397627e3e0e780266d3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/head_22.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/head_23.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/head_23.png
new file mode 100644
index 0000000000000000000000000000000000000000..8ce5dfaaceede476d16c17bae158d390d5ed4020
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/head_23.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/lower_body_14.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/lower_body_14.png
new file mode 100644
index 0000000000000000000000000000000000000000..5c97548192fb5ec771c33c2c3ffa1e76f9cb52f8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/lower_body_14.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/lower_body_15.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/lower_body_15.png
new file mode 100644
index 0000000000000000000000000000000000000000..206e3166434ecbf17eb28ed9a33a2b99ba8eee34
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/lower_body_15.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/lower_body_16.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/lower_body_16.png
new file mode 100644
index 0000000000000000000000000000000000000000..fcd632586b002f4f4c52c7f5ed1b3bd73a372b4a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/lower_body_16.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/lower_body_17.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/lower_body_17.png
new file mode 100644
index 0000000000000000000000000000000000000000..fa20154e385e847acb515f76431d1cbc4c9cf99d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/lower_body_17.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/lower_body_18.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/lower_body_18.png
new file mode 100644
index 0000000000000000000000000000000000000000..e4cae85b63697ba72ee9b307393b77e044e59ca2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/lower_body_18.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/lower_body_19.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/lower_body_19.png
new file mode 100644
index 0000000000000000000000000000000000000000..fc6717fc363ae1e5f6bf08579cac9ce9535565f0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/lower_body_19.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/quiver_01.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/quiver_01.png
new file mode 100644
index 0000000000000000000000000000000000000000..38a003c133c9f1221333ab28770aaf654d74f57a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/quiver_01.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/quiver_02.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/quiver_02.png
new file mode 100644
index 0000000000000000000000000000000000000000..938b7d869ad8104320e117513efde30c802d78bd
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/quiver_02.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/quiver_03.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/quiver_03.png
new file mode 100644
index 0000000000000000000000000000000000000000..fb05fc15c10b16bbaeb57c03d1b8a7a305e31e5e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/quiver_03.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/quiver_04.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/quiver_04.png
new file mode 100644
index 0000000000000000000000000000000000000000..226fb3647b34e20055f6d8752d4975aa29255117
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/quiver_04.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/quiver_05.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/quiver_05.png
new file mode 100644
index 0000000000000000000000000000000000000000..a69afa9e2f20c551d85ec7b43870d4b1e6ccb1ad
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/quiver_05.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/shotbag_01.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/shotbag_01.png
new file mode 100644
index 0000000000000000000000000000000000000000..cec50d1a270142a988299f2d17cb002a702245b0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/shotbag_01.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/shotbag_02.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/shotbag_02.png
new file mode 100644
index 0000000000000000000000000000000000000000..c2ee57e3fe35a6e2119064d29c713e9cb58f1018
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/shotbag_02.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/shotbag_03.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/shotbag_03.png
new file mode 100644
index 0000000000000000000000000000000000000000..6f151627c75063c517a2afc3125c3e776652b238
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/shotbag_03.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/shotbag_04.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/shotbag_04.png
new file mode 100644
index 0000000000000000000000000000000000000000..d6227d528bd99b100a653adf17bd91e11131c06f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/shotbag_04.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/shotbag_05.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/shotbag_05.png
new file mode 100644
index 0000000000000000000000000000000000000000..2fd5a152eceb69fad2adba8b1d0320817a74a6b9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/shotbag_05.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/aether_walk.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/aether_walk.png
new file mode 100644
index 0000000000000000000000000000000000000000..18f609345e243a179c0ddca14c5ae3826407f2f6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/aether_walk.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/arkuls_seige_arrows.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/arkuls_seige_arrows.png
new file mode 100644
index 0000000000000000000000000000000000000000..61d76c561ffeae03bb2c7b39b80394dd5dfad50f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/arkuls_seige_arrows.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/armor_chromatic_harness.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/armor_chromatic_harness.png
new file mode 100644
index 0000000000000000000000000000000000000000..5cef862663e9281fcfc4ec6020454497efee92ee
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/armor_chromatic_harness.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/armor_cuirass_of_the_thronesmen.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/armor_cuirass_of_the_thronesmen.png
new file mode 100644
index 0000000000000000000000000000000000000000..9f6ebf174c0acf8530eb2325ca5444f118fe9037
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/armor_cuirass_of_the_thronesmen.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/armor_natures_blessing.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/armor_natures_blessing.png
new file mode 100644
index 0000000000000000000000000000000000000000..21400189d52b72b564d63d18ed43703534da808f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/armor_natures_blessing.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/armor_plate_borfasts_cage.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/armor_plate_borfasts_cage.png
new file mode 100644
index 0000000000000000000000000000000000000000..1471d944570e068596581dd89e99c2d2e3df80d6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/armor_plate_borfasts_cage.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/armor_rogue_plight.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/armor_rogue_plight.png
new file mode 100644
index 0000000000000000000000000000000000000000..55e153f3767741987cfc652a3a5953bb74d3b35a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/armor_rogue_plight.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/behemoth_skin.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/behemoth_skin.png
new file mode 100644
index 0000000000000000000000000000000000000000..fa6dd028370f77170073f4acda67351575e87b00
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/behemoth_skin.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/black_cloak_behind.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/black_cloak_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..cbb8d855075d62bcd192f46d3a665618f28c35c5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/black_cloak_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/black_cloak_hood.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/black_cloak_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..b717ba74b913037696049265c7ad22b0c15accd0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/black_cloak_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/black_cloak_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/black_cloak_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..454538572c081f9279ad58c74ba088de5e7f8e63
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/black_cloak_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/boots_edens_guile.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/boots_edens_guile.png
new file mode 100644
index 0000000000000000000000000000000000000000..02babafcf6295e09bab34ad612ffa8ba2213e794
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/boots_edens_guile.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/boots_of_the_hunter.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/boots_of_the_hunter.png
new file mode 100644
index 0000000000000000000000000000000000000000..9b2ecc960e338903d20a5d5870d5231ac07b2288
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/boots_of_the_hunter.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/breath_of_eyal.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/breath_of_eyal.png
new file mode 100644
index 0000000000000000000000000000000000000000..7e4f6b5f02b1a680b0f5a6c1fda9d56bcde3d44f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/breath_of_eyal.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/cinderfeet.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/cinderfeet.png
new file mode 100644
index 0000000000000000000000000000000000000000..f4ca816920ff6a0e019a7e557cd2c93638c501c5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/cinderfeet.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/cloak_threads_of_fate_behind.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/cloak_threads_of_fate_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..4cc9955b276919298c6d82997c06ba6cf6293c02
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/cloak_threads_of_fate_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/cloak_threads_of_fate_hood.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/cloak_threads_of_fate_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..579eb0d88cf95f7429f60d1dcc58eee639a63a8a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/cloak_threads_of_fate_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/cloak_threads_of_fate_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/cloak_threads_of_fate_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..a1e2119cf9b34f3637f7e9efb6365967074e6e02
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/cloak_threads_of_fate_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/cloak_winds_whisper_behind.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/cloak_winds_whisper_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..656aa54d0726b5b4061b74f97f71c580fc1d66b6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/cloak_winds_whisper_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/cloak_winds_whisper_hood.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/cloak_winds_whisper_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..d92dec517966f55f796eb0ac92849b1053e84687
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/cloak_winds_whisper_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/cloak_winds_whisper_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/cloak_winds_whisper_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..c41ed52da21275c361293fd48fd84145ba6b0be9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/cloak_winds_whisper_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/cloth_armour_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/cloth_armour_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..4a4c9569c45189869ba48b634d4b8d1f4b4d138c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/cloth_armour_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/cloth_of_dreams_behind.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/cloth_of_dreams_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..1f23f7eda9b708a251329f0e7477e6f80770eacf
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/cloth_of_dreams_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/cloth_of_dreams_hood.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/cloth_of_dreams_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..d126131c9b13ceb083588ae92955326a8450398f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/cloth_of_dreams_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/cloth_of_dreams_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/cloth_of_dreams_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..4177a79a51309f0c2339933bcd86a2736b0443e9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/cloth_of_dreams_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/corrupted_gaze.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/corrupted_gaze.png
new file mode 100644
index 0000000000000000000000000000000000000000..b2a0365a46a14ad3f91742b4eba75af380b18b6f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/corrupted_gaze.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/crimson_robe.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/crimson_robe.png
new file mode 100644
index 0000000000000000000000000000000000000000..2ff850fa1c639664e0dd9bb7ec2e52d067e8d418
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/crimson_robe.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/crown_of_burning_pain.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/crown_of_burning_pain.png
new file mode 100644
index 0000000000000000000000000000000000000000..e9c078be93466fe371d3ca5c4b6bbd318356f889
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/crown_of_burning_pain.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/crown_of_command.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/crown_of_command.png
new file mode 100644
index 0000000000000000000000000000000000000000..12fde3f18b5485b62794f816890db6d6ac12037f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/crown_of_command.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/crown_of_eternal_night.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/crown_of_eternal_night.png
new file mode 100644
index 0000000000000000000000000000000000000000..c4d1e322e0ae0909b3efdf9d3c27c65ddb2db3a5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/crown_of_eternal_night.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/crown_of_the_elements.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/crown_of_the_elements.png
new file mode 100644
index 0000000000000000000000000000000000000000..cc4e930b85604066e889de40d880e763435ad149
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/crown_of_the_elements.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/crystles_astral_bindings.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/crystles_astral_bindings.png
new file mode 100644
index 0000000000000000000000000000000000000000..0838748756cef0dbb0269ff91195b9d85b93d81a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/crystles_astral_bindings.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/dakhtuns_gauntlets.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/dakhtuns_gauntlets.png
new file mode 100644
index 0000000000000000000000000000000000000000..99e878e7a0cef3e2eb56708724e251826237e555
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/dakhtuns_gauntlets.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/deaths_embrace.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/deaths_embrace.png
new file mode 100644
index 0000000000000000000000000000000000000000..b19aa262302c347a3086ffc4b1e4264b2a37979b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/deaths_embrace.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/decayed_visage.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/decayed_visage.png
new file mode 100644
index 0000000000000000000000000000000000000000..05b84528e0c757ec3527392ad04df01fb4bf531f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/decayed_visage.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/destalas_scales_behind.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/destalas_scales_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..07b45ead77412e2bd9345e29d3b1ede5b02e2cd8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/destalas_scales_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/destalas_scales_whisper_hood.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/destalas_scales_whisper_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..77534a5e02820e6ef7480addea3d9ee6132692f3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/destalas_scales_whisper_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/destalas_scales_whisper_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/destalas_scales_whisper_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..97451acf99001fc3e4ae144c7256c654f627eedf
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/destalas_scales_whisper_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/diadem_alettas_diadem.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/diadem_alettas_diadem.png
new file mode 100644
index 0000000000000000000000000000000000000000..231b077abb4e13eebaba849ade834462234da91c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/diadem_alettas_diadem.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/dragon_helm_of_kroltar.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/dragon_helm_of_kroltar.png
new file mode 100644
index 0000000000000000000000000000000000000000..076b19210ea64a2bc882cb3b92aba06d23137410
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/dragon_helm_of_kroltar.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/dragonskull_helmet.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/dragonskull_helmet.png
new file mode 100644
index 0000000000000000000000000000000000000000..fe65ccff2911b9b2e5e152e5e155e9a2ba347e36
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/dragonskull_helmet.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/eel_skin_armor.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/eel_skin_armor.png
new file mode 100644
index 0000000000000000000000000000000000000000..2433454e08a47eb4b92044150c1aac5b27d73867
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/eel_skin_armor.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/ethereal_embrace_behind.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/ethereal_embrace_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..b93d42908f8d36271d05b2178df1ec1ddf9e7e1f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/ethereal_embrace_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/ethereal_embrace_hood.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/ethereal_embrace_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..d80941a92962aef8c0c318f453100bbcffc5aa18
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/ethereal_embrace_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/ethereal_embrace_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/ethereal_embrace_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..c21a55ac3cf7f6ebd83f9eb31a3084f84effeffe
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/ethereal_embrace_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/evermoss_robe.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/evermoss_robe.png
new file mode 100644
index 0000000000000000000000000000000000000000..940d7a0d057e0a7d67cdb7f7d2feb54fc0583da7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/evermoss_robe.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/eye_of_the_forest.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/eye_of_the_forest.png
new file mode 100644
index 0000000000000000000000000000000000000000..81854f75f44bd87cf4bad658103ef0772cd7a7d9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/eye_of_the_forest.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/fist_of_the_destroyer.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/fist_of_the_destroyer.png
new file mode 100644
index 0000000000000000000000000000000000000000..3ec1c98aa580a1e9e1baa1e91386318a44119057
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/fist_of_the_destroyer.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/frost_treads.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/frost_treads.png
new file mode 100644
index 0000000000000000000000000000000000000000..400e009b27665263585647e9975b0fa7422f92af
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/frost_treads.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/frozen_shards.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/frozen_shards.png
new file mode 100644
index 0000000000000000000000000000000000000000..a4df292f7ec858e46f4a2b1b3a7727b2fff3acb0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/frozen_shards.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/frozen_shroud_behind.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/frozen_shroud_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..598e920e09699ef67901872edc574d15838a084f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/frozen_shroud_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/frozen_shroud_hood.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/frozen_shroud_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..49e86ccbc7e379ac0742c7b6bad9b73a0dc2e2e9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/frozen_shroud_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/frozen_shroud_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/frozen_shroud_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..e73eace40152282af66b93b077dc0e8e40663d35
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/frozen_shroud_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/gauntlets_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/gauntlets_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..e77ef6da02c470c6ba3fe0cce33eaadbf616315d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/gauntlets_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/gloves_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/gloves_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..55823a330e37ddfc2aff6e3045cfb32bf6601065
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/gloves_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/gloves_flamewrought.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/gloves_flamewrought.png
new file mode 100644
index 0000000000000000000000000000000000000000..9a7b4f790c8a437baeea0977a76e8d5e056b454c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/gloves_flamewrought.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/gloves_of_the_firm_hand.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/gloves_of_the_firm_hand.png
new file mode 100644
index 0000000000000000000000000000000000000000..4b6975be5fc64dc3e666abd26a3300655c05c6d1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/gloves_of_the_firm_hand.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/grip_of_death.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/grip_of_death.png
index fef506c30bd0cec5882f1588f478027ab4f532ac..1e1a45f7b0286866cb394860bb22790ecf635a65 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/grip_of_death.png and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/grip_of_death.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/guise_of_the_hated_behind.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/guise_of_the_hated_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..d05cf3073f87f8bf869649300defd18796b1a848
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/guise_of_the_hated_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/guise_of_the_hated_hood.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/guise_of_the_hated_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..0a689a892e3d3e8878384a685ff78614eff5419f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/guise_of_the_hated_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/guise_of_the_hated_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/guise_of_the_hated_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..d0372cb9da538118adc7264d29a3876986fdad7b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/guise_of_the_hated_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/hand_of_the_worldshaper.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/hand_of_the_worldshaper.png
new file mode 100644
index 0000000000000000000000000000000000000000..3f5740e792eb2bd55e7d489b703d1bba99989826
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/hand_of_the_worldshaper.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/harkor_zun_gauntlets.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/harkor_zun_gauntlets.png
new file mode 100644
index 0000000000000000000000000000000000000000..90b670be59a12d7693040a21b296c288c72e8a9d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/harkor_zun_gauntlets.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/heavy_armour_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/heavy_armour_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..0453ad86012e84554d0346517e34a148a865f36e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/heavy_armour_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/helm_of_garkul.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/helm_of_garkul.png
new file mode 100644
index 0000000000000000000000000000000000000000..e3f958d6dcbe9df57547292786f0a8dda453445a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/helm_of_garkul.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/helm_of_the_dwarven_emperors.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/helm_of_the_dwarven_emperors.png
new file mode 100644
index 0000000000000000000000000000000000000000..692acbc1e7879fe281627b9b73fe26cd587db119
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/helm_of_the_dwarven_emperors.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/hornet_stingers.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/hornet_stingers.png
new file mode 100644
index 0000000000000000000000000000000000000000..e1a0ca45ab63fa1983dbbb75de087cd4b167328f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/hornet_stingers.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/iron_mail_of_bloodletting.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/iron_mail_of_bloodletting.png
new file mode 100644
index 0000000000000000000000000000000000000000..4074278c81ffdc8dd0b5af51e33407e9efe8a5d2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/iron_mail_of_bloodletting.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_1Haxe_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_1Haxe_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..20ff1189a9c503462b011a7ea8f3f5bd108614e3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_1Haxe_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_1Hmace_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_1Hmace_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..99438352da0ad585186e997052d7c84a4164778f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_1Hmace_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_1Hsword_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_1Hsword_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..4ff8e279d6a8ff3259f981a43d21265be404bfeb
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_1Hsword_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_2Haxe_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_2Haxe_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..b371f04b01b974b3bbe01cf5d0073e8ed9a8e40b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_2Haxe_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_2Hmace_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_2Hmace_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..82b94e7be2f3da097bba297e7ce4a08ea69faa1c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_2Hmace_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_2Hsword_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_2Hsword_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..840708ca19acfc5a1e86b04035f8715409317ead
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_2Hsword_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_amethyst_of_sanctuary.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_amethyst_of_sanctuary.png
new file mode 100644
index 0000000000000000000000000000000000000000..15579f2d654e46bfeafb91b471b18a3df65c4741
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_amethyst_of_sanctuary.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_awaken_staff_of_absorbtion.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_awaken_staff_of_absorbtion.png
new file mode 100644
index 0000000000000000000000000000000000000000..883b139715e94d4fd84c781f0595f65f710bc6f6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_awaken_staff_of_absorbtion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_blighted_maul.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_blighted_maul.png
new file mode 100644
index 0000000000000000000000000000000000000000..a7ee4f5bb156502683d3bd5845c93f6d2b6ce178
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_blighted_maul.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_bloomsoul.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_bloomsoul.png
new file mode 100644
index 0000000000000000000000000000000000000000..ccc209d61e59229e3904c43705b16c8e735395ac
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_bloomsoul.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_borosks_hate.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_borosks_hate.png
new file mode 100644
index 0000000000000000000000000000000000000000..72d15e6b457d5497c2fff309c59f63fe4a5a4bea
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_borosks_hate.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_bow_corpsebow.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_bow_corpsebow.png
new file mode 100644
index 0000000000000000000000000000000000000000..32f8d2517034fa4a2211eb6610cb616df8d54f88
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_bow_corpsebow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_bow_epochs_curve.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_bow_epochs_curve.png
new file mode 100644
index 0000000000000000000000000000000000000000..66b22cb04bbcd69c1bba9a9b3f6ba6b41debcbe4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_bow_epochs_curve.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_champions_will.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_champions_will.png
new file mode 100644
index 0000000000000000000000000000000000000000..03a02534e5183a4a5cd3a629be81bbb965dc820e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_champions_will.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_colaryem.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_colaryem.png
new file mode 100644
index 0000000000000000000000000000000000000000..c8550ca2fd0e2641078bb068cefa19a52c092579
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_colaryem.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_core_of_the_forge.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_core_of_the_forge.png
new file mode 100644
index 0000000000000000000000000000000000000000..1d12ec5d0888203211bd18be0f21633d41352291
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_core_of_the_forge.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_corpus_2.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_corpus_2.png
new file mode 100644
index 0000000000000000000000000000000000000000..1852ae5848ed6217c6c18403285c948614d92d1c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_corpus_2.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_crystal_shard.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_crystal_shard.png
new file mode 100644
index 0000000000000000000000000000000000000000..b185c8095189d57e16bfe02214b50f17d6cfa988
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_crystal_shard.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_dagger_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_dagger_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..5bbbd38e0601e676b45342e12c223c7bfec3d4bd
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_dagger_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_dream_malleus.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_dream_malleus.png
new file mode 100644
index 0000000000000000000000000000000000000000..0d423dec58ce94e32dce3e75a4c811565f7f5865
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_dream_malleus.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_eclipse.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_eclipse.png
new file mode 100644
index 0000000000000000000000000000000000000000..424982fbe36474a15b75e56b2dd99777c5a72cb4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_eclipse.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_eyals_will.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_eyals_will.png
new file mode 100644
index 0000000000000000000000000000000000000000..ef744d693316cd06073f78f42dfd8731b2763b98
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_eyals_will.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_eye_of_the_wyrm.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_eye_of_the_wyrm.png
new file mode 100644
index 0000000000000000000000000000000000000000..54ad08ecfc7bd4cd2e51e15b85f950a76fe8580d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_eye_of_the_wyrm.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_focus_whip.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_focus_whip.png
new file mode 100644
index 0000000000000000000000000000000000000000..3b4795e1fc1a7e80d9efe8b620b2a42ad44fb6c2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_focus_whip.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_genocide.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_genocide.png
new file mode 100644
index 0000000000000000000000000000000000000000..a644d880ee02ce6927831f04a5abc90bf9f5fdbe
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_genocide.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_gravitational_staff.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_gravitational_staff.png
new file mode 100644
index 0000000000000000000000000000000000000000..4a07fcda22e63db09e08d3878ca9d783832692f9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_gravitational_staff.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_great_caller.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_great_caller.png
new file mode 100644
index 0000000000000000000000000000000000000000..ed768285bc8d2d3d55c2ca5b05746956140b8172
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_great_caller.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_guidance.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_guidance.png
new file mode 100644
index 0000000000000000000000000000000000000000..cbbcc0652ae781e39ef05cd65b9cce311bbe69a2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_guidance.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_hareskin_sling.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_hareskin_sling.png
new file mode 100644
index 0000000000000000000000000000000000000000..8a983349fbdd3a103c9454a8920f578d64249de8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_hareskin_sling.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_hydras_bite.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_hydras_bite.png
new file mode 100644
index 0000000000000000000000000000000000000000..06f8a2a0aa55e8f8ff3edef2bac4574396583cd9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_hydras_bite.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_latafayn.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_latafayn.png
new file mode 100644
index 0000000000000000000000000000000000000000..677b4f89f378eb35e5ce1b63ee3fffe787e264dd
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_latafayn.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_merkuls_second_eye.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_merkuls_second_eye.png
new file mode 100644
index 0000000000000000000000000000000000000000..2bf55d90b1a1127ba83e902c61b070007d6d9074
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_merkuls_second_eye.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_nexus_of_the_way.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_nexus_of_the_way.png
new file mode 100644
index 0000000000000000000000000000000000000000..2524f34f6ace1d3c4b76ea568eba4895f217b98f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_nexus_of_the_way.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_nithans_force.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_nithans_force.png
new file mode 100644
index 0000000000000000000000000000000000000000..2cfbe095bc62c432597e84077f4e7d0029fc4388
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_nithans_force.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_obliterator.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_obliterator.png
new file mode 100644
index 0000000000000000000000000000000000000000..820c21a004faae72a7a006e9a9451fb9a0dc74aa
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_obliterator.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_oozing_heart.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_oozing_heart.png
new file mode 100644
index 0000000000000000000000000000000000000000..3a960dacd96dd575ca839995658a22f1c5bfaa4d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_oozing_heart.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_psionic_fury.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_psionic_fury.png
new file mode 100644
index 0000000000000000000000000000000000000000..8f84ea3fa99509314bc984134236f904e9eb7005
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_psionic_fury.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_rod_of_sarrilon.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_rod_of_sarrilon.png
new file mode 100644
index 0000000000000000000000000000000000000000..7ff328689354cbff8fef77a320007e9605497c5b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_rod_of_sarrilon.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_sceptre_of_the_archlich.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_sceptre_of_the_archlich.png
new file mode 100644
index 0000000000000000000000000000000000000000..1258f914115945b2b8cf09caab89347a82ce4682
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_sceptre_of_the_archlich.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_serpents_glare.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_serpents_glare.png
new file mode 100644
index 0000000000000000000000000000000000000000..07cfd4b0eba44aae7c6d27bc7eb951627907bb4b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_serpents_glare.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_shield_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_shield_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..94ba9af840169d3bf0d4af85fc7136b5d7c57b44
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_shield_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_skeletal_claw.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_skeletal_claw.png
new file mode 100644
index 0000000000000000000000000000000000000000..7e6ba46e80101943f4e94ca5648f863d47e30f88
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_skeletal_claw.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_sling_eldoral_last_resort.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_sling_eldoral_last_resort.png
new file mode 100644
index 0000000000000000000000000000000000000000..7e7d494472541b2b4ca56aa11d3248a873b736de
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_sling_eldoral_last_resort.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_spectral_blade.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_spectral_blade.png
new file mode 100644
index 0000000000000000000000000000000000000000..ea5917aaee6145752a45017e76d006dd67b61d57
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_spectral_blade.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_spellcrusher.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_spellcrusher.png
new file mode 100644
index 0000000000000000000000000000000000000000..45b70f89c5c16c9a6b0764b48fb3a5cbf3e9dc0d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_spellcrusher.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_staff_bolbums_big_knocker.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_staff_bolbums_big_knocker.png
new file mode 100644
index 0000000000000000000000000000000000000000..21ca6920b0428070265c65901cc137cffb723b85
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_staff_bolbums_big_knocker.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_staff_broken_bottom_telos.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_staff_broken_bottom_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..afacde0c1cedff0b7422ecf1ce306d385d048db8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_staff_broken_bottom_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_staff_broken_top_telos.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_staff_broken_top_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..6d98a43310511995a06380aded0d6eb13a7a98a0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_staff_broken_top_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_staff_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_staff_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..8549ca1a9a23ff7bc1ca43dac468ce9e3f8a2ac9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_staff_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_staff_kors_fall.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_staff_kors_fall.png
new file mode 100644
index 0000000000000000000000000000000000000000..54baf560ab83f254dba3a84baf07dadf448e9698
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_staff_kors_fall.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_staff_lost_staff_archmage_tarelion.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_staff_lost_staff_archmage_tarelion.png
new file mode 100644
index 0000000000000000000000000000000000000000..1d912ba6d6252a76cd3d41bda3f9a1810b1abfe5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_staff_lost_staff_archmage_tarelion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_staff_of_absorbtion.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_staff_of_absorbtion.png
new file mode 100644
index 0000000000000000000000000000000000000000..3b2768ff0ef193b5fb6545bc8d026466b4db7cc4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_staff_of_absorbtion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_staff_of_arcane_supremacy.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_staff_of_arcane_supremacy.png
new file mode 100644
index 0000000000000000000000000000000000000000..0d645262d19b02ff61c3418cf1a025b75020ca05
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_staff_of_arcane_supremacy.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_staff_of_destruction.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_staff_of_destruction.png
new file mode 100644
index 0000000000000000000000000000000000000000..a6dcff01ff6403f1bc99a00fa7fd607a30bad119
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_staff_of_destruction.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_staff_penitence.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_staff_penitence.png
new file mode 100644
index 0000000000000000000000000000000000000000..eb2181d91b52aa500189dd4a35df07c266daa539
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_staff_penitence.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_staff_voice_of_telos.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_staff_voice_of_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..57a1f6f77423a9b1c11c6b933d479510869e79d6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_staff_voice_of_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_storm_fury.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_storm_fury.png
new file mode 100644
index 0000000000000000000000000000000000000000..ad6906c93ff5154000c80c71f57d1555a095fa0e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_storm_fury.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_stormlash.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_stormlash.png
new file mode 100644
index 0000000000000000000000000000000000000000..90e1170e5a8f8c62d339a5f029176d6581efbe1e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_stormlash.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_surefire.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_surefire.png
new file mode 100644
index 0000000000000000000000000000000000000000..09a32e9fbe3df4db5039e8939d1ad36773f37ccb
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_surefire.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_telos_spire_of_power.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_telos_spire_of_power.png
new file mode 100644
index 0000000000000000000000000000000000000000..f7d0d0ef26306c677a4faa7e082b561ee37189d4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_telos_spire_of_power.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_thaloren_tree_longbow.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_thaloren_tree_longbow.png
new file mode 100644
index 0000000000000000000000000000000000000000..75c878738b00289906ad7132a03cdd53bc705224
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_thaloren_tree_longbow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_trident_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_trident_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..770e14a5d98d4578ffa853dc7e69a0abda8bb30c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_trident_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_umbral_razor.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_umbral_razor.png
new file mode 100644
index 0000000000000000000000000000000000000000..a095455a28f039e32fa538566de6cd529d718297
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_umbral_razor.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_unstoppable_mauler.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_unstoppable_mauler.png
new file mode 100644
index 0000000000000000000000000000000000000000..291dddc1f8723823130c300660000d26358dde97
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_unstoppable_mauler.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_voratun_hammer_of_the_deep_bellow.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_voratun_hammer_of_the_deep_bellow.png
new file mode 100644
index 0000000000000000000000000000000000000000..da46b38a0130f2cb663d269f939477ac8fd44912
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_voratun_hammer_of_the_deep_bellow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_warmaster_gnargs_murderblade.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_warmaster_gnargs_murderblade.png
new file mode 100644
index 0000000000000000000000000000000000000000..bf2c8ca03ea185651e7b6382ef35d9dc2db19abf
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_warmaster_gnargs_murderblade.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_whip_of_urh_rok.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_whip_of_urh_rok.png
new file mode 100644
index 0000000000000000000000000000000000000000..5d8a88020ebfe54d762d56463fb449c1314ca2b7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_whip_of_urh_rok.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_whip_scorpions_tail.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_whip_scorpions_tail.png
new file mode 100644
index 0000000000000000000000000000000000000000..5b5c7335b6d146b5541902304fbab167cb589ba6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_whip_scorpions_tail.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_writhing_essence_of_nightmares.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_writhing_essence_of_nightmares.png
new file mode 100644
index 0000000000000000000000000000000000000000..8f2b62807bb4961c255d8daad9ae37982e830704
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/left_writhing_essence_of_nightmares.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/light_armour_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/light_armour_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..2fd150de7a05f0d5f90c0f233c407ce0bec5c2a1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/light_armour_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/malslek_the_accursed_hat.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/malslek_the_accursed_hat.png
new file mode 100644
index 0000000000000000000000000000000000000000..fe16a69462969bf3b42f1d465403777c1bdd1a09
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/malslek_the_accursed_hat.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/masochism.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/masochism.png
new file mode 100644
index 0000000000000000000000000000000000000000..a4854426160357654c62b2247b2450f0ed1e1c00
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/masochism.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/massive_armour_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/massive_armour_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..badeaae698a606b0609c714cc9ea3da3a6ea3605
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/massive_armour_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/omniscience.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/omniscience.png
new file mode 100644
index 0000000000000000000000000000000000000000..2d48f689894322502345be72eab55d1bf75c50be
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/omniscience.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/plate_armor_of_the_king.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/plate_armor_of_the_king.png
new file mode 100644
index 0000000000000000000000000000000000000000..192b12940dd1552e90a1bd49b0d7dbbf9ccf427f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/plate_armor_of_the_king.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/plate_of_the_blackened_mind.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/plate_of_the_blackened_mind.png
new file mode 100644
index 0000000000000000000000000000000000000000..36b2856e7ded613dfb638646e2b5dff19132c4b5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/plate_of_the_blackened_mind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/pouch_of_the_subconscious.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/pouch_of_the_subconscious.png
new file mode 100644
index 0000000000000000000000000000000000000000..5f6e3ba63378de371ad9d42db3b0fc5854c99515
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/pouch_of_the_subconscious.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/quiver_of_domination.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/quiver_of_domination.png
new file mode 100644
index 0000000000000000000000000000000000000000..b795bf5e9d429a650105a813aa99d28b4e132c32
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/quiver_of_domination.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/quiver_of_the_sun.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/quiver_of_the_sun.png
new file mode 100644
index 0000000000000000000000000000000000000000..59a33b4ce2d0a149a36fa07b83a36d8bd0ec5a93
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/quiver_of_the_sun.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/radiance_behind.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/radiance_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..0be5418d1fa5175ae20d765c8dde8d989ade04c0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/radiance_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/radiance_hood.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/radiance_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..113dbfaf2490d65d34f4737d6502f52d3cf036ee
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/radiance_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/radiance_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/radiance_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..35bb26d8b745de61f7b8c6111ae6a35c5961ed93
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/radiance_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_1Haxe_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_1Haxe_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..6387823a6d1ec1b54aa3510af43ed7b654d99ec1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_1Haxe_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_1Hmace_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_1Hmace_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..2eea50c384167aedc69f9c32cd88c093763713c4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_1Hmace_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_1Hsword_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_1Hsword_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..2c121dd7e51deffdd78d36167667167d490a3bb7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_1Hsword_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_2Haxe_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_2Haxe_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..306b01c08967dce92fe3bd4d5cf52e186206e853
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_2Haxe_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_2Hmace_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_2Hmace_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..c161f67bcd364d5403130c9ba9312eaef95462ad
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_2Hmace_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_2Hsword_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_2Hsword_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..2bd1040afbad76a5b86ededa554f826129b5742b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_2Hsword_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_amethyst_of_sanctuary.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_amethyst_of_sanctuary.png
new file mode 100644
index 0000000000000000000000000000000000000000..6b0bada508d9c6cf04e2148e751e0301096d4fb3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_amethyst_of_sanctuary.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_awaken_staff_of_absorbtion.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_awaken_staff_of_absorbtion.png
new file mode 100644
index 0000000000000000000000000000000000000000..137fa25ee0f45265018d3cb1911175d9423a43fd
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_awaken_staff_of_absorbtion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_blighted_maul.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_blighted_maul.png
new file mode 100644
index 0000000000000000000000000000000000000000..c5cb6d1182dbf275dee24c7e0f1f292352494f03
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_blighted_maul.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_bloomsoul.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_bloomsoul.png
new file mode 100644
index 0000000000000000000000000000000000000000..b238a4ed3112b310ffa51d2d92b0cea12fb5d3a4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_bloomsoul.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_borosks_hate.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_borosks_hate.png
new file mode 100644
index 0000000000000000000000000000000000000000..6b594efaceca201333a718d0eb2ca30d72bb2929
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_borosks_hate.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_bow_corpsebow.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_bow_corpsebow.png
new file mode 100644
index 0000000000000000000000000000000000000000..fc4daa0246468c17c2bdf83e30ade493db115b45
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_bow_corpsebow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_bow_epochs_curve.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_bow_epochs_curve.png
new file mode 100644
index 0000000000000000000000000000000000000000..8cc4fb526d790138868a07f0518f88ca072b0039
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_bow_epochs_curve.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_champions_will.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_champions_will.png
new file mode 100644
index 0000000000000000000000000000000000000000..1f5f7ffba1ace0107cb3b4e5e74edc40f61203c2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_champions_will.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_colaryem.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_colaryem.png
new file mode 100644
index 0000000000000000000000000000000000000000..2dd1558e67cae14d856c310e28566a9e65d8fa2d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_colaryem.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_core_of_the_forge.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_core_of_the_forge.png
new file mode 100644
index 0000000000000000000000000000000000000000..a760b14ba71a88b88777095106517122d3ce91ba
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_core_of_the_forge.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_corpus_2.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_corpus_2.png
new file mode 100644
index 0000000000000000000000000000000000000000..d27c07929fb4560d9174ffffdb577540166c2ede
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_corpus_2.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_crystal_shard.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_crystal_shard.png
new file mode 100644
index 0000000000000000000000000000000000000000..3c8b289f08c93e96ec217ccc902fcf659a4b9704
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_crystal_shard.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_dagger_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_dagger_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..13b5fa4e8772f60d53f0fbf6f050a6fa188630b3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_dagger_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_dream_malleus.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_dream_malleus.png
new file mode 100644
index 0000000000000000000000000000000000000000..10926513a1adbc359d16e0d1d8cd8f4e717c5f5e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_dream_malleus.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_eclipse.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_eclipse.png
new file mode 100644
index 0000000000000000000000000000000000000000..263c567e28300a54ba4ea1f109f79ce1000954fa
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_eclipse.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_eyals_will.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_eyals_will.png
new file mode 100644
index 0000000000000000000000000000000000000000..a56474f2e3e30a7d758d7de885388914a2d9dc76
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_eyals_will.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_eye_of_the_wyrm.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_eye_of_the_wyrm.png
new file mode 100644
index 0000000000000000000000000000000000000000..489b3c9e3539c70960c703531b4801670f5ca36c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_eye_of_the_wyrm.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_focus_whip.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_focus_whip.png
new file mode 100644
index 0000000000000000000000000000000000000000..fdf7c6e1791d68127be4b9c00221b82663a8cc52
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_focus_whip.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_genocide.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_genocide.png
new file mode 100644
index 0000000000000000000000000000000000000000..23cd1742427878792bd4a71500a53378315e53d0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_genocide.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_gravitational_staff.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_gravitational_staff.png
new file mode 100644
index 0000000000000000000000000000000000000000..3b890fafd77ad0fe5599aad03a73d5df19679ec7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_gravitational_staff.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_great_caller.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_great_caller.png
new file mode 100644
index 0000000000000000000000000000000000000000..844b7c9a6165fe4ed7a6c1c57c75ce7b95c33b62
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_great_caller.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_guidance.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_guidance.png
new file mode 100644
index 0000000000000000000000000000000000000000..cbe61844f6160ba5062b9b0f2645e504eb3ab0ba
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_guidance.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_hareskin_sling.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_hareskin_sling.png
new file mode 100644
index 0000000000000000000000000000000000000000..5285be1f2721cae771b4f5102bf4cbfb2d27bc68
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_hareskin_sling.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_hydras_bite.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_hydras_bite.png
new file mode 100644
index 0000000000000000000000000000000000000000..3f5fba6d179a6e827d8a4f1f47076d49f3ab2b0d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_hydras_bite.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_latafayn.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_latafayn.png
new file mode 100644
index 0000000000000000000000000000000000000000..fb69b41cb8c0b23cec3514e5030b1bc09be15943
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_latafayn.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_merkuls_second_eye.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_merkuls_second_eye.png
new file mode 100644
index 0000000000000000000000000000000000000000..e2e9d13823ef672cd833ad535b918dd9c56de3a5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_merkuls_second_eye.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_nexus_of_the_way.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_nexus_of_the_way.png
new file mode 100644
index 0000000000000000000000000000000000000000..138a7953bfb862bb7cad549be64c26ab369870ea
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_nexus_of_the_way.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_nithans_force.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_nithans_force.png
new file mode 100644
index 0000000000000000000000000000000000000000..579ddac46b629a537f38f1dd3cc41c85ccf5d7db
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_nithans_force.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_obliterator.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_obliterator.png
new file mode 100644
index 0000000000000000000000000000000000000000..5a5612e5e006627929c521eb634e20c31e2116fb
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_obliterator.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_oozing_heart.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_oozing_heart.png
new file mode 100644
index 0000000000000000000000000000000000000000..d07cb1060033badb4bd07c1d8c9990a3244352c6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_oozing_heart.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_psionic_fury.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_psionic_fury.png
new file mode 100644
index 0000000000000000000000000000000000000000..136751d43fe2e2b6c930b3e59fd6a89118c1f7c7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_psionic_fury.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_rod_of_sarrilon.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_rod_of_sarrilon.png
new file mode 100644
index 0000000000000000000000000000000000000000..0da6fc4c17f5e5ec1993a83def08585b3f30d27e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_rod_of_sarrilon.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_sceptre_of_the_archlich.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_sceptre_of_the_archlich.png
new file mode 100644
index 0000000000000000000000000000000000000000..b65d44140b4688e03103ebeb7bdd28a352272204
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_sceptre_of_the_archlich.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_serpents_glare.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_serpents_glare.png
new file mode 100644
index 0000000000000000000000000000000000000000..25c8341e8d999ad8395b8ae242db40ce0849803c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_serpents_glare.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_shield_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_shield_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..43b7757286e5b1822e31912cadb7d55ade9af6b0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_shield_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_skeletal_claw.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_skeletal_claw.png
new file mode 100644
index 0000000000000000000000000000000000000000..9f6c07402187d49603b17f25becbd2605b0d6d3b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_skeletal_claw.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_sling_eldoral_last_resort.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_sling_eldoral_last_resort.png
new file mode 100644
index 0000000000000000000000000000000000000000..93dd5735f0f70d4fe300a1f2703350a039c3bbd7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_sling_eldoral_last_resort.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_spectral_blade.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_spectral_blade.png
new file mode 100644
index 0000000000000000000000000000000000000000..02a8e0efa40e165fe263818be512c5d423b3ff7c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_spectral_blade.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_spellcrusher.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_spellcrusher.png
new file mode 100644
index 0000000000000000000000000000000000000000..04c254b217c3d964d45d99fb4b4ac7d698c0cf1d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_spellcrusher.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_staff_bolbums_big_knocker.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_staff_bolbums_big_knocker.png
new file mode 100644
index 0000000000000000000000000000000000000000..7cd29859f31e1e31468cb408ce60b203022f8733
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_staff_bolbums_big_knocker.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_staff_broken_bottom_telos.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_staff_broken_bottom_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..8707500d7fd281382dd98b4bc0c35f594e0b9205
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_staff_broken_bottom_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_staff_broken_top_telos.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_staff_broken_top_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..d578ecc520a8571ab2b737d04ac204a6d50cbff1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_staff_broken_top_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_staff_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_staff_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..5b9220a0f1d8e53298543bd8271bf58ca226511d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_staff_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_staff_kors_fall.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_staff_kors_fall.png
new file mode 100644
index 0000000000000000000000000000000000000000..2a7d8c3a1600c21e0a299eb8512300b64a138ff2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_staff_kors_fall.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_staff_lost_staff_archmage_tarelion.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_staff_lost_staff_archmage_tarelion.png
new file mode 100644
index 0000000000000000000000000000000000000000..39eac3861a108c0333f4e60995af25e5690d469e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_staff_lost_staff_archmage_tarelion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_staff_of_absorbtion.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_staff_of_absorbtion.png
new file mode 100644
index 0000000000000000000000000000000000000000..8d2ee4f047226a45e587255e2b70a18f57248cd5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_staff_of_absorbtion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_staff_of_arcane_supremacy.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_staff_of_arcane_supremacy.png
new file mode 100644
index 0000000000000000000000000000000000000000..b47b7a58ded7dc7874f224a4b9ed86f464e227d5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_staff_of_arcane_supremacy.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_staff_of_destruction.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_staff_of_destruction.png
new file mode 100644
index 0000000000000000000000000000000000000000..fe8ef3604b2b8889708c4e773d9b948e9f5c8f97
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_staff_of_destruction.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_staff_penitence.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_staff_penitence.png
new file mode 100644
index 0000000000000000000000000000000000000000..6fffd0b8d02693836c38f7be59f983c066768e94
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_staff_penitence.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_staff_voice_of_telos.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_staff_voice_of_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..df5b96643227fbdc59e59b9eaf8c69728a4e61d3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_staff_voice_of_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_storm_fury.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_storm_fury.png
new file mode 100644
index 0000000000000000000000000000000000000000..8a6a9e5f29ee287262cba840db49ecd41f8830f7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_storm_fury.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_stormlash.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_stormlash.png
new file mode 100644
index 0000000000000000000000000000000000000000..20487a16861ea37708de16126e4f0f0d327c4569
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_stormlash.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_surefire.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_surefire.png
new file mode 100644
index 0000000000000000000000000000000000000000..f489be0772f35b4b2a81fae77d34ebd21ef7ee15
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_surefire.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_telos_spire_of_power.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_telos_spire_of_power.png
new file mode 100644
index 0000000000000000000000000000000000000000..fd7cfad8802b5efae94b55bbc6e2fe4823d49e56
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_telos_spire_of_power.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_thaloren_tree_longbow.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_thaloren_tree_longbow.png
new file mode 100644
index 0000000000000000000000000000000000000000..96164e078cedf452569fe6053584a875a39b69a2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_thaloren_tree_longbow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_trident_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_trident_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..9192fb942571d85129f88e83019a7936c28d9a84
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_trident_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_umbral_razor.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_umbral_razor.png
new file mode 100644
index 0000000000000000000000000000000000000000..5dc66b0474ce8fdefc145ed5546773c2a8d9d0bd
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_umbral_razor.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_unstoppable_mauler.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_unstoppable_mauler.png
new file mode 100644
index 0000000000000000000000000000000000000000..aaed1a412c7cc491c795aa466caa3b47a5f045ae
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_unstoppable_mauler.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_voratun_hammer_of_the_deep_bellow.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_voratun_hammer_of_the_deep_bellow.png
new file mode 100644
index 0000000000000000000000000000000000000000..fba74d6a911b535854e28b19a42bdc956d93628a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_voratun_hammer_of_the_deep_bellow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_warmaster_gnargs_murderblade.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_warmaster_gnargs_murderblade.png
new file mode 100644
index 0000000000000000000000000000000000000000..60b7fc3ac3f3f0cc1c396132dfe1859f74983da5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_warmaster_gnargs_murderblade.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_whip_of_urh_rok.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_whip_of_urh_rok.png
new file mode 100644
index 0000000000000000000000000000000000000000..0cc9459877db2e02ebcc85c63cb1ef19359457b2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_whip_of_urh_rok.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_whip_scorpions_tail.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_whip_scorpions_tail.png
new file mode 100644
index 0000000000000000000000000000000000000000..62cc42bb25a1918a36e54526f044dd981f71bc5a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_whip_scorpions_tail.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_writhing_essence_of_nightmares.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_writhing_essence_of_nightmares.png
new file mode 100644
index 0000000000000000000000000000000000000000..c5c23de6acbc72b3bdc19402df673e48be5d6680
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/right_writhing_essence_of_nightmares.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/robe_black_robe.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/robe_black_robe.png
new file mode 100644
index 0000000000000000000000000000000000000000..102cd7c1427b63f8a7e9537f8b0d11cedd35959a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/robe_black_robe.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/robe_firewalker.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/robe_firewalker.png
new file mode 100644
index 0000000000000000000000000000000000000000..e34b69fa3161f3a2b70f861bd4fc6ed59dddd039
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/robe_firewalker.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/robe_of_force.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/robe_of_force.png
new file mode 100644
index 0000000000000000000000000000000000000000..eb947f26d5fd1801a70e04a34cad4f0df2b92a0e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/robe_of_force.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/robe_spider_silk_robe_spydre.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/robe_spider_silk_robe_spydre.png
new file mode 100644
index 0000000000000000000000000000000000000000..27ea0e5d562468e4413eeddad0b85dec50cfe599
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/robe_spider_silk_robe_spydre.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/robe_temporal_augmentation_robe.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/robe_temporal_augmentation_robe.png
new file mode 100644
index 0000000000000000000000000000000000000000..ae7cd834c977624668e62692cbd050abf859d23c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/robe_temporal_augmentation_robe.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/robe_vestments_of_the_conclave.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/robe_vestments_of_the_conclave.png
new file mode 100644
index 0000000000000000000000000000000000000000..5d063adcee31b80571add1b0ba6abd0e0a9bebf6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/robe_vestments_of_the_conclave.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/robes_of_deflection.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/robes_of_deflection.png
new file mode 100644
index 0000000000000000000000000000000000000000..8412302247e6d60744efb84df1b166707d0dbe58
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/robes_of_deflection.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/scale_mail_of_kroltar.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/scale_mail_of_kroltar.png
new file mode 100644
index 0000000000000000000000000000000000000000..f83f27c4161d61f6e287fb845278937aab9bb302
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/scale_mail_of_kroltar.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/scorched_boots.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/scorched_boots.png
new file mode 100644
index 0000000000000000000000000000000000000000..46faf1b174db9402f3aa19dfd0dd0507fc5cc31c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/scorched_boots.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/scorpion_gauntlets.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/scorpion_gauntlets.png
new file mode 100644
index 0000000000000000000000000000000000000000..00abfffbe9975f07d412c941f41ce49161999b9d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/scorpion_gauntlets.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/serpentine_cloak_behind.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/serpentine_cloak_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..be538a3ad7ef6c48471998ee9f94274799be3606
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/serpentine_cloak_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/serpentine_cloak_hood.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/serpentine_cloak_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..5bea0055f6736207ae32863419d7786deee05b62
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/serpentine_cloak_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/serpentine_cloak_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/serpentine_cloak_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..b114c9975f7c7d13d0ff053dce9e6d034185a9d2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/serpentine_cloak_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/shifting_boots.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/shifting_boots.png
new file mode 100644
index 0000000000000000000000000000000000000000..6f6e99931d75c24b58d47a726fa7c14f40563885
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/shifting_boots.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/silk_current.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/silk_current.png
new file mode 100644
index 0000000000000000000000000000000000000000..26cf80ff3d376adfab8f40dc3b9c0219f7753b7d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/silk_current.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/skin_of_many.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/skin_of_many.png
index 9f1b2c971e1666729d5b75a50376543530a991c0..004d9b2e14bdfcf49c373e0ea9c887605bee25a8 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/skin_of_many.png and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/skin_of_many.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/sludgegrip.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/sludgegrip.png
new file mode 100644
index 0000000000000000000000000000000000000000..746da40023505ca6b7f4356d9e7776ce97c9b657
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/sludgegrip.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/snow_giant_arm_wraps.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/snow_giant_arm_wraps.png
new file mode 100644
index 0000000000000000000000000000000000000000..ad5647eec5b112e996bedf2305f70a244a606b1c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/snow_giant_arm_wraps.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/spellhunt_remnants.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/spellhunt_remnants.png
new file mode 100644
index 0000000000000000000000000000000000000000..750fd9e75f79a4f3e68723cf7afec2234da64e7f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/spellhunt_remnants.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/star_shot.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/star_shot.png
new file mode 100644
index 0000000000000000000000000000000000000000..2457fca405152f92e863d8c4b8b16731dddd4bc2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/star_shot.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/storm_bringers_gauntlets.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/storm_bringers_gauntlets.png
new file mode 100644
index 0000000000000000000000000000000000000000..3cc265bae86c96072bee34098b517bae3140d6e7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/storm_bringers_gauntlets.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/terrasca.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/terrasca.png
new file mode 100644
index 0000000000000000000000000000000000000000..6ca681b48089e6286a9d16291f81b5e0ba0261b2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/terrasca.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/the_calm.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/the_calm.png
new file mode 100644
index 0000000000000000000000000000000000000000..803f49500aa12c476dbb026e25b4f660e388e6df
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/the_calm.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/the_inner_eye.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/the_inner_eye.png
new file mode 100644
index 0000000000000000000000000000000000000000..d40841904d878fe238ac6dce0256d48a2ecb250f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/the_inner_eye.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/the_titans_quiver.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/the_titans_quiver.png
new file mode 100644
index 0000000000000000000000000000000000000000..109e46ab7486ed77a296bc9c3904d6900c31448a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/the_titans_quiver.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/the_untouchable.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/the_untouchable.png
new file mode 100644
index 0000000000000000000000000000000000000000..cd1960950e23a551e302bf7efb5fb14be314c660
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/the_untouchable.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/the_warped_boots.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/the_warped_boots.png
new file mode 100644
index 0000000000000000000000000000000000000000..410d5f1902117f350aae7082c0b98fcbd5a6560c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/the_warped_boots.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/unbreakable_greaves.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/unbreakable_greaves.png
new file mode 100644
index 0000000000000000000000000000000000000000..59cd4111ca191a002a6297bbd73096b056af3795
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/unbreakable_greaves.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/ureslaks_molted_scales_behind.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/ureslaks_molted_scales_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..92ae9e255813df34a4b082fe37ceec7b0232fe8e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/ureslaks_molted_scales_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/ureslaks_molted_scales_hood.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/ureslaks_molted_scales_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..bfe6f15bf88a37bb4523d02abab2869404925fb3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/ureslaks_molted_scales_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/ureslaks_molted_scales_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/ureslaks_molted_scales_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..3ecf9d2c5be6bf527bc39f50ed1bff8223d371bf
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/ureslaks_molted_scales_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/void_quiver.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/void_quiver.png
new file mode 100644
index 0000000000000000000000000000000000000000..f992d3a235b5624cb61b1c02ba3bbbaa16c54953
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/void_quiver.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/wanderers_rest.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/wanderers_rest.png
new file mode 100644
index 0000000000000000000000000000000000000000..82893dfd17297830b455f9e1d0e9476607c31c37
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/wanderers_rest.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/wind_worn_shot.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/wind_worn_shot.png
new file mode 100644
index 0000000000000000000000000000000000000000..1d9cd4072810c4ef61b6d1fea31f535fe54e3dc3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/wind_worn_shot.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/wizard_hat_of_arcane_understanding.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/wizard_hat_of_arcane_understanding.png
new file mode 100644
index 0000000000000000000000000000000000000000..c9c9b0c7b6ce02114f36f655167334bcf390126b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/wizard_hat_of_arcane_understanding.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/wooden_cuirass.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/wooden_cuirass.png
index 558860f871a25e005e9b5eb8723c7c65051af176..5c8676d8f2e1b6853fa8ace5317e94543108f0b2 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/wooden_cuirass.png and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/wooden_cuirass.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/wrap_of_stone_behind.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/wrap_of_stone_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..b09ba6b01e4a7043153cca6f9f001eac972696b9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/wrap_of_stone_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/wrap_of_stone_hood.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/wrap_of_stone_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..c875dbdd43427b4277751ae2f98e50cdc31ee800
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/wrap_of_stone_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/wrap_of_stone_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/wrap_of_stone_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..70af843f9f402de5d99d51d571d49593375a1ff6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/wrap_of_stone_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/wyrmbreath.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/wyrmbreath.png
new file mode 100644
index 0000000000000000000000000000000000000000..94f4ba55a6c17252973673616380604039612473
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/wyrmbreath.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/yaldan_baoth.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/yaldan_baoth.png
new file mode 100644
index 0000000000000000000000000000000000000000..77fe155584d0d04d22cd17806dd41c3054fe9250
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/yaldan_baoth.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/yeek_fur_robe.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/yeek_fur_robe.png
new file mode 100644
index 0000000000000000000000000000000000000000..af402206607198d68af0788c21d4d52cbfb4f3ce
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/special/yeek_fur_robe.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/upper_body_25.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/upper_body_25.png
index 816241bdd6f8cea4df652c67ad916d5b15c700d8..0e0b2a4e2704f7f6e9bffe7d20f6e717e5f38314 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/upper_body_25.png and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/upper_body_25.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/upper_body_29.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/upper_body_29.png
new file mode 100644
index 0000000000000000000000000000000000000000..671a35fd6bef1e3eba4bc074c3cab9880817a00d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/upper_body_29.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/upper_body_30.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/upper_body_30.png
new file mode 100644
index 0000000000000000000000000000000000000000..1d5a93238341a82264b48df7706c020e62779615
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/upper_body_30.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/upper_body_31.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/upper_body_31.png
new file mode 100644
index 0000000000000000000000000000000000000000..2a0981a52bbbe3ceeacb9191e74d37285ad98c76
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/upper_body_31.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/upper_body_32.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/upper_body_32.png
new file mode 100644
index 0000000000000000000000000000000000000000..cd6a0c2981849ada78478efda786dfcdb3be093e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/upper_body_32.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/upper_body_33.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/upper_body_33.png
new file mode 100644
index 0000000000000000000000000000000000000000..345ea8e1f7d351076cb034860d18751407b163ce
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/upper_body_33.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/upper_body_34.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/upper_body_34.png
new file mode 100644
index 0000000000000000000000000000000000000000..e36a64841c2ed91040f16835e760cba56699d66e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/upper_body_34.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/upper_body_35.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/upper_body_35.png
new file mode 100644
index 0000000000000000000000000000000000000000..f5be72ebd00ca5dca283a046813db40dfacc7446
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/upper_body_35.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/upper_body_36.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/upper_body_36.png
new file mode 100644
index 0000000000000000000000000000000000000000..f818c9f4570680e192da869e7639aace76a5b45f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/upper_body_36.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/upper_body_37.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/upper_body_37.png
new file mode 100644
index 0000000000000000000000000000000000000000..238498a38426e1370dd3642444e9ce3fbcb41cb7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/upper_body_37.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_female/upper_body_38.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/upper_body_38.png
new file mode 100644
index 0000000000000000000000000000000000000000..e0b38e676088bab6af385a45ee6f6857e6272ccd
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_female/upper_body_38.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/cloak_behind_07.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/cloak_behind_07.png
new file mode 100644
index 0000000000000000000000000000000000000000..53527e0f06b297a2cbace4d9a437e2551becaf11
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/cloak_behind_07.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/cloak_behind_08.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/cloak_behind_08.png
new file mode 100644
index 0000000000000000000000000000000000000000..842a70c7e9184e5b0ba9c77c0d78bb92d4f9289e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/cloak_behind_08.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/cloak_behind_09.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/cloak_behind_09.png
new file mode 100644
index 0000000000000000000000000000000000000000..7c5437ac1d7bcb90c27dd6236077bb1571ebb9dd
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/cloak_behind_09.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/cloak_hood_07.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/cloak_hood_07.png
new file mode 100644
index 0000000000000000000000000000000000000000..6eddaecd48e6121b76c25ef62ee08563c8b6cef5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/cloak_hood_07.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/cloak_hood_08.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/cloak_hood_08.png
new file mode 100644
index 0000000000000000000000000000000000000000..7fc18cdb3efcf0cc2c7215a465d88e81f36b6af8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/cloak_hood_08.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/cloak_hood_09.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/cloak_hood_09.png
new file mode 100644
index 0000000000000000000000000000000000000000..8c6a556cb87a3141f8bcefcfbefc55d6bdde6a01
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/cloak_hood_09.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/cloak_shoulder_07.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/cloak_shoulder_07.png
new file mode 100644
index 0000000000000000000000000000000000000000..e906fb6ae4f6eaab835ed5d5b4d13d74323b91dd
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/cloak_shoulder_07.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/cloak_shoulder_08.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/cloak_shoulder_08.png
new file mode 100644
index 0000000000000000000000000000000000000000..9c47224494ca8387897369f151c5ff9c7f1eb10c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/cloak_shoulder_08.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/cloak_shoulder_09.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/cloak_shoulder_09.png
new file mode 100644
index 0000000000000000000000000000000000000000..e2c4980dbd1297ce209d3bb7a0bac7627c400667
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/cloak_shoulder_09.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/feet_10.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/feet_10.png
new file mode 100644
index 0000000000000000000000000000000000000000..be1c0cf59aa9cc9898146cd11e23a28ff752be7c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/feet_10.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/feet_11.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/feet_11.png
new file mode 100644
index 0000000000000000000000000000000000000000..1c0736af59af9ab9230e34db82c76412422191ef
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/feet_11.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/gembag_01.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/gembag_01.png
new file mode 100644
index 0000000000000000000000000000000000000000..1a6228a0d5ce1033821d2dd76a175ea2bb8c3b1b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/gembag_01.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/gembag_02.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/gembag_02.png
new file mode 100644
index 0000000000000000000000000000000000000000..5ca39f58119dc13fb18b1b3d46c1204433b3e6a1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/gembag_02.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/gembag_03.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/gembag_03.png
new file mode 100644
index 0000000000000000000000000000000000000000..d01a9d39d712eabf3cf164f0d05109130fd1c06a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/gembag_03.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/gembag_04.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/gembag_04.png
new file mode 100644
index 0000000000000000000000000000000000000000..aac2322e81a01c6c37f7acffa0593229d66fe9bb
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/gembag_04.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/gembag_05.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/gembag_05.png
new file mode 100644
index 0000000000000000000000000000000000000000..7ed1b5bf4e20cc07442c0db2af1809fec3c3b181
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/gembag_05.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/hands_08.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/hands_08.png
new file mode 100644
index 0000000000000000000000000000000000000000..9126fb65f8266e7a387a9beffb56a037882d5f90
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/hands_08.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/hands_09.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/hands_09.png
new file mode 100644
index 0000000000000000000000000000000000000000..057dff9d03260d88d70aba98ad92b5da081f1790
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/hands_09.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/head_19.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/head_19.png
new file mode 100644
index 0000000000000000000000000000000000000000..2e1c32eef1334fcf30c035b58bd751b5cecbc2ff
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/head_19.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/head_20.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/head_20.png
new file mode 100644
index 0000000000000000000000000000000000000000..725c9f77f38df1560f680321d1ca89dae4948070
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/head_20.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/head_21.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/head_21.png
new file mode 100644
index 0000000000000000000000000000000000000000..06eaf3e2b24e363cc98eb6173145a98677e2bf2e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/head_21.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/head_22.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/head_22.png
new file mode 100644
index 0000000000000000000000000000000000000000..937e6d195e272be00a699397627e3e0e780266d3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/head_22.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/head_23.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/head_23.png
new file mode 100644
index 0000000000000000000000000000000000000000..8ce5dfaaceede476d16c17bae158d390d5ed4020
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/head_23.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/lower_body_14.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/lower_body_14.png
new file mode 100644
index 0000000000000000000000000000000000000000..5c97548192fb5ec771c33c2c3ffa1e76f9cb52f8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/lower_body_14.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/lower_body_15.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/lower_body_15.png
new file mode 100644
index 0000000000000000000000000000000000000000..206e3166434ecbf17eb28ed9a33a2b99ba8eee34
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/lower_body_15.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/lower_body_16.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/lower_body_16.png
new file mode 100644
index 0000000000000000000000000000000000000000..fcd632586b002f4f4c52c7f5ed1b3bd73a372b4a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/lower_body_16.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/lower_body_17.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/lower_body_17.png
new file mode 100644
index 0000000000000000000000000000000000000000..fa20154e385e847acb515f76431d1cbc4c9cf99d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/lower_body_17.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/lower_body_18.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/lower_body_18.png
new file mode 100644
index 0000000000000000000000000000000000000000..e4cae85b63697ba72ee9b307393b77e044e59ca2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/lower_body_18.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/lower_body_19.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/lower_body_19.png
new file mode 100644
index 0000000000000000000000000000000000000000..fc6717fc363ae1e5f6bf08579cac9ce9535565f0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/lower_body_19.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/quiver_01.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/quiver_01.png
new file mode 100644
index 0000000000000000000000000000000000000000..38a003c133c9f1221333ab28770aaf654d74f57a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/quiver_01.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/quiver_02.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/quiver_02.png
new file mode 100644
index 0000000000000000000000000000000000000000..938b7d869ad8104320e117513efde30c802d78bd
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/quiver_02.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/quiver_03.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/quiver_03.png
new file mode 100644
index 0000000000000000000000000000000000000000..fb05fc15c10b16bbaeb57c03d1b8a7a305e31e5e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/quiver_03.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/quiver_04.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/quiver_04.png
new file mode 100644
index 0000000000000000000000000000000000000000..226fb3647b34e20055f6d8752d4975aa29255117
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/quiver_04.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/quiver_05.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/quiver_05.png
new file mode 100644
index 0000000000000000000000000000000000000000..a69afa9e2f20c551d85ec7b43870d4b1e6ccb1ad
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/quiver_05.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/shotbag_01.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/shotbag_01.png
new file mode 100644
index 0000000000000000000000000000000000000000..cec50d1a270142a988299f2d17cb002a702245b0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/shotbag_01.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/shotbag_02.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/shotbag_02.png
new file mode 100644
index 0000000000000000000000000000000000000000..c2ee57e3fe35a6e2119064d29c713e9cb58f1018
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/shotbag_02.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/shotbag_03.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/shotbag_03.png
new file mode 100644
index 0000000000000000000000000000000000000000..6f151627c75063c517a2afc3125c3e776652b238
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/shotbag_03.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/shotbag_04.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/shotbag_04.png
new file mode 100644
index 0000000000000000000000000000000000000000..d6227d528bd99b100a653adf17bd91e11131c06f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/shotbag_04.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/shotbag_05.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/shotbag_05.png
new file mode 100644
index 0000000000000000000000000000000000000000..2fd5a152eceb69fad2adba8b1d0320817a74a6b9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/shotbag_05.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/aether_walk.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/aether_walk.png
new file mode 100644
index 0000000000000000000000000000000000000000..18f609345e243a179c0ddca14c5ae3826407f2f6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/aether_walk.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/arkuls_seige_arrows.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/arkuls_seige_arrows.png
new file mode 100644
index 0000000000000000000000000000000000000000..61d76c561ffeae03bb2c7b39b80394dd5dfad50f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/arkuls_seige_arrows.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/armor_chromatic_harness.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/armor_chromatic_harness.png
new file mode 100644
index 0000000000000000000000000000000000000000..afbb87b45b817a8e91b5a1de8deb561de75b2240
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/armor_chromatic_harness.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/armor_cuirass_of_the_thronesmen.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/armor_cuirass_of_the_thronesmen.png
new file mode 100644
index 0000000000000000000000000000000000000000..e10c03e4f4d708b6a2913329bca40b7ce18c7af5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/armor_cuirass_of_the_thronesmen.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/armor_natures_blessing.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/armor_natures_blessing.png
new file mode 100644
index 0000000000000000000000000000000000000000..ea3bb8b5229f265bc9b25913528614e640d75597
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/armor_natures_blessing.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/armor_plate_borfasts_cage.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/armor_plate_borfasts_cage.png
new file mode 100644
index 0000000000000000000000000000000000000000..3b5049b2332b5ee520ab72a0ee56c8889c05fb08
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/armor_plate_borfasts_cage.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/armor_rogue_plight.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/armor_rogue_plight.png
new file mode 100644
index 0000000000000000000000000000000000000000..8ac119a9ee40b8257c72762db91f8a836214bfe3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/armor_rogue_plight.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/behemoth_skin.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/behemoth_skin.png
new file mode 100644
index 0000000000000000000000000000000000000000..ecb9538c7422a41228f0c77a48bcc8582b1c14c6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/behemoth_skin.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/black_cloak_behind.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/black_cloak_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..cbb8d855075d62bcd192f46d3a665618f28c35c5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/black_cloak_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/black_cloak_hood.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/black_cloak_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..b717ba74b913037696049265c7ad22b0c15accd0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/black_cloak_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/black_cloak_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/black_cloak_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..454538572c081f9279ad58c74ba088de5e7f8e63
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/black_cloak_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/boots_edens_guile.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/boots_edens_guile.png
new file mode 100644
index 0000000000000000000000000000000000000000..02babafcf6295e09bab34ad612ffa8ba2213e794
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/boots_edens_guile.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/boots_of_the_hunter.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/boots_of_the_hunter.png
new file mode 100644
index 0000000000000000000000000000000000000000..9b2ecc960e338903d20a5d5870d5231ac07b2288
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/boots_of_the_hunter.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/breath_of_eyal.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/breath_of_eyal.png
new file mode 100644
index 0000000000000000000000000000000000000000..d9bb0e9194c1d3eafdb87c2529e6c770c336b642
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/breath_of_eyal.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/cinderfeet.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/cinderfeet.png
new file mode 100644
index 0000000000000000000000000000000000000000..f4ca816920ff6a0e019a7e557cd2c93638c501c5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/cinderfeet.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/cloak_threads_of_fate_behind.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/cloak_threads_of_fate_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..4cc9955b276919298c6d82997c06ba6cf6293c02
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/cloak_threads_of_fate_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/cloak_threads_of_fate_hood.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/cloak_threads_of_fate_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..579eb0d88cf95f7429f60d1dcc58eee639a63a8a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/cloak_threads_of_fate_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/cloak_threads_of_fate_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/cloak_threads_of_fate_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..a1e2119cf9b34f3637f7e9efb6365967074e6e02
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/cloak_threads_of_fate_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/cloak_winds_whisper_behind.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/cloak_winds_whisper_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..656aa54d0726b5b4061b74f97f71c580fc1d66b6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/cloak_winds_whisper_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/cloak_winds_whisper_hood.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/cloak_winds_whisper_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..d92dec517966f55f796eb0ac92849b1053e84687
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/cloak_winds_whisper_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/cloak_winds_whisper_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/cloak_winds_whisper_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..c41ed52da21275c361293fd48fd84145ba6b0be9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/cloak_winds_whisper_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/cloth_armour_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/cloth_armour_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..f93ac92801a636886e03c410b4b9a33572bfe8e0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/cloth_armour_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/cloth_of_dreams_behind.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/cloth_of_dreams_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..1f23f7eda9b708a251329f0e7477e6f80770eacf
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/cloth_of_dreams_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/cloth_of_dreams_hood.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/cloth_of_dreams_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..d126131c9b13ceb083588ae92955326a8450398f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/cloth_of_dreams_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/cloth_of_dreams_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/cloth_of_dreams_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..4177a79a51309f0c2339933bcd86a2736b0443e9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/cloth_of_dreams_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/corrupted_gaze.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/corrupted_gaze.png
new file mode 100644
index 0000000000000000000000000000000000000000..b2a0365a46a14ad3f91742b4eba75af380b18b6f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/corrupted_gaze.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/crimson_robe.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/crimson_robe.png
new file mode 100644
index 0000000000000000000000000000000000000000..3ef49f9a081faaddddf569ed8fa6fca552a9eeb3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/crimson_robe.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/crown_of_burning_pain.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/crown_of_burning_pain.png
new file mode 100644
index 0000000000000000000000000000000000000000..e9c078be93466fe371d3ca5c4b6bbd318356f889
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/crown_of_burning_pain.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/crown_of_command.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/crown_of_command.png
new file mode 100644
index 0000000000000000000000000000000000000000..12fde3f18b5485b62794f816890db6d6ac12037f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/crown_of_command.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/crown_of_eternal_night.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/crown_of_eternal_night.png
new file mode 100644
index 0000000000000000000000000000000000000000..c4d1e322e0ae0909b3efdf9d3c27c65ddb2db3a5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/crown_of_eternal_night.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/crown_of_the_elements.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/crown_of_the_elements.png
new file mode 100644
index 0000000000000000000000000000000000000000..cc4e930b85604066e889de40d880e763435ad149
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/crown_of_the_elements.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/crystles_astral_bindings.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/crystles_astral_bindings.png
new file mode 100644
index 0000000000000000000000000000000000000000..0838748756cef0dbb0269ff91195b9d85b93d81a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/crystles_astral_bindings.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/dakhtuns_gauntlets.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/dakhtuns_gauntlets.png
new file mode 100644
index 0000000000000000000000000000000000000000..99e878e7a0cef3e2eb56708724e251826237e555
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/dakhtuns_gauntlets.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/deaths_embrace.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/deaths_embrace.png
new file mode 100644
index 0000000000000000000000000000000000000000..2c310dcf2fd0aaf8b5148cd0efb3a2ebbaefd0c1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/deaths_embrace.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/decayed_visage.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/decayed_visage.png
new file mode 100644
index 0000000000000000000000000000000000000000..05b84528e0c757ec3527392ad04df01fb4bf531f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/decayed_visage.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/destalas_scales_behind.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/destalas_scales_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..07b45ead77412e2bd9345e29d3b1ede5b02e2cd8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/destalas_scales_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/destalas_scales_whisper_hood.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/destalas_scales_whisper_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..77534a5e02820e6ef7480addea3d9ee6132692f3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/destalas_scales_whisper_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/destalas_scales_whisper_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/destalas_scales_whisper_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..97451acf99001fc3e4ae144c7256c654f627eedf
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/destalas_scales_whisper_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/diadem_alettas_diadem.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/diadem_alettas_diadem.png
new file mode 100644
index 0000000000000000000000000000000000000000..231b077abb4e13eebaba849ade834462234da91c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/diadem_alettas_diadem.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/dragon_helm_of_kroltar.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/dragon_helm_of_kroltar.png
new file mode 100644
index 0000000000000000000000000000000000000000..076b19210ea64a2bc882cb3b92aba06d23137410
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/dragon_helm_of_kroltar.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/dragonskull_helmet.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/dragonskull_helmet.png
new file mode 100644
index 0000000000000000000000000000000000000000..fe65ccff2911b9b2e5e152e5e155e9a2ba347e36
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/dragonskull_helmet.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/eel_skin_armor.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/eel_skin_armor.png
new file mode 100644
index 0000000000000000000000000000000000000000..2642a6f9e054c276014f25f185af9d5b9e1a052f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/eel_skin_armor.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/ethereal_embrace_behind.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/ethereal_embrace_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..b93d42908f8d36271d05b2178df1ec1ddf9e7e1f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/ethereal_embrace_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/ethereal_embrace_hood.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/ethereal_embrace_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..d80941a92962aef8c0c318f453100bbcffc5aa18
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/ethereal_embrace_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/ethereal_embrace_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/ethereal_embrace_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..c21a55ac3cf7f6ebd83f9eb31a3084f84effeffe
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/ethereal_embrace_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/evermoss_robe.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/evermoss_robe.png
new file mode 100644
index 0000000000000000000000000000000000000000..354f6d104bf89e07171afb037c97d668d75387ed
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/evermoss_robe.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/eye_of_the_forest.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/eye_of_the_forest.png
new file mode 100644
index 0000000000000000000000000000000000000000..81854f75f44bd87cf4bad658103ef0772cd7a7d9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/eye_of_the_forest.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/fist_of_the_destroyer.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/fist_of_the_destroyer.png
new file mode 100644
index 0000000000000000000000000000000000000000..3ec1c98aa580a1e9e1baa1e91386318a44119057
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/fist_of_the_destroyer.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/frost_treads.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/frost_treads.png
new file mode 100644
index 0000000000000000000000000000000000000000..400e009b27665263585647e9975b0fa7422f92af
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/frost_treads.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/frozen_shards.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/frozen_shards.png
new file mode 100644
index 0000000000000000000000000000000000000000..a4df292f7ec858e46f4a2b1b3a7727b2fff3acb0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/frozen_shards.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/frozen_shroud_behind.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/frozen_shroud_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..598e920e09699ef67901872edc574d15838a084f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/frozen_shroud_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/frozen_shroud_hood.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/frozen_shroud_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..49e86ccbc7e379ac0742c7b6bad9b73a0dc2e2e9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/frozen_shroud_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/frozen_shroud_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/frozen_shroud_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..e73eace40152282af66b93b077dc0e8e40663d35
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/frozen_shroud_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/gauntlets_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/gauntlets_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..e77ef6da02c470c6ba3fe0cce33eaadbf616315d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/gauntlets_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/gloves_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/gloves_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..55823a330e37ddfc2aff6e3045cfb32bf6601065
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/gloves_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/gloves_flamewrought.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/gloves_flamewrought.png
new file mode 100644
index 0000000000000000000000000000000000000000..9a7b4f790c8a437baeea0977a76e8d5e056b454c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/gloves_flamewrought.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/gloves_of_the_firm_hand.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/gloves_of_the_firm_hand.png
new file mode 100644
index 0000000000000000000000000000000000000000..4b6975be5fc64dc3e666abd26a3300655c05c6d1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/gloves_of_the_firm_hand.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/grip_of_death.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/grip_of_death.png
index fef506c30bd0cec5882f1588f478027ab4f532ac..1e1a45f7b0286866cb394860bb22790ecf635a65 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/grip_of_death.png and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/grip_of_death.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/guise_of_the_hated_behind.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/guise_of_the_hated_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..d05cf3073f87f8bf869649300defd18796b1a848
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/guise_of_the_hated_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/guise_of_the_hated_hood.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/guise_of_the_hated_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..0a689a892e3d3e8878384a685ff78614eff5419f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/guise_of_the_hated_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/guise_of_the_hated_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/guise_of_the_hated_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..d0372cb9da538118adc7264d29a3876986fdad7b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/guise_of_the_hated_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/hand_of_the_worldshaper.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/hand_of_the_worldshaper.png
new file mode 100644
index 0000000000000000000000000000000000000000..3f5740e792eb2bd55e7d489b703d1bba99989826
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/hand_of_the_worldshaper.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/harkor_zun_gauntlets.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/harkor_zun_gauntlets.png
new file mode 100644
index 0000000000000000000000000000000000000000..90b670be59a12d7693040a21b296c288c72e8a9d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/harkor_zun_gauntlets.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/heavy_armour_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/heavy_armour_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..8016584256c6862b5b998bfcc6d1f6e2ebefa3b7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/heavy_armour_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/helm_of_garkul.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/helm_of_garkul.png
new file mode 100644
index 0000000000000000000000000000000000000000..e3f958d6dcbe9df57547292786f0a8dda453445a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/helm_of_garkul.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/helm_of_the_dwarven_emperors.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/helm_of_the_dwarven_emperors.png
new file mode 100644
index 0000000000000000000000000000000000000000..692acbc1e7879fe281627b9b73fe26cd587db119
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/helm_of_the_dwarven_emperors.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/hornet_stingers.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/hornet_stingers.png
new file mode 100644
index 0000000000000000000000000000000000000000..e1a0ca45ab63fa1983dbbb75de087cd4b167328f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/hornet_stingers.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/iron_mail_of_bloodletting.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/iron_mail_of_bloodletting.png
new file mode 100644
index 0000000000000000000000000000000000000000..fef1dbc55e2212025308c627a0bd95f450093b6c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/iron_mail_of_bloodletting.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_1Haxe_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_1Haxe_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..20ff1189a9c503462b011a7ea8f3f5bd108614e3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_1Haxe_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_1Hmace_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_1Hmace_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..99438352da0ad585186e997052d7c84a4164778f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_1Hmace_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_1Hsword_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_1Hsword_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..4ff8e279d6a8ff3259f981a43d21265be404bfeb
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_1Hsword_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_2Haxe_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_2Haxe_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..b371f04b01b974b3bbe01cf5d0073e8ed9a8e40b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_2Haxe_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_2Hmace_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_2Hmace_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..82b94e7be2f3da097bba297e7ce4a08ea69faa1c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_2Hmace_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_2Hsword_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_2Hsword_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..840708ca19acfc5a1e86b04035f8715409317ead
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_2Hsword_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_amethyst_of_sanctuary.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_amethyst_of_sanctuary.png
new file mode 100644
index 0000000000000000000000000000000000000000..15579f2d654e46bfeafb91b471b18a3df65c4741
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_amethyst_of_sanctuary.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_awaken_staff_of_absorbtion.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_awaken_staff_of_absorbtion.png
new file mode 100644
index 0000000000000000000000000000000000000000..883b139715e94d4fd84c781f0595f65f710bc6f6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_awaken_staff_of_absorbtion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_blighted_maul.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_blighted_maul.png
new file mode 100644
index 0000000000000000000000000000000000000000..a7ee4f5bb156502683d3bd5845c93f6d2b6ce178
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_blighted_maul.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_bloomsoul.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_bloomsoul.png
new file mode 100644
index 0000000000000000000000000000000000000000..ccc209d61e59229e3904c43705b16c8e735395ac
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_bloomsoul.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_borosks_hate.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_borosks_hate.png
new file mode 100644
index 0000000000000000000000000000000000000000..72d15e6b457d5497c2fff309c59f63fe4a5a4bea
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_borosks_hate.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_bow_corpsebow.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_bow_corpsebow.png
new file mode 100644
index 0000000000000000000000000000000000000000..32f8d2517034fa4a2211eb6610cb616df8d54f88
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_bow_corpsebow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_bow_epochs_curve.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_bow_epochs_curve.png
new file mode 100644
index 0000000000000000000000000000000000000000..66b22cb04bbcd69c1bba9a9b3f6ba6b41debcbe4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_bow_epochs_curve.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_champions_will.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_champions_will.png
new file mode 100644
index 0000000000000000000000000000000000000000..03a02534e5183a4a5cd3a629be81bbb965dc820e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_champions_will.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_colaryem.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_colaryem.png
new file mode 100644
index 0000000000000000000000000000000000000000..c8550ca2fd0e2641078bb068cefa19a52c092579
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_colaryem.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_core_of_the_forge.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_core_of_the_forge.png
new file mode 100644
index 0000000000000000000000000000000000000000..1d12ec5d0888203211bd18be0f21633d41352291
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_core_of_the_forge.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_corpus_2.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_corpus_2.png
new file mode 100644
index 0000000000000000000000000000000000000000..1852ae5848ed6217c6c18403285c948614d92d1c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_corpus_2.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_crystal_shard.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_crystal_shard.png
new file mode 100644
index 0000000000000000000000000000000000000000..b185c8095189d57e16bfe02214b50f17d6cfa988
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_crystal_shard.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_dagger_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_dagger_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..5bbbd38e0601e676b45342e12c223c7bfec3d4bd
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_dagger_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_dream_malleus.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_dream_malleus.png
new file mode 100644
index 0000000000000000000000000000000000000000..0d423dec58ce94e32dce3e75a4c811565f7f5865
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_dream_malleus.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_eclipse.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_eclipse.png
new file mode 100644
index 0000000000000000000000000000000000000000..424982fbe36474a15b75e56b2dd99777c5a72cb4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_eclipse.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_eyals_will.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_eyals_will.png
new file mode 100644
index 0000000000000000000000000000000000000000..ef744d693316cd06073f78f42dfd8731b2763b98
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_eyals_will.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_eye_of_the_wyrm.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_eye_of_the_wyrm.png
new file mode 100644
index 0000000000000000000000000000000000000000..54ad08ecfc7bd4cd2e51e15b85f950a76fe8580d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_eye_of_the_wyrm.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_focus_whip.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_focus_whip.png
new file mode 100644
index 0000000000000000000000000000000000000000..3b4795e1fc1a7e80d9efe8b620b2a42ad44fb6c2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_focus_whip.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_genocide.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_genocide.png
new file mode 100644
index 0000000000000000000000000000000000000000..a644d880ee02ce6927831f04a5abc90bf9f5fdbe
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_genocide.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_gravitational_staff.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_gravitational_staff.png
new file mode 100644
index 0000000000000000000000000000000000000000..4a07fcda22e63db09e08d3878ca9d783832692f9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_gravitational_staff.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_great_caller.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_great_caller.png
new file mode 100644
index 0000000000000000000000000000000000000000..ed768285bc8d2d3d55c2ca5b05746956140b8172
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_great_caller.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_guidance.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_guidance.png
new file mode 100644
index 0000000000000000000000000000000000000000..cbbcc0652ae781e39ef05cd65b9cce311bbe69a2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_guidance.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_hareskin_sling.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_hareskin_sling.png
new file mode 100644
index 0000000000000000000000000000000000000000..8a983349fbdd3a103c9454a8920f578d64249de8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_hareskin_sling.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_hydras_bite.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_hydras_bite.png
new file mode 100644
index 0000000000000000000000000000000000000000..06f8a2a0aa55e8f8ff3edef2bac4574396583cd9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_hydras_bite.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_latafayn.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_latafayn.png
new file mode 100644
index 0000000000000000000000000000000000000000..677b4f89f378eb35e5ce1b63ee3fffe787e264dd
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_latafayn.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_merkuls_second_eye.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_merkuls_second_eye.png
new file mode 100644
index 0000000000000000000000000000000000000000..2bf55d90b1a1127ba83e902c61b070007d6d9074
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_merkuls_second_eye.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_nexus_of_the_way.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_nexus_of_the_way.png
new file mode 100644
index 0000000000000000000000000000000000000000..2524f34f6ace1d3c4b76ea568eba4895f217b98f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_nexus_of_the_way.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_nithans_force.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_nithans_force.png
new file mode 100644
index 0000000000000000000000000000000000000000..2cfbe095bc62c432597e84077f4e7d0029fc4388
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_nithans_force.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_obliterator.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_obliterator.png
new file mode 100644
index 0000000000000000000000000000000000000000..820c21a004faae72a7a006e9a9451fb9a0dc74aa
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_obliterator.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_oozing_heart.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_oozing_heart.png
new file mode 100644
index 0000000000000000000000000000000000000000..3a960dacd96dd575ca839995658a22f1c5bfaa4d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_oozing_heart.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_psionic_fury.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_psionic_fury.png
new file mode 100644
index 0000000000000000000000000000000000000000..8f84ea3fa99509314bc984134236f904e9eb7005
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_psionic_fury.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_rod_of_sarrilon.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_rod_of_sarrilon.png
new file mode 100644
index 0000000000000000000000000000000000000000..7ff328689354cbff8fef77a320007e9605497c5b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_rod_of_sarrilon.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_sceptre_of_the_archlich.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_sceptre_of_the_archlich.png
new file mode 100644
index 0000000000000000000000000000000000000000..1258f914115945b2b8cf09caab89347a82ce4682
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_sceptre_of_the_archlich.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_serpents_glare.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_serpents_glare.png
new file mode 100644
index 0000000000000000000000000000000000000000..07cfd4b0eba44aae7c6d27bc7eb951627907bb4b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_serpents_glare.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_shield_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_shield_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..94ba9af840169d3bf0d4af85fc7136b5d7c57b44
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_shield_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_skeletal_claw.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_skeletal_claw.png
new file mode 100644
index 0000000000000000000000000000000000000000..7e6ba46e80101943f4e94ca5648f863d47e30f88
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_skeletal_claw.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_sling_eldoral_last_resort.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_sling_eldoral_last_resort.png
new file mode 100644
index 0000000000000000000000000000000000000000..7e7d494472541b2b4ca56aa11d3248a873b736de
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_sling_eldoral_last_resort.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_spectral_blade.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_spectral_blade.png
new file mode 100644
index 0000000000000000000000000000000000000000..ea5917aaee6145752a45017e76d006dd67b61d57
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_spectral_blade.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_spellcrusher.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_spellcrusher.png
new file mode 100644
index 0000000000000000000000000000000000000000..45b70f89c5c16c9a6b0764b48fb3a5cbf3e9dc0d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_spellcrusher.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_staff_bolbums_big_knocker.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_staff_bolbums_big_knocker.png
new file mode 100644
index 0000000000000000000000000000000000000000..21ca6920b0428070265c65901cc137cffb723b85
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_staff_bolbums_big_knocker.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_staff_broken_bottom_telos.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_staff_broken_bottom_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..afacde0c1cedff0b7422ecf1ce306d385d048db8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_staff_broken_bottom_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_staff_broken_top_telos.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_staff_broken_top_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..6d98a43310511995a06380aded0d6eb13a7a98a0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_staff_broken_top_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_staff_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_staff_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..8549ca1a9a23ff7bc1ca43dac468ce9e3f8a2ac9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_staff_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_staff_kors_fall.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_staff_kors_fall.png
new file mode 100644
index 0000000000000000000000000000000000000000..54baf560ab83f254dba3a84baf07dadf448e9698
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_staff_kors_fall.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_staff_lost_staff_archmage_tarelion.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_staff_lost_staff_archmage_tarelion.png
new file mode 100644
index 0000000000000000000000000000000000000000..1d912ba6d6252a76cd3d41bda3f9a1810b1abfe5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_staff_lost_staff_archmage_tarelion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_staff_of_absorbtion.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_staff_of_absorbtion.png
new file mode 100644
index 0000000000000000000000000000000000000000..3b2768ff0ef193b5fb6545bc8d026466b4db7cc4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_staff_of_absorbtion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_staff_of_arcane_supremacy.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_staff_of_arcane_supremacy.png
new file mode 100644
index 0000000000000000000000000000000000000000..0d645262d19b02ff61c3418cf1a025b75020ca05
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_staff_of_arcane_supremacy.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_staff_of_destruction.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_staff_of_destruction.png
new file mode 100644
index 0000000000000000000000000000000000000000..a6dcff01ff6403f1bc99a00fa7fd607a30bad119
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_staff_of_destruction.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_staff_penitence.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_staff_penitence.png
new file mode 100644
index 0000000000000000000000000000000000000000..eb2181d91b52aa500189dd4a35df07c266daa539
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_staff_penitence.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_staff_voice_of_telos.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_staff_voice_of_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..57a1f6f77423a9b1c11c6b933d479510869e79d6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_staff_voice_of_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_storm_fury.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_storm_fury.png
new file mode 100644
index 0000000000000000000000000000000000000000..ad6906c93ff5154000c80c71f57d1555a095fa0e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_storm_fury.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_stormlash.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_stormlash.png
new file mode 100644
index 0000000000000000000000000000000000000000..90e1170e5a8f8c62d339a5f029176d6581efbe1e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_stormlash.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_surefire.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_surefire.png
new file mode 100644
index 0000000000000000000000000000000000000000..09a32e9fbe3df4db5039e8939d1ad36773f37ccb
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_surefire.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_telos_spire_of_power.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_telos_spire_of_power.png
new file mode 100644
index 0000000000000000000000000000000000000000..f7d0d0ef26306c677a4faa7e082b561ee37189d4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_telos_spire_of_power.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_thaloren_tree_longbow.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_thaloren_tree_longbow.png
new file mode 100644
index 0000000000000000000000000000000000000000..75c878738b00289906ad7132a03cdd53bc705224
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_thaloren_tree_longbow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_trident_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_trident_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..770e14a5d98d4578ffa853dc7e69a0abda8bb30c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_trident_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_umbral_razor.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_umbral_razor.png
new file mode 100644
index 0000000000000000000000000000000000000000..a095455a28f039e32fa538566de6cd529d718297
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_umbral_razor.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_unstoppable_mauler.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_unstoppable_mauler.png
new file mode 100644
index 0000000000000000000000000000000000000000..291dddc1f8723823130c300660000d26358dde97
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_unstoppable_mauler.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_voratun_hammer_of_the_deep_bellow.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_voratun_hammer_of_the_deep_bellow.png
new file mode 100644
index 0000000000000000000000000000000000000000..da46b38a0130f2cb663d269f939477ac8fd44912
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_voratun_hammer_of_the_deep_bellow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_warmaster_gnargs_murderblade.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_warmaster_gnargs_murderblade.png
new file mode 100644
index 0000000000000000000000000000000000000000..bf2c8ca03ea185651e7b6382ef35d9dc2db19abf
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_warmaster_gnargs_murderblade.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_whip_of_urh_rok.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_whip_of_urh_rok.png
new file mode 100644
index 0000000000000000000000000000000000000000..5d8a88020ebfe54d762d56463fb449c1314ca2b7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_whip_of_urh_rok.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_whip_scorpions_tail.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_whip_scorpions_tail.png
new file mode 100644
index 0000000000000000000000000000000000000000..5b5c7335b6d146b5541902304fbab167cb589ba6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_whip_scorpions_tail.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_writhing_essence_of_nightmares.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_writhing_essence_of_nightmares.png
new file mode 100644
index 0000000000000000000000000000000000000000..8f2b62807bb4961c255d8daad9ae37982e830704
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/left_writhing_essence_of_nightmares.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/light_armour_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/light_armour_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..dff3d7e9cf6f44b2977238895a79b3350e6d1379
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/light_armour_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/malslek_the_accursed_hat.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/malslek_the_accursed_hat.png
new file mode 100644
index 0000000000000000000000000000000000000000..fe16a69462969bf3b42f1d465403777c1bdd1a09
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/malslek_the_accursed_hat.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/masochism.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/masochism.png
new file mode 100644
index 0000000000000000000000000000000000000000..fe93bd486b8db83493da4ed0f469e653154c70a4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/masochism.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/massive_armour_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/massive_armour_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..fcd3f120bda40e3e3ef88b7943084d0d7430517f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/massive_armour_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/omniscience.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/omniscience.png
new file mode 100644
index 0000000000000000000000000000000000000000..2d48f689894322502345be72eab55d1bf75c50be
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/omniscience.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/plate_armor_of_the_king.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/plate_armor_of_the_king.png
new file mode 100644
index 0000000000000000000000000000000000000000..4a6a13046eb8dddf25fabd4be42dd303b5ecd9d9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/plate_armor_of_the_king.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/plate_of_the_blackened_mind.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/plate_of_the_blackened_mind.png
new file mode 100644
index 0000000000000000000000000000000000000000..d7b427b908612008b7c48397d8fc18c1c3f55618
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/plate_of_the_blackened_mind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/pouch_of_the_subconscious.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/pouch_of_the_subconscious.png
new file mode 100644
index 0000000000000000000000000000000000000000..5f6e3ba63378de371ad9d42db3b0fc5854c99515
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/pouch_of_the_subconscious.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/quiver_of_domination.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/quiver_of_domination.png
new file mode 100644
index 0000000000000000000000000000000000000000..b795bf5e9d429a650105a813aa99d28b4e132c32
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/quiver_of_domination.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/quiver_of_the_sun.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/quiver_of_the_sun.png
new file mode 100644
index 0000000000000000000000000000000000000000..59a33b4ce2d0a149a36fa07b83a36d8bd0ec5a93
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/quiver_of_the_sun.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/radiance_behind.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/radiance_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..0be5418d1fa5175ae20d765c8dde8d989ade04c0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/radiance_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/radiance_hood.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/radiance_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..113dbfaf2490d65d34f4737d6502f52d3cf036ee
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/radiance_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/radiance_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/radiance_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..35bb26d8b745de61f7b8c6111ae6a35c5961ed93
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/radiance_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_1Haxe_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_1Haxe_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..6387823a6d1ec1b54aa3510af43ed7b654d99ec1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_1Haxe_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_1Hmace_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_1Hmace_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..2eea50c384167aedc69f9c32cd88c093763713c4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_1Hmace_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_1Hsword_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_1Hsword_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..2c121dd7e51deffdd78d36167667167d490a3bb7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_1Hsword_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_2Haxe_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_2Haxe_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..306b01c08967dce92fe3bd4d5cf52e186206e853
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_2Haxe_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_2Hmace_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_2Hmace_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..c161f67bcd364d5403130c9ba9312eaef95462ad
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_2Hmace_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_2Hsword_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_2Hsword_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..2bd1040afbad76a5b86ededa554f826129b5742b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_2Hsword_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_amethyst_of_sanctuary.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_amethyst_of_sanctuary.png
new file mode 100644
index 0000000000000000000000000000000000000000..6b0bada508d9c6cf04e2148e751e0301096d4fb3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_amethyst_of_sanctuary.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_awaken_staff_of_absorbtion.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_awaken_staff_of_absorbtion.png
new file mode 100644
index 0000000000000000000000000000000000000000..137fa25ee0f45265018d3cb1911175d9423a43fd
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_awaken_staff_of_absorbtion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_blighted_maul.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_blighted_maul.png
new file mode 100644
index 0000000000000000000000000000000000000000..c5cb6d1182dbf275dee24c7e0f1f292352494f03
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_blighted_maul.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_bloomsoul.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_bloomsoul.png
new file mode 100644
index 0000000000000000000000000000000000000000..b238a4ed3112b310ffa51d2d92b0cea12fb5d3a4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_bloomsoul.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_borosks_hate.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_borosks_hate.png
new file mode 100644
index 0000000000000000000000000000000000000000..6b594efaceca201333a718d0eb2ca30d72bb2929
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_borosks_hate.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_bow_corpsebow.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_bow_corpsebow.png
new file mode 100644
index 0000000000000000000000000000000000000000..fc4daa0246468c17c2bdf83e30ade493db115b45
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_bow_corpsebow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_bow_epochs_curve.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_bow_epochs_curve.png
new file mode 100644
index 0000000000000000000000000000000000000000..8cc4fb526d790138868a07f0518f88ca072b0039
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_bow_epochs_curve.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_champions_will.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_champions_will.png
new file mode 100644
index 0000000000000000000000000000000000000000..1f5f7ffba1ace0107cb3b4e5e74edc40f61203c2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_champions_will.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_colaryem.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_colaryem.png
new file mode 100644
index 0000000000000000000000000000000000000000..2dd1558e67cae14d856c310e28566a9e65d8fa2d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_colaryem.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_core_of_the_forge.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_core_of_the_forge.png
new file mode 100644
index 0000000000000000000000000000000000000000..a760b14ba71a88b88777095106517122d3ce91ba
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_core_of_the_forge.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_corpus_2.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_corpus_2.png
new file mode 100644
index 0000000000000000000000000000000000000000..d27c07929fb4560d9174ffffdb577540166c2ede
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_corpus_2.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_crystal_shard.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_crystal_shard.png
new file mode 100644
index 0000000000000000000000000000000000000000..3c8b289f08c93e96ec217ccc902fcf659a4b9704
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_crystal_shard.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_dagger_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_dagger_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..13b5fa4e8772f60d53f0fbf6f050a6fa188630b3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_dagger_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_dream_malleus.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_dream_malleus.png
new file mode 100644
index 0000000000000000000000000000000000000000..10926513a1adbc359d16e0d1d8cd8f4e717c5f5e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_dream_malleus.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_eclipse.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_eclipse.png
new file mode 100644
index 0000000000000000000000000000000000000000..263c567e28300a54ba4ea1f109f79ce1000954fa
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_eclipse.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_eyals_will.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_eyals_will.png
new file mode 100644
index 0000000000000000000000000000000000000000..a56474f2e3e30a7d758d7de885388914a2d9dc76
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_eyals_will.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_eye_of_the_wyrm.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_eye_of_the_wyrm.png
new file mode 100644
index 0000000000000000000000000000000000000000..489b3c9e3539c70960c703531b4801670f5ca36c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_eye_of_the_wyrm.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_focus_whip.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_focus_whip.png
new file mode 100644
index 0000000000000000000000000000000000000000..fdf7c6e1791d68127be4b9c00221b82663a8cc52
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_focus_whip.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_genocide.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_genocide.png
new file mode 100644
index 0000000000000000000000000000000000000000..23cd1742427878792bd4a71500a53378315e53d0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_genocide.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_gravitational_staff.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_gravitational_staff.png
new file mode 100644
index 0000000000000000000000000000000000000000..3b890fafd77ad0fe5599aad03a73d5df19679ec7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_gravitational_staff.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_great_caller.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_great_caller.png
new file mode 100644
index 0000000000000000000000000000000000000000..844b7c9a6165fe4ed7a6c1c57c75ce7b95c33b62
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_great_caller.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_guidance.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_guidance.png
new file mode 100644
index 0000000000000000000000000000000000000000..cbe61844f6160ba5062b9b0f2645e504eb3ab0ba
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_guidance.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_hareskin_sling.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_hareskin_sling.png
new file mode 100644
index 0000000000000000000000000000000000000000..5285be1f2721cae771b4f5102bf4cbfb2d27bc68
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_hareskin_sling.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_hydras_bite.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_hydras_bite.png
new file mode 100644
index 0000000000000000000000000000000000000000..3f5fba6d179a6e827d8a4f1f47076d49f3ab2b0d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_hydras_bite.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_latafayn.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_latafayn.png
new file mode 100644
index 0000000000000000000000000000000000000000..fb69b41cb8c0b23cec3514e5030b1bc09be15943
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_latafayn.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_merkuls_second_eye.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_merkuls_second_eye.png
new file mode 100644
index 0000000000000000000000000000000000000000..e2e9d13823ef672cd833ad535b918dd9c56de3a5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_merkuls_second_eye.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_nexus_of_the_way.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_nexus_of_the_way.png
new file mode 100644
index 0000000000000000000000000000000000000000..138a7953bfb862bb7cad549be64c26ab369870ea
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_nexus_of_the_way.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_nithans_force.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_nithans_force.png
new file mode 100644
index 0000000000000000000000000000000000000000..579ddac46b629a537f38f1dd3cc41c85ccf5d7db
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_nithans_force.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_obliterator.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_obliterator.png
new file mode 100644
index 0000000000000000000000000000000000000000..5a5612e5e006627929c521eb634e20c31e2116fb
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_obliterator.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_oozing_heart.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_oozing_heart.png
new file mode 100644
index 0000000000000000000000000000000000000000..d07cb1060033badb4bd07c1d8c9990a3244352c6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_oozing_heart.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_psionic_fury.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_psionic_fury.png
new file mode 100644
index 0000000000000000000000000000000000000000..136751d43fe2e2b6c930b3e59fd6a89118c1f7c7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_psionic_fury.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_rod_of_sarrilon.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_rod_of_sarrilon.png
new file mode 100644
index 0000000000000000000000000000000000000000..0da6fc4c17f5e5ec1993a83def08585b3f30d27e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_rod_of_sarrilon.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_sceptre_of_the_archlich.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_sceptre_of_the_archlich.png
new file mode 100644
index 0000000000000000000000000000000000000000..b65d44140b4688e03103ebeb7bdd28a352272204
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_sceptre_of_the_archlich.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_serpents_glare.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_serpents_glare.png
new file mode 100644
index 0000000000000000000000000000000000000000..25c8341e8d999ad8395b8ae242db40ce0849803c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_serpents_glare.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_shield_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_shield_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..43b7757286e5b1822e31912cadb7d55ade9af6b0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_shield_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_skeletal_claw.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_skeletal_claw.png
new file mode 100644
index 0000000000000000000000000000000000000000..9f6c07402187d49603b17f25becbd2605b0d6d3b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_skeletal_claw.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_sling_eldoral_last_resort.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_sling_eldoral_last_resort.png
new file mode 100644
index 0000000000000000000000000000000000000000..93dd5735f0f70d4fe300a1f2703350a039c3bbd7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_sling_eldoral_last_resort.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_spectral_blade.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_spectral_blade.png
new file mode 100644
index 0000000000000000000000000000000000000000..02a8e0efa40e165fe263818be512c5d423b3ff7c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_spectral_blade.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_spellcrusher.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_spellcrusher.png
new file mode 100644
index 0000000000000000000000000000000000000000..04c254b217c3d964d45d99fb4b4ac7d698c0cf1d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_spellcrusher.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_staff_bolbums_big_knocker.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_staff_bolbums_big_knocker.png
new file mode 100644
index 0000000000000000000000000000000000000000..7cd29859f31e1e31468cb408ce60b203022f8733
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_staff_bolbums_big_knocker.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_staff_broken_bottom_telos.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_staff_broken_bottom_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..8707500d7fd281382dd98b4bc0c35f594e0b9205
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_staff_broken_bottom_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_staff_broken_top_telos.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_staff_broken_top_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..d578ecc520a8571ab2b737d04ac204a6d50cbff1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_staff_broken_top_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_staff_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_staff_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..5b9220a0f1d8e53298543bd8271bf58ca226511d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_staff_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_staff_kors_fall.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_staff_kors_fall.png
new file mode 100644
index 0000000000000000000000000000000000000000..2a7d8c3a1600c21e0a299eb8512300b64a138ff2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_staff_kors_fall.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_staff_lost_staff_archmage_tarelion.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_staff_lost_staff_archmage_tarelion.png
new file mode 100644
index 0000000000000000000000000000000000000000..39eac3861a108c0333f4e60995af25e5690d469e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_staff_lost_staff_archmage_tarelion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_staff_of_absorbtion.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_staff_of_absorbtion.png
new file mode 100644
index 0000000000000000000000000000000000000000..8d2ee4f047226a45e587255e2b70a18f57248cd5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_staff_of_absorbtion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_staff_of_arcane_supremacy.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_staff_of_arcane_supremacy.png
new file mode 100644
index 0000000000000000000000000000000000000000..b47b7a58ded7dc7874f224a4b9ed86f464e227d5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_staff_of_arcane_supremacy.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_staff_of_destruction.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_staff_of_destruction.png
new file mode 100644
index 0000000000000000000000000000000000000000..fe8ef3604b2b8889708c4e773d9b948e9f5c8f97
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_staff_of_destruction.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_staff_penitence.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_staff_penitence.png
new file mode 100644
index 0000000000000000000000000000000000000000..6fffd0b8d02693836c38f7be59f983c066768e94
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_staff_penitence.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_staff_voice_of_telos.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_staff_voice_of_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..df5b96643227fbdc59e59b9eaf8c69728a4e61d3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_staff_voice_of_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_storm_fury.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_storm_fury.png
new file mode 100644
index 0000000000000000000000000000000000000000..8a6a9e5f29ee287262cba840db49ecd41f8830f7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_storm_fury.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_stormlash.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_stormlash.png
new file mode 100644
index 0000000000000000000000000000000000000000..20487a16861ea37708de16126e4f0f0d327c4569
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_stormlash.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_surefire.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_surefire.png
new file mode 100644
index 0000000000000000000000000000000000000000..f489be0772f35b4b2a81fae77d34ebd21ef7ee15
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_surefire.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_telos_spire_of_power.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_telos_spire_of_power.png
new file mode 100644
index 0000000000000000000000000000000000000000..fd7cfad8802b5efae94b55bbc6e2fe4823d49e56
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_telos_spire_of_power.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_thaloren_tree_longbow.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_thaloren_tree_longbow.png
new file mode 100644
index 0000000000000000000000000000000000000000..96164e078cedf452569fe6053584a875a39b69a2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_thaloren_tree_longbow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_trident_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_trident_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..9192fb942571d85129f88e83019a7936c28d9a84
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_trident_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_umbral_razor.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_umbral_razor.png
new file mode 100644
index 0000000000000000000000000000000000000000..5dc66b0474ce8fdefc145ed5546773c2a8d9d0bd
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_umbral_razor.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_unstoppable_mauler.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_unstoppable_mauler.png
new file mode 100644
index 0000000000000000000000000000000000000000..aaed1a412c7cc491c795aa466caa3b47a5f045ae
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_unstoppable_mauler.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_voratun_hammer_of_the_deep_bellow.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_voratun_hammer_of_the_deep_bellow.png
new file mode 100644
index 0000000000000000000000000000000000000000..fba74d6a911b535854e28b19a42bdc956d93628a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_voratun_hammer_of_the_deep_bellow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_warmaster_gnargs_murderblade.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_warmaster_gnargs_murderblade.png
new file mode 100644
index 0000000000000000000000000000000000000000..60b7fc3ac3f3f0cc1c396132dfe1859f74983da5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_warmaster_gnargs_murderblade.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_whip_of_urh_rok.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_whip_of_urh_rok.png
new file mode 100644
index 0000000000000000000000000000000000000000..0cc9459877db2e02ebcc85c63cb1ef19359457b2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_whip_of_urh_rok.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_whip_scorpions_tail.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_whip_scorpions_tail.png
new file mode 100644
index 0000000000000000000000000000000000000000..62cc42bb25a1918a36e54526f044dd981f71bc5a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_whip_scorpions_tail.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_writhing_essence_of_nightmares.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_writhing_essence_of_nightmares.png
new file mode 100644
index 0000000000000000000000000000000000000000..c5c23de6acbc72b3bdc19402df673e48be5d6680
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/right_writhing_essence_of_nightmares.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/robe_black_robe.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/robe_black_robe.png
new file mode 100644
index 0000000000000000000000000000000000000000..1b274effc057043c7252f1c7c8f8e994869fa579
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/robe_black_robe.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/robe_firewalker.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/robe_firewalker.png
new file mode 100644
index 0000000000000000000000000000000000000000..489222c446d33271e5609c592d9de980ec35677d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/robe_firewalker.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/robe_of_force.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/robe_of_force.png
new file mode 100644
index 0000000000000000000000000000000000000000..9e12e8d7da2f8eac386a8470ef0e6d957f686323
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/robe_of_force.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/robe_spider_silk_robe_spydre.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/robe_spider_silk_robe_spydre.png
new file mode 100644
index 0000000000000000000000000000000000000000..514b06fd5bbfe956421262ea5bfcca676c8c39ab
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/robe_spider_silk_robe_spydre.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/robe_temporal_augmentation_robe.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/robe_temporal_augmentation_robe.png
new file mode 100644
index 0000000000000000000000000000000000000000..f9faeff999306b90e32822fa35674c3a9fef509b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/robe_temporal_augmentation_robe.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/robe_vestments_of_the_conclave.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/robe_vestments_of_the_conclave.png
new file mode 100644
index 0000000000000000000000000000000000000000..e8787c6f3a7de64df2c3d31d79259dc44d444c12
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/robe_vestments_of_the_conclave.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/robes_of_deflection.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/robes_of_deflection.png
new file mode 100644
index 0000000000000000000000000000000000000000..ee41e950d95aca8f9501b6d449ca1cf57a1998c4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/robes_of_deflection.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/scale_mail_of_kroltar.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/scale_mail_of_kroltar.png
new file mode 100644
index 0000000000000000000000000000000000000000..875b65a0e086c17f73e88c9ab2ace4114aae92d7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/scale_mail_of_kroltar.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/scorched_boots.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/scorched_boots.png
new file mode 100644
index 0000000000000000000000000000000000000000..46faf1b174db9402f3aa19dfd0dd0507fc5cc31c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/scorched_boots.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/scorpion_gauntlets.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/scorpion_gauntlets.png
new file mode 100644
index 0000000000000000000000000000000000000000..00abfffbe9975f07d412c941f41ce49161999b9d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/scorpion_gauntlets.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/serpentine_cloak_behind.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/serpentine_cloak_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..be538a3ad7ef6c48471998ee9f94274799be3606
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/serpentine_cloak_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/serpentine_cloak_hood.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/serpentine_cloak_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..5bea0055f6736207ae32863419d7786deee05b62
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/serpentine_cloak_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/serpentine_cloak_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/serpentine_cloak_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..b114c9975f7c7d13d0ff053dce9e6d034185a9d2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/serpentine_cloak_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/shifting_boots.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/shifting_boots.png
new file mode 100644
index 0000000000000000000000000000000000000000..6f6e99931d75c24b58d47a726fa7c14f40563885
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/shifting_boots.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/silk_current.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/silk_current.png
new file mode 100644
index 0000000000000000000000000000000000000000..01490e7cc22f5319f1794d2e3ebaa955dce45e1f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/silk_current.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/sludgegrip.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/sludgegrip.png
new file mode 100644
index 0000000000000000000000000000000000000000..746da40023505ca6b7f4356d9e7776ce97c9b657
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/sludgegrip.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/snow_giant_arm_wraps.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/snow_giant_arm_wraps.png
new file mode 100644
index 0000000000000000000000000000000000000000..ad5647eec5b112e996bedf2305f70a244a606b1c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/snow_giant_arm_wraps.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/spellhunt_remnants.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/spellhunt_remnants.png
new file mode 100644
index 0000000000000000000000000000000000000000..750fd9e75f79a4f3e68723cf7afec2234da64e7f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/spellhunt_remnants.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/star_shot.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/star_shot.png
new file mode 100644
index 0000000000000000000000000000000000000000..2457fca405152f92e863d8c4b8b16731dddd4bc2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/star_shot.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/storm_bringers_gauntlets.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/storm_bringers_gauntlets.png
new file mode 100644
index 0000000000000000000000000000000000000000..3cc265bae86c96072bee34098b517bae3140d6e7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/storm_bringers_gauntlets.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/terrasca.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/terrasca.png
new file mode 100644
index 0000000000000000000000000000000000000000..6775020dc9e16c2f1bdfd9ae9f04c1bae4732ef7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/terrasca.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/the_calm.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/the_calm.png
new file mode 100644
index 0000000000000000000000000000000000000000..ccdc0ef6714108daf9464b4af7ba3e488302c176
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/the_calm.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/the_inner_eye.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/the_inner_eye.png
new file mode 100644
index 0000000000000000000000000000000000000000..d40841904d878fe238ac6dce0256d48a2ecb250f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/the_inner_eye.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/the_titans_quiver.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/the_titans_quiver.png
new file mode 100644
index 0000000000000000000000000000000000000000..109e46ab7486ed77a296bc9c3904d6900c31448a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/the_titans_quiver.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/the_untouchable.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/the_untouchable.png
new file mode 100644
index 0000000000000000000000000000000000000000..a748a73b9b7f715fbb5916aa6bf3233cb76e6b00
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/the_untouchable.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/the_warped_boots.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/the_warped_boots.png
new file mode 100644
index 0000000000000000000000000000000000000000..410d5f1902117f350aae7082c0b98fcbd5a6560c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/the_warped_boots.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/unbreakable_greaves.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/unbreakable_greaves.png
new file mode 100644
index 0000000000000000000000000000000000000000..59cd4111ca191a002a6297bbd73096b056af3795
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/unbreakable_greaves.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/ureslaks_molted_scales_behind.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/ureslaks_molted_scales_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..92ae9e255813df34a4b082fe37ceec7b0232fe8e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/ureslaks_molted_scales_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/ureslaks_molted_scales_hood.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/ureslaks_molted_scales_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..bfe6f15bf88a37bb4523d02abab2869404925fb3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/ureslaks_molted_scales_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/ureslaks_molted_scales_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/ureslaks_molted_scales_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..3ecf9d2c5be6bf527bc39f50ed1bff8223d371bf
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/ureslaks_molted_scales_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/void_quiver.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/void_quiver.png
new file mode 100644
index 0000000000000000000000000000000000000000..f992d3a235b5624cb61b1c02ba3bbbaa16c54953
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/void_quiver.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/wanderers_rest.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/wanderers_rest.png
new file mode 100644
index 0000000000000000000000000000000000000000..82893dfd17297830b455f9e1d0e9476607c31c37
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/wanderers_rest.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/wind_worn_shot.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/wind_worn_shot.png
new file mode 100644
index 0000000000000000000000000000000000000000..1d9cd4072810c4ef61b6d1fea31f535fe54e3dc3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/wind_worn_shot.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/wizard_hat_of_arcane_understanding.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/wizard_hat_of_arcane_understanding.png
new file mode 100644
index 0000000000000000000000000000000000000000..c9c9b0c7b6ce02114f36f655167334bcf390126b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/wizard_hat_of_arcane_understanding.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/wooden_cuirass.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/wooden_cuirass.png
index 3319a0fe1c6795397310dfe805c630a54af85a33..56b446785512424ba4efb3c2edd30e22eb11a7e4 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/wooden_cuirass.png and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/wooden_cuirass.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/wrap_of_stone_behind.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/wrap_of_stone_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..b09ba6b01e4a7043153cca6f9f001eac972696b9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/wrap_of_stone_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/wrap_of_stone_hood.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/wrap_of_stone_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..c875dbdd43427b4277751ae2f98e50cdc31ee800
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/wrap_of_stone_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/wrap_of_stone_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/wrap_of_stone_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..70af843f9f402de5d99d51d571d49593375a1ff6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/wrap_of_stone_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/wyrmbreath.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/wyrmbreath.png
new file mode 100644
index 0000000000000000000000000000000000000000..94f4ba55a6c17252973673616380604039612473
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/wyrmbreath.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/yaldan_baoth.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/yaldan_baoth.png
new file mode 100644
index 0000000000000000000000000000000000000000..77fe155584d0d04d22cd17806dd41c3054fe9250
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/yaldan_baoth.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/yeek_fur_robe.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/yeek_fur_robe.png
new file mode 100644
index 0000000000000000000000000000000000000000..c80d39f322451372ba9e25d0583ae803cb1fd9b6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/special/yeek_fur_robe.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/upper_body_25.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/upper_body_25.png
index 816241bdd6f8cea4df652c67ad916d5b15c700d8..6ef2a9719460779b26b21ae6e41c543dab393abf 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/upper_body_25.png and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/upper_body_25.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/upper_body_29.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/upper_body_29.png
new file mode 100644
index 0000000000000000000000000000000000000000..d858393aacffb11d7cd733fd77ba63141906f605
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/upper_body_29.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/upper_body_30.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/upper_body_30.png
new file mode 100644
index 0000000000000000000000000000000000000000..b03c4f8c10a0187efeeed22d574f547a3b48a147
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/upper_body_30.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/upper_body_31.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/upper_body_31.png
new file mode 100644
index 0000000000000000000000000000000000000000..edb5be059ce5f481c2b376c45733840952f21852
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/upper_body_31.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/upper_body_32.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/upper_body_32.png
new file mode 100644
index 0000000000000000000000000000000000000000..d67008285dc3faaf9e3f7beba9ad5593fc7e1670
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/upper_body_32.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/upper_body_33.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/upper_body_33.png
new file mode 100644
index 0000000000000000000000000000000000000000..9ce7ec60dbc1d7c2dab98dac2a7471bf0122a25a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/upper_body_33.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/upper_body_34.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/upper_body_34.png
new file mode 100644
index 0000000000000000000000000000000000000000..770a4650240ca0dd9ecda23921a2aed206560f0a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/upper_body_34.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/upper_body_35.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/upper_body_35.png
new file mode 100644
index 0000000000000000000000000000000000000000..5c2676e58b503696064149702e844d8a4120de99
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/upper_body_35.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/upper_body_36.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/upper_body_36.png
new file mode 100644
index 0000000000000000000000000000000000000000..48e03bc2f5b1215e5511da2244ede896e30bfde3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/upper_body_36.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/upper_body_37.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/upper_body_37.png
new file mode 100644
index 0000000000000000000000000000000000000000..c970c159293c170d71ed96dc3e176bbdb089531e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/upper_body_37.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/halfling_male/upper_body_38.png b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/upper_body_38.png
new file mode 100644
index 0000000000000000000000000000000000000000..a113752a0940ab66835d54026f6198e7df1c5114
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/halfling_male/upper_body_38.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/cloak_behind_07.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/cloak_behind_07.png
new file mode 100644
index 0000000000000000000000000000000000000000..b0d11889ec32527a967516bcd76e7892eed7e706
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/cloak_behind_07.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/cloak_behind_08.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/cloak_behind_08.png
new file mode 100644
index 0000000000000000000000000000000000000000..77115f9886c8fbb7ed77f41857a94e87298ae858
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/cloak_behind_08.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/cloak_behind_09.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/cloak_behind_09.png
new file mode 100644
index 0000000000000000000000000000000000000000..3f271ffaf414bd9bc0e896fa456577a698894768
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/cloak_behind_09.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/cloak_hood_07.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/cloak_hood_07.png
new file mode 100644
index 0000000000000000000000000000000000000000..56904f89a37d7185fcf9340a24231ebddc4cb120
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/cloak_hood_07.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/cloak_hood_08.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/cloak_hood_08.png
new file mode 100644
index 0000000000000000000000000000000000000000..893647ebb9e414fd7c4153185558c3fa9350fa25
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/cloak_hood_08.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/cloak_hood_09.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/cloak_hood_09.png
new file mode 100644
index 0000000000000000000000000000000000000000..497e627565dae1b4c98b36c9efe6f22382b3d2dc
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/cloak_hood_09.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/cloak_shoulder_07.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/cloak_shoulder_07.png
new file mode 100644
index 0000000000000000000000000000000000000000..307350f3956e86870c0a1e2e26e127f53c7d5c59
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/cloak_shoulder_07.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/cloak_shoulder_08.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/cloak_shoulder_08.png
new file mode 100644
index 0000000000000000000000000000000000000000..6d2265e1662e85adbf536be61cc7762ce69d1f72
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/cloak_shoulder_08.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/cloak_shoulder_09.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/cloak_shoulder_09.png
new file mode 100644
index 0000000000000000000000000000000000000000..0b3ec86f1e57f9628f7a5db5555939fb95def1eb
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/cloak_shoulder_09.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/feet_10.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/feet_10.png
new file mode 100644
index 0000000000000000000000000000000000000000..e429e8f134fa7f7e111ccb19ae6ffab29aec734e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/feet_10.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/feet_11.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/feet_11.png
new file mode 100644
index 0000000000000000000000000000000000000000..5b74190cbc5979725ff13b155bc5b4e6456c18fa
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/feet_11.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/gembag_01.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/gembag_01.png
new file mode 100644
index 0000000000000000000000000000000000000000..a4ea0cf980d2c5c7740f6ec63b32c489bcb83f30
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/gembag_01.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/gembag_02.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/gembag_02.png
new file mode 100644
index 0000000000000000000000000000000000000000..41d9a7621b41d5a4cba975ebf87da77205c45c84
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/gembag_02.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/gembag_03.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/gembag_03.png
new file mode 100644
index 0000000000000000000000000000000000000000..8fe8e13e6907a808c1942d6c051ff6c008b4ead3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/gembag_03.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/gembag_04.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/gembag_04.png
new file mode 100644
index 0000000000000000000000000000000000000000..b8949507f6718386d89e780bbcfbb5447846c20c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/gembag_04.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/gembag_05.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/gembag_05.png
new file mode 100644
index 0000000000000000000000000000000000000000..86cb53b0f1631663037075ff1f72910494f139a1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/gembag_05.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/hands_08.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/hands_08.png
new file mode 100644
index 0000000000000000000000000000000000000000..eddc7ad58d2a212c4e85de7e1849f716fabda0be
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/hands_08.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/hands_09.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/hands_09.png
new file mode 100644
index 0000000000000000000000000000000000000000..e2081ad1fcfc81e5d62227f1c0942fe137796ac3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/hands_09.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/head_19.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/head_19.png
new file mode 100644
index 0000000000000000000000000000000000000000..7cf44a9b6a53be2768efec96c463e013adbd8f28
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/head_19.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/head_20.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/head_20.png
new file mode 100644
index 0000000000000000000000000000000000000000..6846af833499a1f7c3d7a79bb4de583eaf452d4a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/head_20.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/head_21.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/head_21.png
new file mode 100644
index 0000000000000000000000000000000000000000..a336560ca74fa13a667fed0f646ec85d0424c8d4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/head_21.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/head_22.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/head_22.png
new file mode 100644
index 0000000000000000000000000000000000000000..c075f79264d9a3fc240277088b5280707f5abb90
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/head_22.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/head_23.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/head_23.png
new file mode 100644
index 0000000000000000000000000000000000000000..fd16f4e912256e07da1e2328e663c4b3bcaa206d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/head_23.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/lower_body_14.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/lower_body_14.png
new file mode 100644
index 0000000000000000000000000000000000000000..9d7f029cd6d32d9c39da16f2c5986024ac3a415b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/lower_body_14.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/lower_body_15.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/lower_body_15.png
new file mode 100644
index 0000000000000000000000000000000000000000..aceaddd53e2da63ada2687b8bb614d2477cfdea2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/lower_body_15.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/lower_body_16.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/lower_body_16.png
new file mode 100644
index 0000000000000000000000000000000000000000..bbd4807fa7f29cf0988a8ea75499636f78114ebe
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/lower_body_16.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/lower_body_17.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/lower_body_17.png
new file mode 100644
index 0000000000000000000000000000000000000000..978016dfa41cb6e7215a8110e6898b884f5c4cc3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/lower_body_17.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/lower_body_18.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/lower_body_18.png
new file mode 100644
index 0000000000000000000000000000000000000000..1c720a829ba3dc55b1b5305b9384c7eea4bbec26
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/lower_body_18.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/lower_body_19.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/lower_body_19.png
new file mode 100644
index 0000000000000000000000000000000000000000..d785fd194c21597ad701c305ce74439e0b2c9caf
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/lower_body_19.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/quiver_01.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/quiver_01.png
new file mode 100644
index 0000000000000000000000000000000000000000..bb5a1f861102337a52ae1c8c944600bcd5454ac4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/quiver_01.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/quiver_02.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/quiver_02.png
new file mode 100644
index 0000000000000000000000000000000000000000..59593a7127e345baf35a5b178c0a201bc4dc8711
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/quiver_02.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/quiver_03.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/quiver_03.png
new file mode 100644
index 0000000000000000000000000000000000000000..fa8acc1ea8287693ee728dfb28daa59c86ef84cc
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/quiver_03.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/quiver_04.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/quiver_04.png
new file mode 100644
index 0000000000000000000000000000000000000000..d80536ea86da489d3f6e25427bbe2b24cf04657b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/quiver_04.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/quiver_05.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/quiver_05.png
new file mode 100644
index 0000000000000000000000000000000000000000..208e8ce7531c664a8af421a4ae4fad7552bedb37
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/quiver_05.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/shotbag_01.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/shotbag_01.png
new file mode 100644
index 0000000000000000000000000000000000000000..f8cdf8e3c382166f33f6e3efa0e6ce9ddffaf536
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/shotbag_01.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/shotbag_02.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/shotbag_02.png
new file mode 100644
index 0000000000000000000000000000000000000000..d65ed7454c78637e7de5ebba1242f16657ae3ee1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/shotbag_02.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/shotbag_03.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/shotbag_03.png
new file mode 100644
index 0000000000000000000000000000000000000000..3c34d68a5a01b67c8676f6c797f2df2e23409f3f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/shotbag_03.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/shotbag_04.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/shotbag_04.png
new file mode 100644
index 0000000000000000000000000000000000000000..2e375c17fce019714fb42dc01b15eef2525c8ecf
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/shotbag_04.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/shotbag_05.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/shotbag_05.png
new file mode 100644
index 0000000000000000000000000000000000000000..8c054d648a267b235beca2a4fca6efd81ba10a42
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/shotbag_05.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/aether_walk.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/aether_walk.png
new file mode 100644
index 0000000000000000000000000000000000000000..4d009042fbf801e8f6f581c15f92fb7730900a04
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/aether_walk.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/arkuls_seige_arrows.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/arkuls_seige_arrows.png
new file mode 100644
index 0000000000000000000000000000000000000000..8d6170558f88b12fc79ddc163c1c8226bb37e4f7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/arkuls_seige_arrows.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/armor_chromatic_harness.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/armor_chromatic_harness.png
new file mode 100644
index 0000000000000000000000000000000000000000..9105935d0fa871474857446a98099120c27bd170
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/armor_chromatic_harness.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/armor_cuirass_of_the_thronesmen.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/armor_cuirass_of_the_thronesmen.png
new file mode 100644
index 0000000000000000000000000000000000000000..82e6c3aa9b03d3b5b6a80471bb50a517bbe7c4d0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/armor_cuirass_of_the_thronesmen.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/armor_natures_blessing.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/armor_natures_blessing.png
new file mode 100644
index 0000000000000000000000000000000000000000..f7d13b6173c4d71eb3f5e9ea0126bb13ffc4f4bd
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/armor_natures_blessing.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/armor_plate_borfasts_cage.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/armor_plate_borfasts_cage.png
new file mode 100644
index 0000000000000000000000000000000000000000..ed1f757ccae0c9c7cb3cc2683989eeda520f346d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/armor_plate_borfasts_cage.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/armor_rogue_plight.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/armor_rogue_plight.png
new file mode 100644
index 0000000000000000000000000000000000000000..93eea5f8e7eebf3d1494376113220a0a1753134b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/armor_rogue_plight.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/behemoth_skin.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/behemoth_skin.png
new file mode 100644
index 0000000000000000000000000000000000000000..f2c26917715ee219dc60b2fd90b726d3b8538d58
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/behemoth_skin.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/black_cloak_behind.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/black_cloak_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..5bfd578117226fc688e5327908faff4f64fe4e75
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/black_cloak_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/black_cloak_hood.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/black_cloak_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..da08ea3f72ebd158dde2f65bf7993685dd863198
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/black_cloak_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/black_cloak_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/black_cloak_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..767155e215956755848235bf1d9ee03087185404
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/black_cloak_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/boots_edens_guile.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/boots_edens_guile.png
new file mode 100644
index 0000000000000000000000000000000000000000..0f8649f011dafb3e3f8fb8f0c9933abf21d50c23
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/boots_edens_guile.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/boots_of_the_hunter.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/boots_of_the_hunter.png
new file mode 100644
index 0000000000000000000000000000000000000000..35ef98979eba6e49d963dcfe360fc63aefbddc4e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/boots_of_the_hunter.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/breath_of_eyal.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/breath_of_eyal.png
new file mode 100644
index 0000000000000000000000000000000000000000..f523b7f37dfb72d1e2bb2a67b8d4aa9ab2b79fb3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/breath_of_eyal.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/cinderfeet.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/cinderfeet.png
new file mode 100644
index 0000000000000000000000000000000000000000..48fbf2206621d4918cf07bf75b8324491577bbc5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/cinderfeet.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/cloak_threads_of_fate_behind.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/cloak_threads_of_fate_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..f9c1522a8764e76543857ca9f6ab207ab10fee86
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/cloak_threads_of_fate_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/cloak_threads_of_fate_hood.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/cloak_threads_of_fate_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..0644785a1436cf275c5301adfb21620cf54e189e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/cloak_threads_of_fate_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/cloak_threads_of_fate_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/cloak_threads_of_fate_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..57004c288934683bb00f24442c8f6f1e5caa378c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/cloak_threads_of_fate_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/cloak_winds_whisper_behind.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/cloak_winds_whisper_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..c284898c7d93f638c63e14b22e4508acace44ba0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/cloak_winds_whisper_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/cloak_winds_whisper_hood.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/cloak_winds_whisper_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..a300929d5319e2baf03f58f543aa1a0da01dba1a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/cloak_winds_whisper_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/cloak_winds_whisper_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/cloak_winds_whisper_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..581b3cae5a7d2bbdd84f816e0f0cff21ed1e9527
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/cloak_winds_whisper_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/cloth_armour_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/cloth_armour_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..3bf249ad7e52a65603ac13e33c1008efa351039b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/cloth_armour_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/cloth_of_dreams_behind.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/cloth_of_dreams_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..704654a5d2c611c0364c5c91d80968b8a4dca795
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/cloth_of_dreams_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/cloth_of_dreams_hood.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/cloth_of_dreams_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..1c896e7c4b3b26dd18fac6f0496616cca755db2c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/cloth_of_dreams_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/cloth_of_dreams_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/cloth_of_dreams_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..5d96a36ae0599583ead93842995beb325e2b79c5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/cloth_of_dreams_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/corrupted_gaze.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/corrupted_gaze.png
new file mode 100644
index 0000000000000000000000000000000000000000..9e7d20a0143cc96ddaa6f2b55d52c9a7ce9f4387
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/corrupted_gaze.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/crimson_robe.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/crimson_robe.png
new file mode 100644
index 0000000000000000000000000000000000000000..cfd4e57ec044dd492416e40398ead3a1ba938036
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/crimson_robe.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/crown_of_burning_pain.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/crown_of_burning_pain.png
new file mode 100644
index 0000000000000000000000000000000000000000..f1a41c22dbba14db2e989fc15dc19649d4de6f03
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/crown_of_burning_pain.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/crown_of_command.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/crown_of_command.png
new file mode 100644
index 0000000000000000000000000000000000000000..43d00df734e585aceb1beb6e6dda3a27c112e184
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/crown_of_command.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/crown_of_eternal_night.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/crown_of_eternal_night.png
new file mode 100644
index 0000000000000000000000000000000000000000..0c78736a1e00468beb2edbbbdbafb6377de9ae89
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/crown_of_eternal_night.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/crown_of_the_elements.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/crown_of_the_elements.png
new file mode 100644
index 0000000000000000000000000000000000000000..60f2877b8a3a6db34feff0feba42eb1d8411dba0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/crown_of_the_elements.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/crystles_astral_bindings.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/crystles_astral_bindings.png
new file mode 100644
index 0000000000000000000000000000000000000000..df228cfe5fb40b259a404897de8be8fa66c57532
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/crystles_astral_bindings.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/dakhtuns_gauntlets.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/dakhtuns_gauntlets.png
new file mode 100644
index 0000000000000000000000000000000000000000..28de6bbc92da185eb668d13e2348c4ca5824c183
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/dakhtuns_gauntlets.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/deaths_embrace.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/deaths_embrace.png
new file mode 100644
index 0000000000000000000000000000000000000000..84f791afd82e7d566691b814ce994897fe7025e2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/deaths_embrace.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/decayed_visage.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/decayed_visage.png
new file mode 100644
index 0000000000000000000000000000000000000000..8e4be28733180a3bc3bfbc1af3e2219216324666
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/decayed_visage.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/destalas_scales_behind.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/destalas_scales_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..2c81651dbc72d64827ff41563cd75c4f5eef988b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/destalas_scales_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/destalas_scales_whisper_hood.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/destalas_scales_whisper_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..93e478477f40534256807bf84d358f457360e5b5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/destalas_scales_whisper_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/destalas_scales_whisper_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/destalas_scales_whisper_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..a2d70fb7b51bf155d99a04cf5dff8784516cd663
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/destalas_scales_whisper_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/dgs_clothes.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/dgs_clothes.png
index dcb6c1b0744213b32bbd8bb87c05b49233f54105..4ca8b6e231b0da8bd11aed9cafe3aecf50df4002 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/dgs_clothes.png and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/dgs_clothes.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/diadem_alettas_diadem.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/diadem_alettas_diadem.png
new file mode 100644
index 0000000000000000000000000000000000000000..0610549b5f27f921c8d892819cb87e641734f929
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/diadem_alettas_diadem.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/dragon_helm_of_kroltar.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/dragon_helm_of_kroltar.png
new file mode 100644
index 0000000000000000000000000000000000000000..fdad3cbd6d99e125ceab881a0c76d44b200bf931
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/dragon_helm_of_kroltar.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/dragonskull_helmet.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/dragonskull_helmet.png
new file mode 100644
index 0000000000000000000000000000000000000000..aeefb3b7e425c3ead6c19e6ab3ced9f1e83e8499
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/dragonskull_helmet.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/eel_skin_armor.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/eel_skin_armor.png
new file mode 100644
index 0000000000000000000000000000000000000000..f9debc14d7b3f2f04be06631d532f5039f766c22
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/eel_skin_armor.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/ethereal_embrace_behind.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/ethereal_embrace_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..bd1cb20c71b0c62fddcf037a02eec8cb5e1fa1b0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/ethereal_embrace_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/ethereal_embrace_hood.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/ethereal_embrace_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..859456fa0f4fe8678f94cb3f99ac537a088d3f94
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/ethereal_embrace_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/ethereal_embrace_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/ethereal_embrace_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..d36ca4a6c81ea21b31199265eed7117f39433668
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/ethereal_embrace_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/evermoss_robe.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/evermoss_robe.png
new file mode 100644
index 0000000000000000000000000000000000000000..bdc37915b38747569b3506a4e24863daeddcb80f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/evermoss_robe.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/eye_of_the_forest.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/eye_of_the_forest.png
new file mode 100644
index 0000000000000000000000000000000000000000..52c4a22888f38427711dfae3ca1f0910be05e5a1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/eye_of_the_forest.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/fist_of_the_destroyer.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/fist_of_the_destroyer.png
new file mode 100644
index 0000000000000000000000000000000000000000..f38b9be48cc4b97d8d32c27a0c2cf4f7143c6acf
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/fist_of_the_destroyer.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/frost_treads.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/frost_treads.png
new file mode 100644
index 0000000000000000000000000000000000000000..6f6a978f88f64643eb49ce611cc629ea395ab875
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/frost_treads.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/frozen_shards.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/frozen_shards.png
new file mode 100644
index 0000000000000000000000000000000000000000..132dc6be7558346ab9406373cb2185a4a1394ff9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/frozen_shards.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/frozen_shroud_behind.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/frozen_shroud_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..82a5896b4dd8dbbcf2e18443d2a7aaf546c04224
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/frozen_shroud_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/frozen_shroud_hood.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/frozen_shroud_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..8251841ff56194a2789c4ddace523871cd7b3c41
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/frozen_shroud_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/frozen_shroud_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/frozen_shroud_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..ee8d3db669ec9dcfd8f4ca10ed70dcfe728a7460
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/frozen_shroud_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/gauntlets_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/gauntlets_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..2070c428dd48d42230a9af04c080d583ac13966e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/gauntlets_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/gloves_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/gloves_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..01c92c2faa192e78ff57ad4c6a838aafbd72b2aa
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/gloves_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/gloves_flamewrought.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/gloves_flamewrought.png
new file mode 100644
index 0000000000000000000000000000000000000000..2eb6663d67306a407ead9f219f7d062145867588
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/gloves_flamewrought.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/gloves_of_the_firm_hand.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/gloves_of_the_firm_hand.png
new file mode 100644
index 0000000000000000000000000000000000000000..22e9febe35889690eee5559430e67b1d6cd8bf1c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/gloves_of_the_firm_hand.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/grip_of_death.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/grip_of_death.png
index 2078c3cfcc265909bf9967aaa19f68c5c7d9263c..edeb81664905fd19718b2b7d16217207ddba7c9c 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/grip_of_death.png and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/grip_of_death.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/guise_of_the_hated_behind.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/guise_of_the_hated_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..ed7e5188ea5e185d4f9e26cd8bce87b99c47047f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/guise_of_the_hated_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/guise_of_the_hated_hood.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/guise_of_the_hated_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..26a2750933b5ec48fa4abb6a5251931f6f6499da
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/guise_of_the_hated_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/guise_of_the_hated_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/guise_of_the_hated_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..fdb6a95fb3f81d8b9269d7b9503d885de5ed9222
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/guise_of_the_hated_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/hand_of_the_worldshaper.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/hand_of_the_worldshaper.png
new file mode 100644
index 0000000000000000000000000000000000000000..353b295720fbb19776917ad18dd76757d6760520
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/hand_of_the_worldshaper.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/harkor_zun_gauntlets.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/harkor_zun_gauntlets.png
new file mode 100644
index 0000000000000000000000000000000000000000..8bf96efd55eb4519cf06a47a0107390175f95699
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/harkor_zun_gauntlets.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/heavy_armour_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/heavy_armour_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..09878bccdcd7771a118a9ac72fc5e66d1890231e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/heavy_armour_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/helm_of_garkul.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/helm_of_garkul.png
new file mode 100644
index 0000000000000000000000000000000000000000..8cad53c18a374cc60ae6406481b6276bc671dc28
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/helm_of_garkul.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/helm_of_the_dwarven_emperors.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/helm_of_the_dwarven_emperors.png
new file mode 100644
index 0000000000000000000000000000000000000000..958c36cc163c77ff2a83dc11e2d27f1bbc0378b3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/helm_of_the_dwarven_emperors.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/hornet_stingers.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/hornet_stingers.png
new file mode 100644
index 0000000000000000000000000000000000000000..76b820d6e60cefa849d1f7c362c0e8934aca5b49
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/hornet_stingers.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/iron_mail_of_bloodletting.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/iron_mail_of_bloodletting.png
new file mode 100644
index 0000000000000000000000000000000000000000..5b42da7cfeae24f79996124e4a66094d28519fd9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/iron_mail_of_bloodletting.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_1Haxe_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_1Haxe_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..71202c27db7bc8496909679d1de09e6e506bf3e9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_1Haxe_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_1Hmace_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_1Hmace_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..f096800b8d62cf389f4df2e9cfc5558316948bb4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_1Hmace_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_1Hsword_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_1Hsword_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..046b7b520492ef74a143283ca630598f0197678b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_1Hsword_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_2Haxe_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_2Haxe_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..3edf80829f22cd211df904275b4ee62427dfe5e1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_2Haxe_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_2Hmace_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_2Hmace_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..c927ee2238aac67381f771f620d85f364014253c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_2Hmace_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_2Hsword_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_2Hsword_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..d7cc9a7986882686182086636c2cfac58335b6d9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_2Hsword_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_amethyst_of_sanctuary.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_amethyst_of_sanctuary.png
new file mode 100644
index 0000000000000000000000000000000000000000..319660ab91e2ccd418fb9549e9cd9dabd737afda
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_amethyst_of_sanctuary.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_awaken_staff_of_absorbtion.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_awaken_staff_of_absorbtion.png
new file mode 100644
index 0000000000000000000000000000000000000000..4c17a6539fe521675b0d28a58685e920650e35ff
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_awaken_staff_of_absorbtion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_blighted_maul.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_blighted_maul.png
new file mode 100644
index 0000000000000000000000000000000000000000..7ce1692e0021f8be12dfa9666b0408eb706387ed
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_blighted_maul.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_bloomsoul.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_bloomsoul.png
new file mode 100644
index 0000000000000000000000000000000000000000..ee0494438a0f562ca9fb81edb5fe11ee4ce86379
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_bloomsoul.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_borosks_hate.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_borosks_hate.png
new file mode 100644
index 0000000000000000000000000000000000000000..1cb770face196e544cb48f0e518e79de694ad58e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_borosks_hate.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_bow_corpsebow.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_bow_corpsebow.png
new file mode 100644
index 0000000000000000000000000000000000000000..40c09b0ba201734462ccdcf9e07cf9e89b7a5eec
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_bow_corpsebow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_bow_epochs_curve.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_bow_epochs_curve.png
new file mode 100644
index 0000000000000000000000000000000000000000..1991b0b2246ee9140b5ee5809b12cec0c94c6070
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_bow_epochs_curve.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_champions_will.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_champions_will.png
new file mode 100644
index 0000000000000000000000000000000000000000..d80b0c7604aa6f4cbfca63c6e9efce6175140bea
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_champions_will.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_colaryem.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_colaryem.png
new file mode 100644
index 0000000000000000000000000000000000000000..d724941625b77d3ed66a595e7ada806eff05d1ad
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_colaryem.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_core_of_the_forge.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_core_of_the_forge.png
new file mode 100644
index 0000000000000000000000000000000000000000..b2c02535df800e3c7f5d76af4c4f57ac3ae5e484
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_core_of_the_forge.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_corpus_2.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_corpus_2.png
new file mode 100644
index 0000000000000000000000000000000000000000..122b448b6cd85338dcf17c52b1799b47c64f10fc
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_corpus_2.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_crystal_shard.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_crystal_shard.png
new file mode 100644
index 0000000000000000000000000000000000000000..0334d308835553999ddd6e851b19b097d41698af
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_crystal_shard.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_dagger_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_dagger_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..53e4cf6464c4b7c7b50987aea22a9052ccb31043
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_dagger_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_dream_malleus.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_dream_malleus.png
new file mode 100644
index 0000000000000000000000000000000000000000..6896f9cedfc35bb816beae9361bdfa9faa562353
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_dream_malleus.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_eclipse.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_eclipse.png
new file mode 100644
index 0000000000000000000000000000000000000000..1cc267b93d5727b522ce1d4883b3ffa0658a8281
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_eclipse.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_eyals_will.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_eyals_will.png
new file mode 100644
index 0000000000000000000000000000000000000000..be656b6331e3f44372ff8666d4394dd806782c9e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_eyals_will.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_eye_of_the_wyrm.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_eye_of_the_wyrm.png
new file mode 100644
index 0000000000000000000000000000000000000000..08978170ce92bdc4314b9ae3d709d301fa08c120
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_eye_of_the_wyrm.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_focus_whip.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_focus_whip.png
new file mode 100644
index 0000000000000000000000000000000000000000..a928b5779d400c617e3c72419d0a0ec70c7a9729
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_focus_whip.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_genocide.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_genocide.png
new file mode 100644
index 0000000000000000000000000000000000000000..0e2ea74fae32126378ff1a1a0ce773681c42debb
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_genocide.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_gravitational_staff.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_gravitational_staff.png
new file mode 100644
index 0000000000000000000000000000000000000000..97163c6b6d10b5ffe05aff17ff894c7866e52ec9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_gravitational_staff.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_great_caller.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_great_caller.png
new file mode 100644
index 0000000000000000000000000000000000000000..db7abea01b1f8c0053e83f239db39319a64240c5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_great_caller.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_guidance.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_guidance.png
new file mode 100644
index 0000000000000000000000000000000000000000..20972b0f85ee5a2aca25c48521775fe7acbe82eb
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_guidance.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_hareskin_sling.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_hareskin_sling.png
new file mode 100644
index 0000000000000000000000000000000000000000..f2499cd5dd6f6ab8565eb5f40246bcf378a25034
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_hareskin_sling.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_hydras_bite.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_hydras_bite.png
new file mode 100644
index 0000000000000000000000000000000000000000..0e005ccacfa91180e83cbbf72e144aa4792a8f34
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_hydras_bite.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_latafayn.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_latafayn.png
new file mode 100644
index 0000000000000000000000000000000000000000..900efd8d55bfa639a18ce3efba2f9438e646abae
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_latafayn.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_merkuls_second_eye.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_merkuls_second_eye.png
new file mode 100644
index 0000000000000000000000000000000000000000..eda2c6bf11865124cd97965d55adeff87a3a4f06
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_merkuls_second_eye.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_nexus_of_the_way.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_nexus_of_the_way.png
new file mode 100644
index 0000000000000000000000000000000000000000..119d9d7fcb642790a859bb0df9e19238eec491e9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_nexus_of_the_way.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_nithans_force.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_nithans_force.png
new file mode 100644
index 0000000000000000000000000000000000000000..2e1b0a4c403f979501014c9bc19f452201f28367
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_nithans_force.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_obliterator.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_obliterator.png
new file mode 100644
index 0000000000000000000000000000000000000000..f3e62d1daf863b15185bd8c6ad8c08230262fa16
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_obliterator.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_oozing_heart.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_oozing_heart.png
new file mode 100644
index 0000000000000000000000000000000000000000..a8a97eb68405f76c9eef5481f64f0f75544f8ba1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_oozing_heart.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_psionic_fury.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_psionic_fury.png
new file mode 100644
index 0000000000000000000000000000000000000000..34f01ec50b5879b8439a33b6a80cd719c61b23a9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_psionic_fury.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_rod_of_sarrilon.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_rod_of_sarrilon.png
new file mode 100644
index 0000000000000000000000000000000000000000..945dfdd8fcefaa0e1d72e0b715fc50798af835f1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_rod_of_sarrilon.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_sceptre_of_the_archlich.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_sceptre_of_the_archlich.png
new file mode 100644
index 0000000000000000000000000000000000000000..07755763472133df5caed0f2dd2017bbd5a8f2d1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_sceptre_of_the_archlich.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_serpents_glare.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_serpents_glare.png
new file mode 100644
index 0000000000000000000000000000000000000000..d9b4c061feb00d596fe8681fd430fa435e2558ed
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_serpents_glare.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_shield_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_shield_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..10dd5f5a5bd929e25600bd56e61e4b13f80ed04f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_shield_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_skeletal_claw.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_skeletal_claw.png
new file mode 100644
index 0000000000000000000000000000000000000000..bef923a08e9ff80aac0a08a7443dc97fa5431d38
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_skeletal_claw.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_sling_eldoral_last_resort.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_sling_eldoral_last_resort.png
new file mode 100644
index 0000000000000000000000000000000000000000..3e7d6c8dbaf226628342ba3d99609d410ff94b03
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_sling_eldoral_last_resort.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_spectral_blade.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_spectral_blade.png
new file mode 100644
index 0000000000000000000000000000000000000000..e472aacac097aec9093e107cca7ea4291e5231b0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_spectral_blade.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_spellcrusher.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_spellcrusher.png
new file mode 100644
index 0000000000000000000000000000000000000000..3ebbaf08fa3cff2400ded146bc81c7925a17d316
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_spellcrusher.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_staff_bolbums_big_knocker.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_staff_bolbums_big_knocker.png
new file mode 100644
index 0000000000000000000000000000000000000000..04002da1bff17a9168e8b6642367cc0091332eb6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_staff_bolbums_big_knocker.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_staff_broken_bottom_telos.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_staff_broken_bottom_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..6ed6541e4be7852ac3abada3e944c08c0bc95efb
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_staff_broken_bottom_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_staff_broken_top_telos.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_staff_broken_top_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..5fa105235bb8a68aba8f3859d8d2d01040db2efa
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_staff_broken_top_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_staff_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_staff_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..3501ff2b11a09c9c44191c26c8d60e6bffba4f8e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_staff_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_staff_kors_fall.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_staff_kors_fall.png
new file mode 100644
index 0000000000000000000000000000000000000000..9b50774c01fdcf203785793da766553ccd6f855b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_staff_kors_fall.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_staff_lost_staff_archmage_tarelion.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_staff_lost_staff_archmage_tarelion.png
new file mode 100644
index 0000000000000000000000000000000000000000..a43d7160872c19656b5a77e5d0323dada1aff56f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_staff_lost_staff_archmage_tarelion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_staff_of_absorbtion.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_staff_of_absorbtion.png
new file mode 100644
index 0000000000000000000000000000000000000000..8e348414251bc6576dd57ad7e4d234fe728c3549
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_staff_of_absorbtion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_staff_of_arcane_supremacy.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_staff_of_arcane_supremacy.png
new file mode 100644
index 0000000000000000000000000000000000000000..89ed4ac0c19cd503ca31e411bc80b78ae782cfb5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_staff_of_arcane_supremacy.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_staff_of_destruction.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_staff_of_destruction.png
new file mode 100644
index 0000000000000000000000000000000000000000..6ede50ea816f4c3353bcab2281b1ab6b0a379817
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_staff_of_destruction.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_staff_penitence.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_staff_penitence.png
new file mode 100644
index 0000000000000000000000000000000000000000..17bb95ccaa341767e7f3a8cf7ef1de425286b3f9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_staff_penitence.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_staff_voice_of_telos.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_staff_voice_of_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..ab56e113e1b58ba31b6ef2db6b569aad5e053672
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_staff_voice_of_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_storm_fury.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_storm_fury.png
new file mode 100644
index 0000000000000000000000000000000000000000..9c817915463a651fbb82d15e70c45d0a7e5f9975
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_storm_fury.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_stormlash.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_stormlash.png
new file mode 100644
index 0000000000000000000000000000000000000000..003cbb8f757419308af8b8a3c94b4b094ba65712
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_stormlash.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_surefire.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_surefire.png
new file mode 100644
index 0000000000000000000000000000000000000000..b6f15efda4da1a227e04a11e610cc8ebfd351130
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_surefire.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_telos_spire_of_power.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_telos_spire_of_power.png
new file mode 100644
index 0000000000000000000000000000000000000000..e2aeb2af9699ab3d44799e6bc05aa66e649fd935
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_telos_spire_of_power.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_thaloren_tree_longbow.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_thaloren_tree_longbow.png
new file mode 100644
index 0000000000000000000000000000000000000000..9e236dae1ee0ff975e68774be1c44af8df7951ac
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_thaloren_tree_longbow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_trident_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_trident_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..35a427446ddd846355c240011da9e2f1caa43b0f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_trident_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_umbral_razor.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_umbral_razor.png
new file mode 100644
index 0000000000000000000000000000000000000000..7e14cef6214eb7d2193cb88c799b9c276cb70528
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_umbral_razor.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_unstoppable_mauler.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_unstoppable_mauler.png
new file mode 100644
index 0000000000000000000000000000000000000000..876e0ee0e714018afccf715d9a8ef419d570e566
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_unstoppable_mauler.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_voratun_hammer_of_the_deep_bellow.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_voratun_hammer_of_the_deep_bellow.png
new file mode 100644
index 0000000000000000000000000000000000000000..087be1074d2a8859604a970d3955b8469575b3ff
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_voratun_hammer_of_the_deep_bellow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_warmaster_gnargs_murderblade.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_warmaster_gnargs_murderblade.png
new file mode 100644
index 0000000000000000000000000000000000000000..79d45d3611e96b640e553c883069a0c8bfc0a77d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_warmaster_gnargs_murderblade.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_whip_of_urh_rok.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_whip_of_urh_rok.png
new file mode 100644
index 0000000000000000000000000000000000000000..b6add49e7b265c2eac5e256cca2cda763f1ac25b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_whip_of_urh_rok.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_whip_scorpions_tail.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_whip_scorpions_tail.png
new file mode 100644
index 0000000000000000000000000000000000000000..66929d1032d2143a9dabffc44abdbab34943ad11
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_whip_scorpions_tail.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_writhing_essence_of_nightmares.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_writhing_essence_of_nightmares.png
new file mode 100644
index 0000000000000000000000000000000000000000..06e9537222c723e713fc745f3033fc6af5b7e96e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/left_writhing_essence_of_nightmares.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/light_armour_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/light_armour_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..e4b019018e0ee41f7cb48b92b93e290896cfcfb7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/light_armour_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/malslek_the_accursed_hat.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/malslek_the_accursed_hat.png
new file mode 100644
index 0000000000000000000000000000000000000000..22bbed8a857f71d17ccfe4deaf7ed5dc94df042d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/malslek_the_accursed_hat.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/masochism.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/masochism.png
new file mode 100644
index 0000000000000000000000000000000000000000..8d049986185fbe8d88b8feb5848d6c5ce0e57f91
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/masochism.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/massive_armour_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/massive_armour_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..5b1b154160a376c84f0727b4539f8acfab6d8d61
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/massive_armour_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/molten_skin.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/molten_skin.png
index 3ae2012b835d925c1432efab820ea3bfb1347cfb..3ce1a27773fd6a872f8e12e12fe78c90f4f827c5 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/molten_skin.png and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/molten_skin.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/omniscience.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/omniscience.png
new file mode 100644
index 0000000000000000000000000000000000000000..13a2a6c10962984b9bbbba78a7bd7cc6413ac107
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/omniscience.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/plate_armor_of_the_king.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/plate_armor_of_the_king.png
new file mode 100644
index 0000000000000000000000000000000000000000..73c654651d356d11548ec4de8a999a183c1c4cb1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/plate_armor_of_the_king.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/plate_of_the_blackened_mind.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/plate_of_the_blackened_mind.png
new file mode 100644
index 0000000000000000000000000000000000000000..b76b3b284de5fe867754364fd52feda85f19b638
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/plate_of_the_blackened_mind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/pouch_of_the_subconscious.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/pouch_of_the_subconscious.png
new file mode 100644
index 0000000000000000000000000000000000000000..41a7499fa6f28c444c132ed4847a74678f1339af
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/pouch_of_the_subconscious.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/quiver_of_domination.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/quiver_of_domination.png
new file mode 100644
index 0000000000000000000000000000000000000000..0250cc01c4bb98dcc665f624175e054741745e8e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/quiver_of_domination.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/quiver_of_the_sun.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/quiver_of_the_sun.png
new file mode 100644
index 0000000000000000000000000000000000000000..a88c24da28ff73d34f47b8019a655b6eeef93465
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/quiver_of_the_sun.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/radiance_behind.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/radiance_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..d97223fbe2fa2c8f601413097b4a9a3fcf3f180d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/radiance_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/radiance_hood.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/radiance_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..2ea72451866f1303e674a9a1629a2ae3630a96ff
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/radiance_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/radiance_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/radiance_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..d4f0fa40133e3868b3635d26f3013abd26542e68
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/radiance_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_1Haxe_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_1Haxe_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..3e0217d628067b82125bca3b25d28d8c5fc0ed03
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_1Haxe_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_1Hmace_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_1Hmace_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..30fb03c67bf8ecd413aa980c3484664c7f87923d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_1Hmace_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_1Hsword_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_1Hsword_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..aa55cafe2a1b7fb6df1f743c98c0b9abb923480c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_1Hsword_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_2Haxe_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_2Haxe_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..683bedd1711c03bea8cc2a6156e30f089707941e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_2Haxe_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_2Hmace_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_2Hmace_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..e988ef51e12dfba2a2ade7ca243a6d1c81227859
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_2Hmace_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_2Hsword_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_2Hsword_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..048bb79b8bd13f0ac6d51099a077e4de36aa4914
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_2Hsword_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_amethyst_of_sanctuary.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_amethyst_of_sanctuary.png
new file mode 100644
index 0000000000000000000000000000000000000000..f4f8db0080ccab2928895c932f120e771808f3f0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_amethyst_of_sanctuary.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_awaken_staff_of_absorbtion.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_awaken_staff_of_absorbtion.png
new file mode 100644
index 0000000000000000000000000000000000000000..9d20996c94a7ba63476444b7cd24f3c67b89851a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_awaken_staff_of_absorbtion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_blighted_maul.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_blighted_maul.png
new file mode 100644
index 0000000000000000000000000000000000000000..b9fd649b59506f9056523522ae64a3ade3cfbdc4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_blighted_maul.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_bloomsoul.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_bloomsoul.png
new file mode 100644
index 0000000000000000000000000000000000000000..b10579bf870eeb003f8e966738ebd70b99ec93d6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_bloomsoul.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_borosks_hate.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_borosks_hate.png
new file mode 100644
index 0000000000000000000000000000000000000000..ac20660a8787a2a72f4f5868bfc6fbfaf491507a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_borosks_hate.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_bow_corpsebow.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_bow_corpsebow.png
new file mode 100644
index 0000000000000000000000000000000000000000..097d62a800c80299db118b8f91ca5b0787da7ac0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_bow_corpsebow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_bow_epochs_curve.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_bow_epochs_curve.png
new file mode 100644
index 0000000000000000000000000000000000000000..4a6b60a7949dc3ea9bd453e02f0b0ca9335e8c71
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_bow_epochs_curve.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_champions_will.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_champions_will.png
new file mode 100644
index 0000000000000000000000000000000000000000..7eac0fb1603c6520f9a989603ab782dc5e339c68
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_champions_will.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_colaryem.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_colaryem.png
new file mode 100644
index 0000000000000000000000000000000000000000..14c9d363dd2ec179d809309282e78dc6dc785912
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_colaryem.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_core_of_the_forge.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_core_of_the_forge.png
new file mode 100644
index 0000000000000000000000000000000000000000..c1e37ed35f922109df75c5517a5bf41ed1555313
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_core_of_the_forge.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_corpus_2.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_corpus_2.png
new file mode 100644
index 0000000000000000000000000000000000000000..bcc1170fe8f33d7196a0fecc811506a045792fd8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_corpus_2.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_crystal_shard.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_crystal_shard.png
new file mode 100644
index 0000000000000000000000000000000000000000..f2831e73fa5a16ba7e922b7f82d65d5a5934e2a2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_crystal_shard.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_dagger_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_dagger_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..7c53c131c1969f2d73a51986948ab1202fc417c9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_dagger_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_dream_malleus.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_dream_malleus.png
new file mode 100644
index 0000000000000000000000000000000000000000..17e1aa41a720c9e23cb84d1f2350600c87f5ded6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_dream_malleus.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_eclipse.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_eclipse.png
new file mode 100644
index 0000000000000000000000000000000000000000..a3978890eab3643d93b901e7538e9c1f0b62db21
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_eclipse.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_eyals_will.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_eyals_will.png
new file mode 100644
index 0000000000000000000000000000000000000000..4d7a7c800dc026a8161aa2b6df47a761894ffc34
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_eyals_will.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_eye_of_the_wyrm.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_eye_of_the_wyrm.png
new file mode 100644
index 0000000000000000000000000000000000000000..b7894641e259ace1db40ca64d65ec85bdd430eec
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_eye_of_the_wyrm.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_focus_whip.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_focus_whip.png
new file mode 100644
index 0000000000000000000000000000000000000000..6e613a04c91d9db65c66915cd369efbb04e53920
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_focus_whip.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_genocide.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_genocide.png
new file mode 100644
index 0000000000000000000000000000000000000000..9b9f396e58461c77a574dc53f59b3dbf59077174
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_genocide.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_gravitational_staff.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_gravitational_staff.png
new file mode 100644
index 0000000000000000000000000000000000000000..7958ef75fcaac9c089d75c787a6b40a92ee4c5b0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_gravitational_staff.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_great_caller.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_great_caller.png
new file mode 100644
index 0000000000000000000000000000000000000000..0c9ed306e035b45e1a39a7281ea2394a8e4ba22f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_great_caller.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_guidance.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_guidance.png
new file mode 100644
index 0000000000000000000000000000000000000000..ae66b6bd855e9916aff14f8aab100a51611aa332
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_guidance.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_hareskin_sling.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_hareskin_sling.png
new file mode 100644
index 0000000000000000000000000000000000000000..912c54da51fdcd74f0097722e597d4f122ae4c27
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_hareskin_sling.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_hydras_bite.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_hydras_bite.png
new file mode 100644
index 0000000000000000000000000000000000000000..05aaf66a42c11bd365ff9e9e837abb750dc039d9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_hydras_bite.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_latafayn.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_latafayn.png
new file mode 100644
index 0000000000000000000000000000000000000000..b26187d2e42c190583bb9394426a0d823a20aea5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_latafayn.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_merkuls_second_eye.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_merkuls_second_eye.png
new file mode 100644
index 0000000000000000000000000000000000000000..d7b6be2f8dad17af5fa4182c491a1c50734b3ade
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_merkuls_second_eye.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_nexus_of_the_way.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_nexus_of_the_way.png
new file mode 100644
index 0000000000000000000000000000000000000000..06fe99a998b57569ab9b09430368917019e34fa1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_nexus_of_the_way.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_nithans_force.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_nithans_force.png
new file mode 100644
index 0000000000000000000000000000000000000000..20810032919ec169acdd28d14da9c4c1b140c3f8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_nithans_force.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_obliterator.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_obliterator.png
new file mode 100644
index 0000000000000000000000000000000000000000..a0e18f97c64bd23cdcbd66bd0a1e341d48658bd6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_obliterator.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_oozing_heart.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_oozing_heart.png
new file mode 100644
index 0000000000000000000000000000000000000000..ef2d4805729f49efa377fe946f49f41812543f81
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_oozing_heart.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_psionic_fury.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_psionic_fury.png
new file mode 100644
index 0000000000000000000000000000000000000000..e8c8a7bee18d7fbba418afb67bfb2d3867079098
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_psionic_fury.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_rod_of_sarrilon.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_rod_of_sarrilon.png
new file mode 100644
index 0000000000000000000000000000000000000000..0ac614a08e10a611f7e8a170b133ed1c3b5132c3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_rod_of_sarrilon.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_sceptre_of_the_archlich.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_sceptre_of_the_archlich.png
new file mode 100644
index 0000000000000000000000000000000000000000..c5abc1a9d4a8f08d9813f015203c789d44c83af5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_sceptre_of_the_archlich.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_serpents_glare.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_serpents_glare.png
new file mode 100644
index 0000000000000000000000000000000000000000..fb9998518e871ac649fc02373bde6a9651e04775
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_serpents_glare.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_shield_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_shield_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..507803031bfc0a1365a4441e0ec862e35e19bd71
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_shield_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_skeletal_claw.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_skeletal_claw.png
new file mode 100644
index 0000000000000000000000000000000000000000..5672fbb57b8554ef67818e8bb6823406a814c880
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_skeletal_claw.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_sling_eldoral_last_resort.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_sling_eldoral_last_resort.png
new file mode 100644
index 0000000000000000000000000000000000000000..9273b59a10a96dbe930991bd16705f37a3104e81
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_sling_eldoral_last_resort.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_spectral_blade.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_spectral_blade.png
new file mode 100644
index 0000000000000000000000000000000000000000..5bc69cf3b8e038d82a61e9ca5c8fc0483176dfd3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_spectral_blade.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_spellcrusher.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_spellcrusher.png
new file mode 100644
index 0000000000000000000000000000000000000000..e6b9f5356a2746d4fee21b29cd2c8d8fef875c8f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_spellcrusher.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_staff_bolbums_big_knocker.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_staff_bolbums_big_knocker.png
new file mode 100644
index 0000000000000000000000000000000000000000..5a9224856ffeb5bc38d23adde3b18b2f91b1307d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_staff_bolbums_big_knocker.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_staff_broken_bottom_telos.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_staff_broken_bottom_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..140846a5e434e113ecd106956ffc1b52a8169306
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_staff_broken_bottom_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_staff_broken_top_telos.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_staff_broken_top_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..5cba646a0f710b5adcc03d30a30a5efd7fc32246
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_staff_broken_top_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_staff_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_staff_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..d454a7003255e104db2cdf830194a8361ce231de
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_staff_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_staff_kors_fall.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_staff_kors_fall.png
new file mode 100644
index 0000000000000000000000000000000000000000..0405e1022b7718d8f2d07c23dff32cb142cad021
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_staff_kors_fall.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_staff_lost_staff_archmage_tarelion.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_staff_lost_staff_archmage_tarelion.png
new file mode 100644
index 0000000000000000000000000000000000000000..1d2f93b053ea3680b4f467783c8175c5c761a59b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_staff_lost_staff_archmage_tarelion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_staff_of_absorbtion.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_staff_of_absorbtion.png
new file mode 100644
index 0000000000000000000000000000000000000000..40e553c4a1b22bcfa03468d72fab93cc77e6420a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_staff_of_absorbtion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_staff_of_arcane_supremacy.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_staff_of_arcane_supremacy.png
new file mode 100644
index 0000000000000000000000000000000000000000..b8d5d044c0e63c61244a1d8471ad49e67938e200
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_staff_of_arcane_supremacy.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_staff_of_destruction.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_staff_of_destruction.png
new file mode 100644
index 0000000000000000000000000000000000000000..94f277b05e723d445d79b998655153131de28b46
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_staff_of_destruction.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_staff_penitence.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_staff_penitence.png
new file mode 100644
index 0000000000000000000000000000000000000000..3f44f3c0231f7d60549c423441ece6e4093831c1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_staff_penitence.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_staff_voice_of_telos.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_staff_voice_of_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..fbfc91071494f2d82ca562c317257971a3beb3cb
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_staff_voice_of_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_storm_fury.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_storm_fury.png
new file mode 100644
index 0000000000000000000000000000000000000000..81a34a187c16415930c5430f17d2c908d48aef06
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_storm_fury.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_stormlash.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_stormlash.png
new file mode 100644
index 0000000000000000000000000000000000000000..d08c9899ae6fdbc8b8f2f16c1596e636ecd9450f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_stormlash.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_surefire.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_surefire.png
new file mode 100644
index 0000000000000000000000000000000000000000..1ee973165d23807845450d8887065700b8940016
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_surefire.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_telos_spire_of_power.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_telos_spire_of_power.png
new file mode 100644
index 0000000000000000000000000000000000000000..357aae583da013704fe72356305f07fcfcdd351b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_telos_spire_of_power.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_thaloren_tree_longbow.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_thaloren_tree_longbow.png
new file mode 100644
index 0000000000000000000000000000000000000000..a52fe8cfff09eacb0d7b81dcd7b6cbea98320f07
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_thaloren_tree_longbow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_trident_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_trident_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..e6868b319ca4c1523bba826bc67b876799ac3a8a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_trident_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_umbral_razor.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_umbral_razor.png
new file mode 100644
index 0000000000000000000000000000000000000000..60df60e184c4c476a74236d9d0d7d6b111981f98
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_umbral_razor.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_unstoppable_mauler.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_unstoppable_mauler.png
new file mode 100644
index 0000000000000000000000000000000000000000..e4678ae70f8d90bb507cab9c2c7207bfb0b2da07
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_unstoppable_mauler.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_voratun_hammer_of_the_deep_bellow.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_voratun_hammer_of_the_deep_bellow.png
new file mode 100644
index 0000000000000000000000000000000000000000..dbc560290fa98c132655f55da4bf311521326cc9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_voratun_hammer_of_the_deep_bellow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_warmaster_gnargs_murderblade.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_warmaster_gnargs_murderblade.png
new file mode 100644
index 0000000000000000000000000000000000000000..d49f76c58f5366e1d67a8a22115d9971cca5fb8b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_warmaster_gnargs_murderblade.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_whip_of_urh_rok.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_whip_of_urh_rok.png
new file mode 100644
index 0000000000000000000000000000000000000000..597004a4072c27165748548614b38dae21ba8657
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_whip_of_urh_rok.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_whip_scorpions_tail.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_whip_scorpions_tail.png
new file mode 100644
index 0000000000000000000000000000000000000000..a6b0668e4a6b76099123cd1e429232dadcde3c71
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_whip_scorpions_tail.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_writhing_essence_of_nightmares.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_writhing_essence_of_nightmares.png
new file mode 100644
index 0000000000000000000000000000000000000000..ba8781e3c8f3bf9408b3f246c971efcb3f058cb4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/right_writhing_essence_of_nightmares.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/robe_black_robe.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/robe_black_robe.png
new file mode 100644
index 0000000000000000000000000000000000000000..700dcdaadf8bef5bfe6a167e42106c2e7e2b3791
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/robe_black_robe.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/robe_firewalker.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/robe_firewalker.png
new file mode 100644
index 0000000000000000000000000000000000000000..56ecd7c5683e92596dbca91283f54075ee918519
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/robe_firewalker.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/robe_of_force.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/robe_of_force.png
new file mode 100644
index 0000000000000000000000000000000000000000..3651e30359e48cf1030ba97f09beea8a2ea14e79
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/robe_of_force.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/robe_spider_silk_robe_spydre.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/robe_spider_silk_robe_spydre.png
new file mode 100644
index 0000000000000000000000000000000000000000..060d39097baa9509b06aa7c7288ad1b7ce037824
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/robe_spider_silk_robe_spydre.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/robe_temporal_augmentation_robe.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/robe_temporal_augmentation_robe.png
new file mode 100644
index 0000000000000000000000000000000000000000..9213d0286a63a9512bec5ab82e55c87eafb568d3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/robe_temporal_augmentation_robe.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/robe_vestments_of_the_conclave.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/robe_vestments_of_the_conclave.png
new file mode 100644
index 0000000000000000000000000000000000000000..e7c9aee5a10d0de3f5c47bcf3cf4a4128d8439f9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/robe_vestments_of_the_conclave.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/robes_of_deflection.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/robes_of_deflection.png
new file mode 100644
index 0000000000000000000000000000000000000000..297f72466c0b2761f988bc927accd1f7e6c0f018
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/robes_of_deflection.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/scale_mail_of_kroltar.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/scale_mail_of_kroltar.png
new file mode 100644
index 0000000000000000000000000000000000000000..fca7cae873288ddb4c673ccfd2858bc25ed0fea4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/scale_mail_of_kroltar.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/scorched_boots.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/scorched_boots.png
new file mode 100644
index 0000000000000000000000000000000000000000..52b8b00334ec4a75f23d65a859e1ee4871258ac5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/scorched_boots.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/scorpion_gauntlets.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/scorpion_gauntlets.png
new file mode 100644
index 0000000000000000000000000000000000000000..cf8ec7c88ecad2f2aafae43a85ba34cb4ede9bb4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/scorpion_gauntlets.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/serpentine_cloak_behind.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/serpentine_cloak_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..11f0457c956883a3abdd7e0fa21d0f4b986bd4a6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/serpentine_cloak_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/serpentine_cloak_hood.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/serpentine_cloak_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..78f9d8ac36dd6397ffebc78931256be7fc517eb6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/serpentine_cloak_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/serpentine_cloak_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/serpentine_cloak_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..c8868f7686b3b767bba0f926b4b37aca543c8b37
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/serpentine_cloak_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/shifting_boots.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/shifting_boots.png
new file mode 100644
index 0000000000000000000000000000000000000000..6fc646849ac3738d6dc6e4a4901ee9cc10909b83
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/shifting_boots.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/silk_current.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/silk_current.png
new file mode 100644
index 0000000000000000000000000000000000000000..64d8a89b231c64cf120a77e664203c0055f82946
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/silk_current.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/skin_of_many.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/skin_of_many.png
index c4afcb07cfc16a66f0eeec9b8199e7ada65844fe..a7eb39435ad93e9aae015e5480ea3bef3034880a 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/skin_of_many.png and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/skin_of_many.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/sludgegrip.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/sludgegrip.png
new file mode 100644
index 0000000000000000000000000000000000000000..5e5225e961ac8d0de52691cab8b3c52c78ccb796
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/sludgegrip.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/snow_giant_arm_wraps.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/snow_giant_arm_wraps.png
new file mode 100644
index 0000000000000000000000000000000000000000..5e394eeced65d08badf3974c576a3119d96b01fb
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/snow_giant_arm_wraps.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/spellhunt_remnants.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/spellhunt_remnants.png
new file mode 100644
index 0000000000000000000000000000000000000000..2bdd281a5fbcb8214d6eeb8efbb2d3f2efc52f4d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/spellhunt_remnants.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/star_shot.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/star_shot.png
new file mode 100644
index 0000000000000000000000000000000000000000..932bdabceea0d321c1f35810df1d63334f0bca22
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/star_shot.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/storm_bringers_gauntlets.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/storm_bringers_gauntlets.png
new file mode 100644
index 0000000000000000000000000000000000000000..643b1749764ec3915595e2fbd6d9e019c3a8c6a7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/storm_bringers_gauntlets.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/terrasca.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/terrasca.png
new file mode 100644
index 0000000000000000000000000000000000000000..80f4f86f659a7fece747731d360ced59524cbf2c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/terrasca.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/the_calm.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/the_calm.png
new file mode 100644
index 0000000000000000000000000000000000000000..b0ba27aa693547e52abff390ccdae066ebfa10f4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/the_calm.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/the_inner_eye.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/the_inner_eye.png
new file mode 100644
index 0000000000000000000000000000000000000000..7c8d85b21b3baa4923f18cfbe708580d3bf75819
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/the_inner_eye.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/the_titans_quiver.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/the_titans_quiver.png
new file mode 100644
index 0000000000000000000000000000000000000000..930a2cd65e9f3b7ddb89c354c4040fe3558d6d35
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/the_titans_quiver.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/the_untouchable.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/the_untouchable.png
new file mode 100644
index 0000000000000000000000000000000000000000..b7426ae8527b9741d0b765c07c003bd31c2fbcdf
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/the_untouchable.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/the_warped_boots.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/the_warped_boots.png
new file mode 100644
index 0000000000000000000000000000000000000000..c2d6e63d118fee14f32c3fe51542d7c97f52103b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/the_warped_boots.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/unbreakable_greaves.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/unbreakable_greaves.png
new file mode 100644
index 0000000000000000000000000000000000000000..b110700da80f7896f26d6e98764ba1a80d30ac5e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/unbreakable_greaves.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/ureslaks_molted_scales_behind.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/ureslaks_molted_scales_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..dcb72ffa09f470832b3af6d42855433f925c23b5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/ureslaks_molted_scales_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/ureslaks_molted_scales_hood.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/ureslaks_molted_scales_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..05e6944add257f77dde673a1b0f90d62fbb9fb89
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/ureslaks_molted_scales_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/ureslaks_molted_scales_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/ureslaks_molted_scales_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..453c05faed5d0ef7ba09bdc34f07fed8acf42ae9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/ureslaks_molted_scales_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/void_quiver.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/void_quiver.png
new file mode 100644
index 0000000000000000000000000000000000000000..0e84c247f873d196800ed9e24afd26303426292f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/void_quiver.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/wanderers_rest.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/wanderers_rest.png
new file mode 100644
index 0000000000000000000000000000000000000000..c8104e7a4d985dbece386821db34c9c2755a4f42
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/wanderers_rest.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/wind_worn_shot.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/wind_worn_shot.png
new file mode 100644
index 0000000000000000000000000000000000000000..4b3a485ad734f9b183c5858c5f7141c434ca4ffd
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/wind_worn_shot.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/wizard_hat_of_arcane_understanding.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/wizard_hat_of_arcane_understanding.png
new file mode 100644
index 0000000000000000000000000000000000000000..b5d7ea692f63e5bc92d2e38d2b48c5d0dda07e98
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/wizard_hat_of_arcane_understanding.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/wooden_cuirass.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/wooden_cuirass.png
index 4d9ca4104d8d121657520960afc532a5d532d2b5..ab19dae873c47a31f8008db1be404062d4b537f5 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/wooden_cuirass.png and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/wooden_cuirass.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/wrap_of_stone_behind.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/wrap_of_stone_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..104b8d6f95c79dfef9c6e7fb80cbbaf5c78224f1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/wrap_of_stone_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/wrap_of_stone_hood.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/wrap_of_stone_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..ee1eaa2df2a8a64b2113bfd799d2b1ab6ea0069c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/wrap_of_stone_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/wrap_of_stone_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/wrap_of_stone_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..46e61e1b92e92e705759da0a49360a074a1f1669
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/wrap_of_stone_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/wyrmbreath.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/wyrmbreath.png
new file mode 100644
index 0000000000000000000000000000000000000000..958c233a95ec220bef8ed942a06b56c7fc75806d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/wyrmbreath.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/yaldan_baoth.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/yaldan_baoth.png
new file mode 100644
index 0000000000000000000000000000000000000000..4c0262983bd766cb09042ff8d0f2a16a3699d2b2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/yaldan_baoth.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/special/yeek_fur_robe.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/yeek_fur_robe.png
new file mode 100644
index 0000000000000000000000000000000000000000..63de2f619e7f85b9fe4058c78592d0c1c2ccc2b1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/special/yeek_fur_robe.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/upper_body_25.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/upper_body_25.png
index 397de282636c50edd8d07668c4dfbd2b7bd9cf9b..013ae198356135baeebb790477380a01e9ae09aa 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/human_female/upper_body_25.png and b/game/modules/tome/data/gfx/shockbolt/player/human_female/upper_body_25.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/upper_body_29.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/upper_body_29.png
new file mode 100644
index 0000000000000000000000000000000000000000..1b52e3a8e1683f1770ac4a912c2646f079f89a0e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/upper_body_29.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/upper_body_30.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/upper_body_30.png
new file mode 100644
index 0000000000000000000000000000000000000000..9261182d4bb197308dd0eac417da859e6bc81193
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/upper_body_30.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/upper_body_31.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/upper_body_31.png
new file mode 100644
index 0000000000000000000000000000000000000000..4eb68927d2197cb026ea2a41f21f8792e8db0115
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/upper_body_31.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/upper_body_32.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/upper_body_32.png
new file mode 100644
index 0000000000000000000000000000000000000000..b91e2d15b0ecb43ea60a5b7322878ba7463fdcf8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/upper_body_32.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/upper_body_33.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/upper_body_33.png
new file mode 100644
index 0000000000000000000000000000000000000000..eb56a13d53f1c5ca5d13d62a4477be8d9a7b9325
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/upper_body_33.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/upper_body_34.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/upper_body_34.png
new file mode 100644
index 0000000000000000000000000000000000000000..1e83fbc7d778b732188cb12a4e8735bfd8794d9f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/upper_body_34.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/upper_body_35.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/upper_body_35.png
new file mode 100644
index 0000000000000000000000000000000000000000..6e8f2ae8bfbedf8fcdc7e2d80f107ccf728f3613
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/upper_body_35.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/upper_body_36.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/upper_body_36.png
new file mode 100644
index 0000000000000000000000000000000000000000..54f9db8775d907383e3d60e442c887d0898408da
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/upper_body_36.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/upper_body_37.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/upper_body_37.png
new file mode 100644
index 0000000000000000000000000000000000000000..1e8618cbea4aacd532e5c3055608776c06261d6d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/upper_body_37.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_female/upper_body_38.png b/game/modules/tome/data/gfx/shockbolt/player/human_female/upper_body_38.png
new file mode 100644
index 0000000000000000000000000000000000000000..b83889d8a2336dcddbf23fd5f98aa68b3dc5e6a1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_female/upper_body_38.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/cloak_behind_07.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/cloak_behind_07.png
new file mode 100644
index 0000000000000000000000000000000000000000..24db50d51030ea0fc79f6d8add73f3b0c259a48e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/cloak_behind_07.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/cloak_behind_08.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/cloak_behind_08.png
new file mode 100644
index 0000000000000000000000000000000000000000..e023036f261fc904774afbd0f335ced05fd98c9c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/cloak_behind_08.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/cloak_behind_09.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/cloak_behind_09.png
new file mode 100644
index 0000000000000000000000000000000000000000..cf70fc6a66c1be7addb719374e4bd388608256f8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/cloak_behind_09.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/cloak_hood_07.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/cloak_hood_07.png
new file mode 100644
index 0000000000000000000000000000000000000000..ef937a0f4a2c482fafbee1b5bf3a1e08e9c33165
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/cloak_hood_07.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/cloak_hood_08.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/cloak_hood_08.png
new file mode 100644
index 0000000000000000000000000000000000000000..3d40d2610a5c6f168bdb3fa9ea86b9a60da5ddfb
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/cloak_hood_08.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/cloak_hood_09.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/cloak_hood_09.png
new file mode 100644
index 0000000000000000000000000000000000000000..3d700091c479afd3c3e7b94a1e662c4aae87a095
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/cloak_hood_09.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/cloak_shoulder_07.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/cloak_shoulder_07.png
new file mode 100644
index 0000000000000000000000000000000000000000..8ac2527b5dbe484332ed049bb4bba211d41cfba5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/cloak_shoulder_07.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/cloak_shoulder_08.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/cloak_shoulder_08.png
new file mode 100644
index 0000000000000000000000000000000000000000..0a3cc0312b9f955723970b13f995b5d0ba636192
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/cloak_shoulder_08.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/cloak_shoulder_09.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/cloak_shoulder_09.png
new file mode 100644
index 0000000000000000000000000000000000000000..887c628bd7e2796ea7d1df67eb8f555f46f2b6fe
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/cloak_shoulder_09.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/feet_10.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/feet_10.png
new file mode 100644
index 0000000000000000000000000000000000000000..a4069953e5ba46e87c6830c7bffaa9f25a7de41a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/feet_10.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/feet_11.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/feet_11.png
new file mode 100644
index 0000000000000000000000000000000000000000..3077e47bdcc204de7f3351c7d2ed0f5c782ca01a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/feet_11.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/gembag_01.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/gembag_01.png
new file mode 100644
index 0000000000000000000000000000000000000000..77625b6405d545b002f85da33dae5412e920b6be
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/gembag_01.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/gembag_02.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/gembag_02.png
new file mode 100644
index 0000000000000000000000000000000000000000..d865008bc09cbdf1e3ec4f910b5dbea7417bf2c6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/gembag_02.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/gembag_03.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/gembag_03.png
new file mode 100644
index 0000000000000000000000000000000000000000..cce5e634295d3183cf05d56f44afc8d6f94aa175
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/gembag_03.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/gembag_04.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/gembag_04.png
new file mode 100644
index 0000000000000000000000000000000000000000..bd70dc684350156f508394a92d0fc60ec3cb0fae
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/gembag_04.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/gembag_05.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/gembag_05.png
new file mode 100644
index 0000000000000000000000000000000000000000..6c5683b659a0b976d1d0a22bbc17f0660e2217fb
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/gembag_05.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/hands_08.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/hands_08.png
new file mode 100644
index 0000000000000000000000000000000000000000..ca2bf5512e6548a1d36a0ebea6596728da47e448
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/hands_08.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/hands_09.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/hands_09.png
new file mode 100644
index 0000000000000000000000000000000000000000..14a60d5ec7f611fa4e79bbac11b840ff88b1e74a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/hands_09.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/head_19.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/head_19.png
index f0f6d4233d07ee0a352578d7dc527cb443956380..cd629a5b9bb167d1186b39c0e4412046c0170b69 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/human_male/head_19.png and b/game/modules/tome/data/gfx/shockbolt/player/human_male/head_19.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/head_20.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/head_20.png
new file mode 100644
index 0000000000000000000000000000000000000000..c0d78815fe04ec8fe937618af4f20d741ff5a832
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/head_20.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/head_21.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/head_21.png
new file mode 100644
index 0000000000000000000000000000000000000000..03f658000977495e10a34268a0245d46a0fc444e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/head_21.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/head_22.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/head_22.png
new file mode 100644
index 0000000000000000000000000000000000000000..321b4e53006b13057c957aaedca3d971d63f00ff
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/head_22.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/head_23.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/head_23.png
new file mode 100644
index 0000000000000000000000000000000000000000..e6cbe2d465c97ca3b65747687a4bb65050e85e8e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/head_23.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/lower_body_14.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/lower_body_14.png
new file mode 100644
index 0000000000000000000000000000000000000000..6f5cf747cbb1c7261de81231128060f370195b9c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/lower_body_14.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/lower_body_15.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/lower_body_15.png
new file mode 100644
index 0000000000000000000000000000000000000000..4058e76a4674d09a1d80e86db4c90a6435d78966
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/lower_body_15.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/lower_body_16.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/lower_body_16.png
new file mode 100644
index 0000000000000000000000000000000000000000..84abdc4762506a1c5246804693ac39ed0a3ddfb4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/lower_body_16.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/lower_body_17.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/lower_body_17.png
new file mode 100644
index 0000000000000000000000000000000000000000..450aba70931d18067d6ae49c12b8b9312d859d1f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/lower_body_17.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/lower_body_18.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/lower_body_18.png
new file mode 100644
index 0000000000000000000000000000000000000000..47b3e1e51094e6f74369f5cbde806c3db63d56c0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/lower_body_18.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/lower_body_19.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/lower_body_19.png
new file mode 100644
index 0000000000000000000000000000000000000000..e67ce1d9ebfaaac050c88985f55c7b7aea23ad79
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/lower_body_19.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/quiver_01.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/quiver_01.png
new file mode 100644
index 0000000000000000000000000000000000000000..cbac374686ed640d790c85ba553ea0bbf0f1d7e9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/quiver_01.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/quiver_02.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/quiver_02.png
new file mode 100644
index 0000000000000000000000000000000000000000..1932ec0b1eb902484d3c87218a3fab490664f03f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/quiver_02.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/quiver_03.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/quiver_03.png
new file mode 100644
index 0000000000000000000000000000000000000000..a2732a1cdd5945692be33b65625251e9b49741ed
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/quiver_03.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/quiver_04.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/quiver_04.png
new file mode 100644
index 0000000000000000000000000000000000000000..380d4c9fd78a6698b41fa18c21a696630e76697a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/quiver_04.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/quiver_05.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/quiver_05.png
new file mode 100644
index 0000000000000000000000000000000000000000..76ab24f21906e818bd72d34c36359e3ef34e0fc6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/quiver_05.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/shotbag_01.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/shotbag_01.png
new file mode 100644
index 0000000000000000000000000000000000000000..5837d98cd1fb076bdcfbf47ba34a1d52a61ee37e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/shotbag_01.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/shotbag_02.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/shotbag_02.png
new file mode 100644
index 0000000000000000000000000000000000000000..1b23702417d8d5654e4dc5bbc1868fc4e41453fe
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/shotbag_02.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/shotbag_03.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/shotbag_03.png
new file mode 100644
index 0000000000000000000000000000000000000000..851c4379bfd9313af5c32d63b8857d29ad2d9ff5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/shotbag_03.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/shotbag_04.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/shotbag_04.png
new file mode 100644
index 0000000000000000000000000000000000000000..1336a13a97e6a15264a854dfb2be7656f533dc50
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/shotbag_04.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/shotbag_05.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/shotbag_05.png
new file mode 100644
index 0000000000000000000000000000000000000000..6a27b0559dfa23d2c911da957e34cfb0f0d7c3e9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/shotbag_05.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/aether_walk.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/aether_walk.png
new file mode 100644
index 0000000000000000000000000000000000000000..e3d2edf30443a8753a53167570e453696cde24d3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/aether_walk.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/arkuls_seige_arrows.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/arkuls_seige_arrows.png
new file mode 100644
index 0000000000000000000000000000000000000000..dbdca94199011e1644ed81cd2427a69e3747af72
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/arkuls_seige_arrows.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/armor_chromatic_harness.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/armor_chromatic_harness.png
new file mode 100644
index 0000000000000000000000000000000000000000..a2d6c95889e0e0cc8b72b7a3d5c198ee367c8ee3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/armor_chromatic_harness.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/armor_cuirass_of_the_thronesmen.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/armor_cuirass_of_the_thronesmen.png
new file mode 100644
index 0000000000000000000000000000000000000000..2b5b6c5bf858fe7e570374294a67f3ed023da8ac
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/armor_cuirass_of_the_thronesmen.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/armor_natures_blessing.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/armor_natures_blessing.png
new file mode 100644
index 0000000000000000000000000000000000000000..fbc8bb2d73e048b6a2afb5b0b4ffe17a38cfb7fd
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/armor_natures_blessing.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/armor_plate_borfasts_cage.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/armor_plate_borfasts_cage.png
new file mode 100644
index 0000000000000000000000000000000000000000..3909783d923c4ce24c9cfe82dc7fed20c8e712ad
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/armor_plate_borfasts_cage.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/armor_rogue_plight.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/armor_rogue_plight.png
new file mode 100644
index 0000000000000000000000000000000000000000..1c998ff82035b2d26a1ecee34096f8685edf8c3a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/armor_rogue_plight.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/behemoth_skin.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/behemoth_skin.png
new file mode 100644
index 0000000000000000000000000000000000000000..0158e3275a35ecd995b887113e9e97f171ae53f1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/behemoth_skin.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/black_cloak_behind.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/black_cloak_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..77c81050c83d7f4289c01e042349d64ac0c5c7de
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/black_cloak_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/black_cloak_hood.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/black_cloak_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..d95547bbbd0d3f16108270a4e8515c47413614d2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/black_cloak_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/black_cloak_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/black_cloak_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..a5781e0f64cb445429eb5f31e93347bf49e452bf
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/black_cloak_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/boots_edens_guile.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/boots_edens_guile.png
new file mode 100644
index 0000000000000000000000000000000000000000..e8d0bf878f662322747f9e294dba7ff5167dae17
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/boots_edens_guile.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/boots_of_the_hunter.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/boots_of_the_hunter.png
new file mode 100644
index 0000000000000000000000000000000000000000..541783fadcde75b62c6ee27a3b615763768a46a4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/boots_of_the_hunter.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/breath_of_eyal.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/breath_of_eyal.png
new file mode 100644
index 0000000000000000000000000000000000000000..ca41d67b9bd0334a8007f48da6054b0c71418375
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/breath_of_eyal.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/cinderfeet.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/cinderfeet.png
new file mode 100644
index 0000000000000000000000000000000000000000..a8b2568cd9debf604f9ed561ad7a96114dea8a5a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/cinderfeet.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/cloak_threads_of_fate_behind.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/cloak_threads_of_fate_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..093d8e5be9253a6260d66aef4830b401cbc6698d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/cloak_threads_of_fate_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/cloak_threads_of_fate_hood.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/cloak_threads_of_fate_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..630300bdde8437656db445429ae767acd6cae5d7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/cloak_threads_of_fate_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/cloak_threads_of_fate_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/cloak_threads_of_fate_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..b7a37de7537eea7b0aa94f83e46ce41bd133c344
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/cloak_threads_of_fate_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/cloak_winds_whisper_behind.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/cloak_winds_whisper_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..06437700da548d0cccb396a5c2f82d70ca327b55
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/cloak_winds_whisper_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/cloak_winds_whisper_hood.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/cloak_winds_whisper_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..36cfbe297b8449f8da8d61b9df5d5605b9ed558f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/cloak_winds_whisper_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/cloak_winds_whisper_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/cloak_winds_whisper_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..60d69dd3573c9213fd547622b788ca62f5b6f4f4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/cloak_winds_whisper_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/cloth_armour_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/cloth_armour_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..bd81d3b65c1d7e64c7e82b60b5883fd223ca0112
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/cloth_armour_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/cloth_of_dreams_behind.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/cloth_of_dreams_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..d76bde36c095bcc8e749949befc4a067cb0b57e3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/cloth_of_dreams_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/cloth_of_dreams_hood.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/cloth_of_dreams_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..7d8347bff31f618d2f02d461f02c813af947ded7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/cloth_of_dreams_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/cloth_of_dreams_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/cloth_of_dreams_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..c0f493b26d99ae53ac9db1a1a20f229be7dc9393
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/cloth_of_dreams_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/corrupted_gaze.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/corrupted_gaze.png
new file mode 100644
index 0000000000000000000000000000000000000000..0af884778b71854fd71d6293d9f47b1b4731901e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/corrupted_gaze.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/crimson_robe.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/crimson_robe.png
new file mode 100644
index 0000000000000000000000000000000000000000..9dba6a5cf9c402726a27c384aaa2517d339d797c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/crimson_robe.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/crown_of_burning_pain.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/crown_of_burning_pain.png
new file mode 100644
index 0000000000000000000000000000000000000000..77a15b70fb736523ff2b2ded7a332d6ca8f80213
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/crown_of_burning_pain.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/crown_of_command.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/crown_of_command.png
new file mode 100644
index 0000000000000000000000000000000000000000..69a1b4c031066f47a3b273a9f35789ec6a29a48a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/crown_of_command.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/crown_of_eternal_night.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/crown_of_eternal_night.png
new file mode 100644
index 0000000000000000000000000000000000000000..2d91f5dc00d26e22f4ad3191d66e22c49aaa5276
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/crown_of_eternal_night.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/crown_of_the_elements.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/crown_of_the_elements.png
new file mode 100644
index 0000000000000000000000000000000000000000..cee951b993100f3b2e14923ca99a747996de5788
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/crown_of_the_elements.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/crystles_astral_bindings.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/crystles_astral_bindings.png
new file mode 100644
index 0000000000000000000000000000000000000000..43b3398e65260f49983b955116881a656b4debd0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/crystles_astral_bindings.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/dakhtuns_gauntlets.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/dakhtuns_gauntlets.png
new file mode 100644
index 0000000000000000000000000000000000000000..f17f50cd1b128c1c823f4956bb339e5c6092422d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/dakhtuns_gauntlets.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/deaths_embrace.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/deaths_embrace.png
new file mode 100644
index 0000000000000000000000000000000000000000..39619505f99fe6b487713761fdd7e6037170ddbc
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/deaths_embrace.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/decayed_visage.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/decayed_visage.png
new file mode 100644
index 0000000000000000000000000000000000000000..adfc4bdc78abc3495452554dc09cc991c02b25bc
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/decayed_visage.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/destalas_scales_behind.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/destalas_scales_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..077655ec30ac100cbd46a41d1d1ae3c591c77f34
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/destalas_scales_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/destalas_scales_whisper_hood.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/destalas_scales_whisper_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..414a174b3408895f42d93c762ce44fbeb81f5751
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/destalas_scales_whisper_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/destalas_scales_whisper_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/destalas_scales_whisper_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..bd3ce441964f12006c9e9bc896e1974bb6c44041
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/destalas_scales_whisper_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/diadem_alettas_diadem.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/diadem_alettas_diadem.png
new file mode 100644
index 0000000000000000000000000000000000000000..4ef686c694fa57803bb1673e5f6bb992d6d61dab
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/diadem_alettas_diadem.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/dragon_helm_of_kroltar.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/dragon_helm_of_kroltar.png
new file mode 100644
index 0000000000000000000000000000000000000000..e7ecdd554af5742165f76a65ef7935a5a170ac2f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/dragon_helm_of_kroltar.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/dragonskull_helmet.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/dragonskull_helmet.png
new file mode 100644
index 0000000000000000000000000000000000000000..3e17bd313fbe4f7270aa464f315f739e091648a4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/dragonskull_helmet.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/eel_skin_armor.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/eel_skin_armor.png
new file mode 100644
index 0000000000000000000000000000000000000000..ff05c18f8bb0c980f96bb83401776d3d10a92c50
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/eel_skin_armor.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/ethereal_embrace_behind.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/ethereal_embrace_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..076595216fa91d61c389358ed1709bb57e87d3e2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/ethereal_embrace_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/ethereal_embrace_hood.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/ethereal_embrace_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..a441848f7935a090d821466e53b1978fae7e55d9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/ethereal_embrace_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/ethereal_embrace_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/ethereal_embrace_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..4da1ccb3c20be73e6eab2f12e8d9e2afbf33f4db
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/ethereal_embrace_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/evermoss_robe.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/evermoss_robe.png
new file mode 100644
index 0000000000000000000000000000000000000000..3e25241a61f4f5f9db03d50175d182554393fcb9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/evermoss_robe.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/eye_of_the_forest.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/eye_of_the_forest.png
new file mode 100644
index 0000000000000000000000000000000000000000..eac8be067139accfbcf3356cb3fd696f7ff33103
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/eye_of_the_forest.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/fist_of_the_destroyer.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/fist_of_the_destroyer.png
new file mode 100644
index 0000000000000000000000000000000000000000..484ee822b222851ab2fe872e31a038cc42769708
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/fist_of_the_destroyer.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/frost_treads.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/frost_treads.png
new file mode 100644
index 0000000000000000000000000000000000000000..9fa1a737afaccc2555fdca87e479f5358bd64f2a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/frost_treads.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/frozen_shards.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/frozen_shards.png
new file mode 100644
index 0000000000000000000000000000000000000000..d3112c64fe11755026c0912887b62a3289d349fc
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/frozen_shards.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/frozen_shroud_behind.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/frozen_shroud_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..fdcf41b232c41a0225c5e2588d13964987bd79a7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/frozen_shroud_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/frozen_shroud_hood.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/frozen_shroud_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..73feb33f748fabbd8efe7ef498df8f2542c89f1d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/frozen_shroud_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/frozen_shroud_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/frozen_shroud_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..c75f8ee050c38da6c6c4ec82e3e4f389db8599ac
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/frozen_shroud_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/gauntlets_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/gauntlets_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..4f9d27a66187cc0d445d07151e830f130260fade
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/gauntlets_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/gloves_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/gloves_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..cd997e1ac0652f594d251305b9a9f3d2629b8ab3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/gloves_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/gloves_flamewrought.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/gloves_flamewrought.png
new file mode 100644
index 0000000000000000000000000000000000000000..9b052ba320ba7ec72f13b0114fdd17b183e58b60
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/gloves_flamewrought.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/gloves_of_the_firm_hand.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/gloves_of_the_firm_hand.png
new file mode 100644
index 0000000000000000000000000000000000000000..d12c4913767b11bef3f614a68e4848ebedcd465c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/gloves_of_the_firm_hand.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/grip_of_death.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/grip_of_death.png
index 7cbc3671600b38766b1bd5a239f88fd20f8941f2..2b87ed607b0df6e2a12a0ab55b9125101e39bf28 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/grip_of_death.png and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/grip_of_death.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/guise_of_the_hated_behind.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/guise_of_the_hated_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..f0cc672969a13a795e3cbfafc372bb3e9562d03f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/guise_of_the_hated_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/guise_of_the_hated_hood.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/guise_of_the_hated_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..32da211e44709906f52bf4d8d2b80913ce040d99
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/guise_of_the_hated_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/guise_of_the_hated_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/guise_of_the_hated_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..24e0e0b3b7baaca1865f77277f46e3f3e2ba2646
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/guise_of_the_hated_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/hand_of_the_worldshaper.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/hand_of_the_worldshaper.png
new file mode 100644
index 0000000000000000000000000000000000000000..8d3c2a12e316208514825bf63b6fc2d6d53c3d25
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/hand_of_the_worldshaper.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/harkor_zun_gauntlets.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/harkor_zun_gauntlets.png
new file mode 100644
index 0000000000000000000000000000000000000000..49381cbe449da0d4761be5d30589e62269902754
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/harkor_zun_gauntlets.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/heavy_armour_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/heavy_armour_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..66e1fb3bef66185f1d69efd0df819c74578bbbb3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/heavy_armour_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/helm_of_garkul.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/helm_of_garkul.png
new file mode 100644
index 0000000000000000000000000000000000000000..a71f36481bdb8c702a152b4bf1ac6c0265c02f77
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/helm_of_garkul.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/helm_of_the_dwarven_emperors.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/helm_of_the_dwarven_emperors.png
new file mode 100644
index 0000000000000000000000000000000000000000..c802b4d80bc1231a9a9e169c8c173fd34df28aac
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/helm_of_the_dwarven_emperors.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/hornet_stingers.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/hornet_stingers.png
new file mode 100644
index 0000000000000000000000000000000000000000..468923d6c00bd604fdbd934cf8082520ef85a901
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/hornet_stingers.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/iron_mail_of_bloodletting.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/iron_mail_of_bloodletting.png
new file mode 100644
index 0000000000000000000000000000000000000000..2461bda0a8e600ff26b509bb3a07a84ec1e8e4d7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/iron_mail_of_bloodletting.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_1Haxe_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_1Haxe_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..03f61b54c058cab6b7b1ef45dfedbef757a38dc1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_1Haxe_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_1Hmace_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_1Hmace_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..83e2daf75afe8b58f976bea84a8d4bef8d12d744
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_1Hmace_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_1Hsword_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_1Hsword_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..9eb8760a010310c83142527e33a78abe59baa48a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_1Hsword_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_2Haxe_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_2Haxe_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..43ee0f21c35345a44dcf4ff234d1f4c62d26e2dd
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_2Haxe_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_2Hmace_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_2Hmace_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..f2b418bfb7f67576245f455de2725f9a478a7a23
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_2Hmace_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_2Hsword_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_2Hsword_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..c7233bf4ac49873541a602024d6b329d17c6312f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_2Hsword_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_amethyst_of_sanctuary.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_amethyst_of_sanctuary.png
new file mode 100644
index 0000000000000000000000000000000000000000..d1718df03297930e924135be6eb1fe4cdf2aba21
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_amethyst_of_sanctuary.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_awaken_staff_of_absorbtion.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_awaken_staff_of_absorbtion.png
new file mode 100644
index 0000000000000000000000000000000000000000..b64c803b8897157815de20b0b52e719bf70231ea
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_awaken_staff_of_absorbtion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_blighted_maul.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_blighted_maul.png
new file mode 100644
index 0000000000000000000000000000000000000000..0def0738f6f4cb38838b8c8c954d5636569b2081
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_blighted_maul.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_bloomsoul.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_bloomsoul.png
new file mode 100644
index 0000000000000000000000000000000000000000..264b7ced210450ce5e2163279812b333a0cce5f3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_bloomsoul.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_borosks_hate.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_borosks_hate.png
new file mode 100644
index 0000000000000000000000000000000000000000..0718dcb74d0503d092861b2805fb7b0a3ffaf245
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_borosks_hate.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_bow_corpsebow.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_bow_corpsebow.png
new file mode 100644
index 0000000000000000000000000000000000000000..9baeef46d8c8c1d1bc4f17d820b330b411d9a873
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_bow_corpsebow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_bow_epochs_curve.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_bow_epochs_curve.png
new file mode 100644
index 0000000000000000000000000000000000000000..16dc2a1b379851e97b389516f038cdfef298cb0b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_bow_epochs_curve.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_champions_will.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_champions_will.png
new file mode 100644
index 0000000000000000000000000000000000000000..a7c7d1a1bb7c2ba820ac60f123e3fbdaa7ff1d82
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_champions_will.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_colaryem.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_colaryem.png
new file mode 100644
index 0000000000000000000000000000000000000000..1eff0695f0e2953d3ae4a30e5d2b87d4ac2facc3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_colaryem.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_core_of_the_forge.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_core_of_the_forge.png
new file mode 100644
index 0000000000000000000000000000000000000000..455b9a6a3791bb9effca697788b1172ff0c2969a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_core_of_the_forge.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_corpus_2.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_corpus_2.png
new file mode 100644
index 0000000000000000000000000000000000000000..88ab55fdb6d0099bdf74d8da429daaddc67c2976
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_corpus_2.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_crystal_shard.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_crystal_shard.png
new file mode 100644
index 0000000000000000000000000000000000000000..874d1c5beadda2a24f3bb6bdca06f68ca22e6a58
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_crystal_shard.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_dagger_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_dagger_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..147c66c4ffa366a10d8075a7653565a62b5736a3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_dagger_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_dream_malleus.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_dream_malleus.png
new file mode 100644
index 0000000000000000000000000000000000000000..32d44130d847cdf96571830c1ef0cb13fb921add
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_dream_malleus.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_eclipse.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_eclipse.png
new file mode 100644
index 0000000000000000000000000000000000000000..2ae6613a1318a505fc120fdad223248dc8feb6c8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_eclipse.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_eyals_will.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_eyals_will.png
new file mode 100644
index 0000000000000000000000000000000000000000..0871709ed3c46d7d763fc5620718a981313af7c8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_eyals_will.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_eye_of_the_wyrm.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_eye_of_the_wyrm.png
new file mode 100644
index 0000000000000000000000000000000000000000..787a39a4101c9901f92792f9d79c599dc5f4b7b9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_eye_of_the_wyrm.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_focus_whip.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_focus_whip.png
new file mode 100644
index 0000000000000000000000000000000000000000..66050e82e8a46e88a4daf9227b36ffe8b31d8bba
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_focus_whip.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_genocide.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_genocide.png
new file mode 100644
index 0000000000000000000000000000000000000000..fdc1dd7a3c4c0d1f30f09e7765ab1da8d0b38c84
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_genocide.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_gravitational_staff.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_gravitational_staff.png
new file mode 100644
index 0000000000000000000000000000000000000000..8d856188d6d1d4cb350ad718c835501a65afcecd
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_gravitational_staff.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_great_caller.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_great_caller.png
new file mode 100644
index 0000000000000000000000000000000000000000..44390f2c6abf60f9be8bcd4237ca0e0b30809b15
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_great_caller.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_guidance.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_guidance.png
new file mode 100644
index 0000000000000000000000000000000000000000..78a8b83c9c1802c14b94c2fc3c2b7cf7fc98e79b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_guidance.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_hareskin_sling.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_hareskin_sling.png
new file mode 100644
index 0000000000000000000000000000000000000000..242385589d05d059f12ae6a9453245f9f425a9b4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_hareskin_sling.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_hydras_bite.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_hydras_bite.png
new file mode 100644
index 0000000000000000000000000000000000000000..b9b80cb94d8b309c4b497b997ba4f8bae8c890c3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_hydras_bite.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_latafayn.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_latafayn.png
new file mode 100644
index 0000000000000000000000000000000000000000..ffdb4e7918fdaeee6c31d50e667d6ef873cbaba1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_latafayn.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_merkuls_second_eye.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_merkuls_second_eye.png
new file mode 100644
index 0000000000000000000000000000000000000000..ceff56006da72be62dc5c5ba739ed0ee5fd76350
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_merkuls_second_eye.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_nexus_of_the_way.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_nexus_of_the_way.png
new file mode 100644
index 0000000000000000000000000000000000000000..f76339d5d59d770f893a247d86eb9eca47113725
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_nexus_of_the_way.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_nithans_force.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_nithans_force.png
new file mode 100644
index 0000000000000000000000000000000000000000..5e6a2249dc31eebaa06f8ab173cce1d9bfb06166
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_nithans_force.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_obliterator.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_obliterator.png
new file mode 100644
index 0000000000000000000000000000000000000000..8283b417225da124aafc011e8bf7d5802d0fffce
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_obliterator.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_oozing_heart.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_oozing_heart.png
new file mode 100644
index 0000000000000000000000000000000000000000..c99172405e62e910395846e9f21e9ecd2689c2fe
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_oozing_heart.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_psionic_fury.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_psionic_fury.png
new file mode 100644
index 0000000000000000000000000000000000000000..bf92aef560b583ce19be750c15a8ddfc95ae0320
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_psionic_fury.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_rod_of_sarrilon.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_rod_of_sarrilon.png
new file mode 100644
index 0000000000000000000000000000000000000000..9e8d71d56d8a515050f2a9dfe222a2b4e0797dcf
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_rod_of_sarrilon.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_sceptre_of_the_archlich.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_sceptre_of_the_archlich.png
new file mode 100644
index 0000000000000000000000000000000000000000..311b0925a62092190fbc0d505e641fd193a7455e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_sceptre_of_the_archlich.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_serpents_glare.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_serpents_glare.png
new file mode 100644
index 0000000000000000000000000000000000000000..30929af23e6e7201bfd360f6e13122739db4a026
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_serpents_glare.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_shield_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_shield_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..1f14e1f08eefee3bba3af25e87290da2c43b8e0a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_shield_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_skeletal_claw.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_skeletal_claw.png
new file mode 100644
index 0000000000000000000000000000000000000000..64b165e040c97e914780b43744527feb2634207d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_skeletal_claw.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_sling_eldoral_last_resort.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_sling_eldoral_last_resort.png
new file mode 100644
index 0000000000000000000000000000000000000000..be2abaf0915c5f583447dcf48e40d45228b6c858
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_sling_eldoral_last_resort.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_spectral_blade.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_spectral_blade.png
new file mode 100644
index 0000000000000000000000000000000000000000..8e71294bd9290f519883db2768148b2cbec03d6f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_spectral_blade.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_spellcrusher.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_spellcrusher.png
new file mode 100644
index 0000000000000000000000000000000000000000..dfbeaf28d938bf002f55792e2c1e930127c10149
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_spellcrusher.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_staff_bolbums_big_knocker.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_staff_bolbums_big_knocker.png
new file mode 100644
index 0000000000000000000000000000000000000000..d56f32d37c080171f88b34be35a07e3220981ddc
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_staff_bolbums_big_knocker.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_staff_broken_bottom_telos.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_staff_broken_bottom_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..530c2f816834519e2a3805d7b3def5c9447a9b0b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_staff_broken_bottom_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_staff_broken_top_telos.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_staff_broken_top_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..df88ef55cf0cf8c2fda3b6ed8c72c9bc031ec4d9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_staff_broken_top_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_staff_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_staff_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..6da3fec2fc71335be05442cb6c2d3c1a97eb652e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_staff_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_staff_kors_fall.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_staff_kors_fall.png
new file mode 100644
index 0000000000000000000000000000000000000000..34e6b1117e8ccf3f574eebf6ab5cb40a9cbf5c0f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_staff_kors_fall.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_staff_lost_staff_archmage_tarelion.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_staff_lost_staff_archmage_tarelion.png
new file mode 100644
index 0000000000000000000000000000000000000000..232a89722ddc7e11b74f9fe4d823e30f109433ab
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_staff_lost_staff_archmage_tarelion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_staff_of_absorbtion.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_staff_of_absorbtion.png
new file mode 100644
index 0000000000000000000000000000000000000000..9eedb7ed8047e8017184408e280d926aff46c255
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_staff_of_absorbtion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_staff_of_arcane_supremacy.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_staff_of_arcane_supremacy.png
new file mode 100644
index 0000000000000000000000000000000000000000..a890d93d6de6f5ae6b5b6827ae1b0b56c9d162c5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_staff_of_arcane_supremacy.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_staff_of_destruction.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_staff_of_destruction.png
new file mode 100644
index 0000000000000000000000000000000000000000..d53d0e2ce9c20d891e34c33605ef08bea6db4f23
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_staff_of_destruction.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_staff_penitence.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_staff_penitence.png
new file mode 100644
index 0000000000000000000000000000000000000000..15e3d7409ff801dc2c0f149dc84b5dc92e7aab48
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_staff_penitence.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_staff_voice_of_telos.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_staff_voice_of_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..510401cdb3383d5cf8c86068dc23bd7a2ae1f82e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_staff_voice_of_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_storm_fury.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_storm_fury.png
new file mode 100644
index 0000000000000000000000000000000000000000..a07e12d2f75a94cb1c31f3a0c99f50dad596fbc5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_storm_fury.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_stormlash.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_stormlash.png
new file mode 100644
index 0000000000000000000000000000000000000000..2df927918a44add3f1f6bf4b23f4c5e81a5ab25a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_stormlash.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_surefire.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_surefire.png
new file mode 100644
index 0000000000000000000000000000000000000000..096d1db46cd7496ec11f8e9b59e6c911eb8f5549
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_surefire.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_telos_spire_of_power.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_telos_spire_of_power.png
new file mode 100644
index 0000000000000000000000000000000000000000..842d4cb183b33a110d9ad04ea6c1ac398183ef27
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_telos_spire_of_power.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_thaloren_tree_longbow.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_thaloren_tree_longbow.png
new file mode 100644
index 0000000000000000000000000000000000000000..ef9ad707d32017b56c9936022148b57fb1f31abd
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_thaloren_tree_longbow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_trident_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_trident_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..76a9d10922b2c0f86a995d2b7c0183bc3ed44ef3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_trident_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_umbral_razor.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_umbral_razor.png
new file mode 100644
index 0000000000000000000000000000000000000000..d557de63795035ba8de0846e4e2ab4deef566c90
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_umbral_razor.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_unstoppable_mauler.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_unstoppable_mauler.png
new file mode 100644
index 0000000000000000000000000000000000000000..35e5c9b19ee1726e5d1ffff69262e9a8df980212
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_unstoppable_mauler.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_voratun_hammer_of_the_deep_bellow.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_voratun_hammer_of_the_deep_bellow.png
new file mode 100644
index 0000000000000000000000000000000000000000..4c33d4e72e0e515c11915b2d623c15178c494f28
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_voratun_hammer_of_the_deep_bellow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_warmaster_gnargs_murderblade.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_warmaster_gnargs_murderblade.png
new file mode 100644
index 0000000000000000000000000000000000000000..2c72558abb04f4f5bd23640b010906b341977a57
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_warmaster_gnargs_murderblade.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_whip_of_urh_rok.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_whip_of_urh_rok.png
new file mode 100644
index 0000000000000000000000000000000000000000..8d679f85dfc817c349787a2f9453ddb741458bcd
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_whip_of_urh_rok.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_whip_scorpions_tail.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_whip_scorpions_tail.png
new file mode 100644
index 0000000000000000000000000000000000000000..66fdd6808978c3644a4f2a70a7b137a202dd5b32
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_whip_scorpions_tail.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_writhing_essence_of_nightmares.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_writhing_essence_of_nightmares.png
new file mode 100644
index 0000000000000000000000000000000000000000..5a9846b3c1767a90b88dc26bc2a5583c09e675fb
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/left_writhing_essence_of_nightmares.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/light_armour_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/light_armour_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..c4ee48914b8e1698ef8a56aca7435abc844b9c22
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/light_armour_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/malslek_the_accursed_hat.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/malslek_the_accursed_hat.png
new file mode 100644
index 0000000000000000000000000000000000000000..c171e2d8a8c1ae8424da80794d7c48be3b8fd684
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/malslek_the_accursed_hat.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/masochism.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/masochism.png
new file mode 100644
index 0000000000000000000000000000000000000000..cc2cb8d6a5af0e8009555e0a9c04f45ab6da6f5e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/masochism.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/massive_armour_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/massive_armour_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..8c2e781d70639fd44e10e1496f9c50be40fcf25a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/massive_armour_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/omniscience.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/omniscience.png
new file mode 100644
index 0000000000000000000000000000000000000000..45ed19d161994ab2b187aca326d0b362145bd347
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/omniscience.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/plate_armor_of_the_king.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/plate_armor_of_the_king.png
new file mode 100644
index 0000000000000000000000000000000000000000..007bed3b03a46fa78a084db4e989e607b8ae7ede
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/plate_armor_of_the_king.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/plate_of_the_blackened_mind.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/plate_of_the_blackened_mind.png
new file mode 100644
index 0000000000000000000000000000000000000000..27fa95e28f2342b77b49205c47524f8cd0790c54
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/plate_of_the_blackened_mind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/pouch_of_the_subconscious.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/pouch_of_the_subconscious.png
new file mode 100644
index 0000000000000000000000000000000000000000..5517b5111e94a857a1316fc05e1b3499782f3dfc
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/pouch_of_the_subconscious.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/quiver_of_domination.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/quiver_of_domination.png
new file mode 100644
index 0000000000000000000000000000000000000000..8ba30025c59f5686956b54dc62683423a7324812
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/quiver_of_domination.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/quiver_of_the_sun.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/quiver_of_the_sun.png
new file mode 100644
index 0000000000000000000000000000000000000000..a49bdfaa0664b290335a01e07228f96458002167
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/quiver_of_the_sun.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/radiance_behind.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/radiance_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..05690ab9ddc3db29d6176e340ac499293beb14e0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/radiance_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/radiance_hood.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/radiance_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..af4a723715f27b42a0339e29ef65501249976e49
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/radiance_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/radiance_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/radiance_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..17747599e1101f9775ada361bf7febb5afe8500e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/radiance_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_1Haxe_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_1Haxe_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..12b7d34f66be57945ebe2b2526cd2e4484edc5be
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_1Haxe_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_1Hmace_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_1Hmace_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..f9842a6d05acb7cf6d639795d8cee2800eff0aae
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_1Hmace_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_1Hsword_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_1Hsword_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..0b3aef5916e7e47dc446014a82e190fa6e272b9e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_1Hsword_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_2Haxe_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_2Haxe_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..64c6418327e2a746a3291a23bea2bfe3fcd3bbc9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_2Haxe_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_2Hmace_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_2Hmace_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..790206ba8f7f088c86801cea52306ae9b4094fd1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_2Hmace_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_2Hsword_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_2Hsword_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..0abe07d186a4d35f6becb7be80648679208ebd29
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_2Hsword_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_amethyst_of_sanctuary.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_amethyst_of_sanctuary.png
new file mode 100644
index 0000000000000000000000000000000000000000..5b4935649189dfec553dcad2c2fe687a89756741
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_amethyst_of_sanctuary.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_awaken_staff_of_absorbtion.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_awaken_staff_of_absorbtion.png
new file mode 100644
index 0000000000000000000000000000000000000000..fd86673c3a60d4af8dc4a534094c09754e8a8b44
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_awaken_staff_of_absorbtion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_blighted_maul.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_blighted_maul.png
new file mode 100644
index 0000000000000000000000000000000000000000..9a8b308e060c91e833aa96d0d1ae1ea82b2c085b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_blighted_maul.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_bloomsoul.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_bloomsoul.png
new file mode 100644
index 0000000000000000000000000000000000000000..2be2ed3ec5cfe70a4639f0ee9f14a6293dedeb7e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_bloomsoul.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_borosks_hate.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_borosks_hate.png
new file mode 100644
index 0000000000000000000000000000000000000000..f302f80a15a8348f12228ba7c0006ec98b453efe
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_borosks_hate.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_bow_corpsebow.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_bow_corpsebow.png
new file mode 100644
index 0000000000000000000000000000000000000000..592006766c18e9271f2f8f1605aea8c43e3be135
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_bow_corpsebow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_bow_epochs_curve.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_bow_epochs_curve.png
new file mode 100644
index 0000000000000000000000000000000000000000..476a4d48e92197e6a616f749e0c53b9dcfdf9967
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_bow_epochs_curve.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_champions_will.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_champions_will.png
new file mode 100644
index 0000000000000000000000000000000000000000..d5b0864848310066e42f1734c634835b556ad16e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_champions_will.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_colaryem.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_colaryem.png
new file mode 100644
index 0000000000000000000000000000000000000000..ce3aaeb798e3a6f184fd51d9cddda536fcc5a1b6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_colaryem.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_core_of_the_forge.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_core_of_the_forge.png
new file mode 100644
index 0000000000000000000000000000000000000000..4adb07093d3cadbba21f8826934723782cb7292f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_core_of_the_forge.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_corpus_2.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_corpus_2.png
new file mode 100644
index 0000000000000000000000000000000000000000..c87c42c31281e9ac71039f06d0129571cd79507f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_corpus_2.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_crystal_shard.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_crystal_shard.png
new file mode 100644
index 0000000000000000000000000000000000000000..fb4dbb6ed65231ddc76a2d5f11ee45706cfbec4f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_crystal_shard.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_dagger_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_dagger_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..687eb9f74c8efde9353661f6232506c19c5172d3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_dagger_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_dream_malleus.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_dream_malleus.png
new file mode 100644
index 0000000000000000000000000000000000000000..33cfe5d81261e1e050213538b39ba126c837b4b6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_dream_malleus.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_eclipse.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_eclipse.png
new file mode 100644
index 0000000000000000000000000000000000000000..ed5ad5d567caa5cb893fa09ec78d3157375f6294
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_eclipse.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_eyals_will.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_eyals_will.png
new file mode 100644
index 0000000000000000000000000000000000000000..66a478df10d86189aec18784ffb7076684c2d5dd
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_eyals_will.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_eye_of_the_wyrm.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_eye_of_the_wyrm.png
new file mode 100644
index 0000000000000000000000000000000000000000..1cba5afd4038ed7ba0438d332412d931a8abe7bc
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_eye_of_the_wyrm.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_focus_whip.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_focus_whip.png
new file mode 100644
index 0000000000000000000000000000000000000000..70587242f11a5e7cfbaa932d898c9cd1522fb451
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_focus_whip.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_genocide.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_genocide.png
new file mode 100644
index 0000000000000000000000000000000000000000..6339343bc09b13d3f3ef92037c06551e3a2cbc9d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_genocide.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_gravitational_staff.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_gravitational_staff.png
new file mode 100644
index 0000000000000000000000000000000000000000..509e335785d655fe1596b1227e3dd3c05ff5d255
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_gravitational_staff.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_great_caller.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_great_caller.png
new file mode 100644
index 0000000000000000000000000000000000000000..6b5398c0eb7404b3e7a24f2f53a10d918f98da0a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_great_caller.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_guidance.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_guidance.png
new file mode 100644
index 0000000000000000000000000000000000000000..1c4af14879d444e9fad02a96638a7a5951d9f937
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_guidance.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_hareskin_sling.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_hareskin_sling.png
new file mode 100644
index 0000000000000000000000000000000000000000..7e1433e84daf6e6d75c7fa665a37997234eb0e02
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_hareskin_sling.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_hydras_bite.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_hydras_bite.png
new file mode 100644
index 0000000000000000000000000000000000000000..4d07eb510e5814a2b62c91a7f2c79142059cdde4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_hydras_bite.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_latafayn.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_latafayn.png
new file mode 100644
index 0000000000000000000000000000000000000000..27b2e54dbc0923c559e47d08b4e67eb31b35fd43
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_latafayn.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_merkuls_second_eye.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_merkuls_second_eye.png
new file mode 100644
index 0000000000000000000000000000000000000000..04d188d73cf40c64cfc1f5799e74ae16504dd25a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_merkuls_second_eye.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_nexus_of_the_way.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_nexus_of_the_way.png
new file mode 100644
index 0000000000000000000000000000000000000000..616fa9eff61ec9668cf6aaf58b91d55e94c67348
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_nexus_of_the_way.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_nithans_force.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_nithans_force.png
new file mode 100644
index 0000000000000000000000000000000000000000..7edbb8f44e873c96a225be6ecd271295514b7798
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_nithans_force.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_obliterator.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_obliterator.png
new file mode 100644
index 0000000000000000000000000000000000000000..c3b49e138e41b6f6d65c2c9d04462876039938d6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_obliterator.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_oozing_heart.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_oozing_heart.png
new file mode 100644
index 0000000000000000000000000000000000000000..94be3d768e38061893da809844a4612f47221848
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_oozing_heart.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_psionic_fury.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_psionic_fury.png
new file mode 100644
index 0000000000000000000000000000000000000000..c5cdba4d36e1644e3135e61c22d55e2ddec1fc6c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_psionic_fury.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_rod_of_sarrilon.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_rod_of_sarrilon.png
new file mode 100644
index 0000000000000000000000000000000000000000..504382b4f18172e3b29a0ca826aa39b8b5713e31
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_rod_of_sarrilon.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_sceptre_of_the_archlich.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_sceptre_of_the_archlich.png
new file mode 100644
index 0000000000000000000000000000000000000000..51d3612af59fc0b15740286ec19feb0eb43a9b77
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_sceptre_of_the_archlich.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_serpents_glare.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_serpents_glare.png
new file mode 100644
index 0000000000000000000000000000000000000000..c004fb269d58f57377b63fb82b0d72cbd5836619
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_serpents_glare.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_shield_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_shield_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..7e1e77cc585a1597aa08b7ede5772e111c146c88
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_shield_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_skeletal_claw.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_skeletal_claw.png
new file mode 100644
index 0000000000000000000000000000000000000000..466f247477875c826bf084fb2ce2461d54fc3826
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_skeletal_claw.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_sling_eldoral_last_resort.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_sling_eldoral_last_resort.png
new file mode 100644
index 0000000000000000000000000000000000000000..ed1ff63660c60c6e72fc6d811fee9f2785527708
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_sling_eldoral_last_resort.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_spectral_blade.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_spectral_blade.png
new file mode 100644
index 0000000000000000000000000000000000000000..226e307c378cff7170dc266dde61eacd2e6acf0d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_spectral_blade.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_spellcrusher.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_spellcrusher.png
new file mode 100644
index 0000000000000000000000000000000000000000..8347ec3a6d93559a5387a157dc6bbca04ba11193
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_spellcrusher.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_staff_bolbums_big_knocker.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_staff_bolbums_big_knocker.png
new file mode 100644
index 0000000000000000000000000000000000000000..bda42fd71f68acb1841c6414f6c0cc8e5703d8b3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_staff_bolbums_big_knocker.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_staff_broken_bottom_telos.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_staff_broken_bottom_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..f6f3e69caabe55f9cd4d6be9588dc18bb65e0b4b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_staff_broken_bottom_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_staff_broken_top_telos.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_staff_broken_top_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..65178442ec9528b1e88b749aaaa8b174a612f8fb
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_staff_broken_top_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_staff_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_staff_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..813ff299797dab0ac29c7d706b8cf03de48a1374
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_staff_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_staff_kors_fall.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_staff_kors_fall.png
new file mode 100644
index 0000000000000000000000000000000000000000..756071cb8d92d3de55807bd92326ab21db6b2055
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_staff_kors_fall.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_staff_lost_staff_archmage_tarelion.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_staff_lost_staff_archmage_tarelion.png
new file mode 100644
index 0000000000000000000000000000000000000000..7b3d80fb9a239539e5b098de6bd8cd43b4447462
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_staff_lost_staff_archmage_tarelion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_staff_of_absorbtion.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_staff_of_absorbtion.png
new file mode 100644
index 0000000000000000000000000000000000000000..fe6b4d388e97e0c80179c7c689192ab33279c374
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_staff_of_absorbtion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_staff_of_arcane_supremacy.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_staff_of_arcane_supremacy.png
new file mode 100644
index 0000000000000000000000000000000000000000..ea7716486faa3df45f3aab986f457830914e02e8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_staff_of_arcane_supremacy.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_staff_of_destruction.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_staff_of_destruction.png
new file mode 100644
index 0000000000000000000000000000000000000000..ac49f86b1e317a5a132a9c90d59b5985630fdbc1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_staff_of_destruction.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_staff_penitence.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_staff_penitence.png
new file mode 100644
index 0000000000000000000000000000000000000000..cb8218ec0989d63ea5b8a95f637bd539da7936d0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_staff_penitence.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_staff_voice_of_telos.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_staff_voice_of_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..758d17d89904d0e8e46f3d9667b8c48ec8f19cea
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_staff_voice_of_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_storm_fury.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_storm_fury.png
new file mode 100644
index 0000000000000000000000000000000000000000..88081bfc360d4d908a95f50453338aa7f268bc08
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_storm_fury.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_stormlash.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_stormlash.png
new file mode 100644
index 0000000000000000000000000000000000000000..63583c7063a229b506d9f629cd56bbe3596cdfb0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_stormlash.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_surefire.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_surefire.png
new file mode 100644
index 0000000000000000000000000000000000000000..4ee0d06569c47d50fb98ec0ef4eee78a0f78dd1a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_surefire.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_telos_spire_of_power.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_telos_spire_of_power.png
new file mode 100644
index 0000000000000000000000000000000000000000..91c3bb002bac16a089d74967bea376effa22a0f7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_telos_spire_of_power.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_thaloren_tree_longbow.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_thaloren_tree_longbow.png
new file mode 100644
index 0000000000000000000000000000000000000000..999a003e973b2060b08f5dd43ba64205147a89de
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_thaloren_tree_longbow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_trident_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_trident_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..2605b76f9533f2f1f5782d1884ce8ad209eb2f14
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_trident_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_umbral_razor.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_umbral_razor.png
new file mode 100644
index 0000000000000000000000000000000000000000..b9fcce739abcf2b0ec5eef1d9890d42b74d0927d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_umbral_razor.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_unstoppable_mauler.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_unstoppable_mauler.png
new file mode 100644
index 0000000000000000000000000000000000000000..6cb5bf04684bd968e6e6f8a6f241fd7348890819
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_unstoppable_mauler.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_voratun_hammer_of_the_deep_bellow.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_voratun_hammer_of_the_deep_bellow.png
new file mode 100644
index 0000000000000000000000000000000000000000..42eff6430255854a45af773257fe289d9f1f74a0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_voratun_hammer_of_the_deep_bellow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_warmaster_gnargs_murderblade.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_warmaster_gnargs_murderblade.png
new file mode 100644
index 0000000000000000000000000000000000000000..d2a1994f39b5df49de9aecadde4d152e77aa0653
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_warmaster_gnargs_murderblade.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_whip_of_urh_rok.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_whip_of_urh_rok.png
new file mode 100644
index 0000000000000000000000000000000000000000..c971289a5162efe776ba0107c16232e989c773d4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_whip_of_urh_rok.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_whip_scorpions_tail.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_whip_scorpions_tail.png
new file mode 100644
index 0000000000000000000000000000000000000000..befb42bbafaed58e1fcad685d425d5a52ed8f02c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_whip_scorpions_tail.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_writhing_essence_of_nightmares.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_writhing_essence_of_nightmares.png
new file mode 100644
index 0000000000000000000000000000000000000000..9f27b91bfb692c1c85f6fcc1601fa275d53702bb
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/right_writhing_essence_of_nightmares.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/robe_black_robe.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/robe_black_robe.png
new file mode 100644
index 0000000000000000000000000000000000000000..b7abb1a2436bd1116bd47449405ca854b3315594
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/robe_black_robe.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/robe_firewalker.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/robe_firewalker.png
new file mode 100644
index 0000000000000000000000000000000000000000..5f1a5377750353f586488c0727a477636f30f956
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/robe_firewalker.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/robe_of_force.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/robe_of_force.png
new file mode 100644
index 0000000000000000000000000000000000000000..10c951eaf1f8f3428017ee8802f49395ac5b1631
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/robe_of_force.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/robe_spider_silk_robe_spydre.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/robe_spider_silk_robe_spydre.png
new file mode 100644
index 0000000000000000000000000000000000000000..18eb21bbfa0e4a40912de64ce68efa2064b6a224
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/robe_spider_silk_robe_spydre.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/robe_temporal_augmentation_robe.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/robe_temporal_augmentation_robe.png
new file mode 100644
index 0000000000000000000000000000000000000000..14794907275fa77056f2360d10903cd5ce445631
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/robe_temporal_augmentation_robe.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/robe_vestments_of_the_conclave.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/robe_vestments_of_the_conclave.png
new file mode 100644
index 0000000000000000000000000000000000000000..1e625f610093ef873bac9beabb4985685abae6f1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/robe_vestments_of_the_conclave.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/robes_of_deflection.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/robes_of_deflection.png
new file mode 100644
index 0000000000000000000000000000000000000000..eee0b13213f605599fe0c007602f10283ae24b09
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/robes_of_deflection.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/scale_mail_of_kroltar.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/scale_mail_of_kroltar.png
new file mode 100644
index 0000000000000000000000000000000000000000..1587c4d45da52022c2df2cecded020a1dd3279d6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/scale_mail_of_kroltar.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/scorched_boots.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/scorched_boots.png
new file mode 100644
index 0000000000000000000000000000000000000000..b0a305e40689830190b7810501d80455541d866e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/scorched_boots.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/scorpion_gauntlets.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/scorpion_gauntlets.png
new file mode 100644
index 0000000000000000000000000000000000000000..54a05aea6428a732489097d6bfda15596d5ac863
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/scorpion_gauntlets.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/serpentine_cloak_behind.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/serpentine_cloak_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..96de7a2f5dda4759df3243e035523d2af0f19845
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/serpentine_cloak_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/serpentine_cloak_hood.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/serpentine_cloak_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..ed834892c60e63c9dfbaedf7ea337dfb45226050
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/serpentine_cloak_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/serpentine_cloak_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/serpentine_cloak_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..a55d0362dbb50776ccfbd8d187ed15fc6aef023a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/serpentine_cloak_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/shifting_boots.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/shifting_boots.png
new file mode 100644
index 0000000000000000000000000000000000000000..e336ea6489d9aa23ac5eca164b75994d0efb7002
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/shifting_boots.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/silk_current.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/silk_current.png
new file mode 100644
index 0000000000000000000000000000000000000000..4beb2f0c261a37492262ab6e9fbd014bb1900c8a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/silk_current.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/sludgegrip.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/sludgegrip.png
new file mode 100644
index 0000000000000000000000000000000000000000..4dfd0a4a2083b01279f81496139f4d938f8553a1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/sludgegrip.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/snow_giant_arm_wraps.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/snow_giant_arm_wraps.png
new file mode 100644
index 0000000000000000000000000000000000000000..99b55998762f88f2541d29b9ba83624f44070896
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/snow_giant_arm_wraps.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/spellhunt_remnants.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/spellhunt_remnants.png
new file mode 100644
index 0000000000000000000000000000000000000000..82741e4bb2c5948dd48ff4faf0717aba6d13da35
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/spellhunt_remnants.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/star_shot.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/star_shot.png
new file mode 100644
index 0000000000000000000000000000000000000000..b36058917bd77be1fae286059b48b20774d98a35
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/star_shot.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/storm_bringers_gauntlets.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/storm_bringers_gauntlets.png
new file mode 100644
index 0000000000000000000000000000000000000000..1ab0b251bb3a93b6b4599e6908c29f4c476420b0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/storm_bringers_gauntlets.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/terrasca.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/terrasca.png
new file mode 100644
index 0000000000000000000000000000000000000000..d7bfa4e195df4b272163bc32bf4bf109d64b41c0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/terrasca.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/the_calm.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/the_calm.png
new file mode 100644
index 0000000000000000000000000000000000000000..6ab515be9676a424f56c99f327213c5de53a2558
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/the_calm.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/the_inner_eye.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/the_inner_eye.png
new file mode 100644
index 0000000000000000000000000000000000000000..dcf328db5089de3db14fd766a271b04e007a3997
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/the_inner_eye.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/the_titans_quiver.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/the_titans_quiver.png
new file mode 100644
index 0000000000000000000000000000000000000000..ac3296b29b5b25b1590dbec15d7ea7dc1c313a63
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/the_titans_quiver.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/the_untouchable.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/the_untouchable.png
new file mode 100644
index 0000000000000000000000000000000000000000..f0ed046b669b4ff98f656592a6faa2c5b64aea2f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/the_untouchable.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/the_warped_boots.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/the_warped_boots.png
new file mode 100644
index 0000000000000000000000000000000000000000..d23e35e1372aeff7d7850289908e952f1641a1e2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/the_warped_boots.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/unbreakable_greaves.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/unbreakable_greaves.png
new file mode 100644
index 0000000000000000000000000000000000000000..e261198875de5214898f9d3498e4c36711b5ab61
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/unbreakable_greaves.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/ureslaks_molted_scales_behind.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/ureslaks_molted_scales_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..1dfbfab1b726c649eb255e05f9283d203bae3539
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/ureslaks_molted_scales_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/ureslaks_molted_scales_hood.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/ureslaks_molted_scales_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..53c80a8b69f146dae03615a5e743c795997f4862
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/ureslaks_molted_scales_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/ureslaks_molted_scales_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/ureslaks_molted_scales_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..13e4c8b682e9927493c32ccd58fa56c30bf6c32f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/ureslaks_molted_scales_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/void_quiver.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/void_quiver.png
new file mode 100644
index 0000000000000000000000000000000000000000..2ae6690e66c0163729137a7fe73efb4cd2caab6e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/void_quiver.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/wanderers_rest.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/wanderers_rest.png
new file mode 100644
index 0000000000000000000000000000000000000000..3fd0987ca554a20d8c403499bbb69692f9d258f8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/wanderers_rest.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/wind_worn_shot.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/wind_worn_shot.png
new file mode 100644
index 0000000000000000000000000000000000000000..0ca404e5da1e99f284d085ffad5fc2c996fdc237
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/wind_worn_shot.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/wizard_hat_of_arcane_understanding.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/wizard_hat_of_arcane_understanding.png
new file mode 100644
index 0000000000000000000000000000000000000000..f8bf15a6ab34dd92c6c114c356826b9642a0ee35
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/wizard_hat_of_arcane_understanding.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/wooden_cuirass.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/wooden_cuirass.png
index 720ef126d24d1bc0cd319c85d05d2643ccc9f00a..9e7ccbb404559d34caef8efe0510aa0368731856 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/wooden_cuirass.png and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/wooden_cuirass.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/wrap_of_stone_behind.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/wrap_of_stone_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..c384edc4ce2193225210c3061218aafb7cc193c7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/wrap_of_stone_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/wrap_of_stone_hood.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/wrap_of_stone_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..40660c4b23bd04636f3d6dd36b29dc29c7f63299
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/wrap_of_stone_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/wrap_of_stone_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/wrap_of_stone_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..4797780c3ff8cf83a8a134446b2376aceeb5a8c2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/wrap_of_stone_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/wyrmbreath.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/wyrmbreath.png
new file mode 100644
index 0000000000000000000000000000000000000000..0e29fd8e385dc7c8b06d62551deb2d9e6253a281
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/wyrmbreath.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/yaldan_baoth.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/yaldan_baoth.png
new file mode 100644
index 0000000000000000000000000000000000000000..1cda157b3e068b4ac70937a9445f2c6f5aeaecf4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/yaldan_baoth.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/special/yeek_fur_robe.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/yeek_fur_robe.png
new file mode 100644
index 0000000000000000000000000000000000000000..c4ba295369bfc98948ce1be94aa0fc003c87d2f6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/special/yeek_fur_robe.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/upper_body_25.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/upper_body_25.png
index edb9de4c061fe7131c7f0bead884dfe9cbafd27f..5400ee96c600fe23da3155208f5dc17f490340a9 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/human_male/upper_body_25.png and b/game/modules/tome/data/gfx/shockbolt/player/human_male/upper_body_25.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/upper_body_29.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/upper_body_29.png
new file mode 100644
index 0000000000000000000000000000000000000000..a25e43d3d8475810c8da2c12a5e72a6b47a9aa6d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/upper_body_29.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/upper_body_30.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/upper_body_30.png
new file mode 100644
index 0000000000000000000000000000000000000000..ca95b53a9704e2ffb38e089df9acdd40cd81bc21
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/upper_body_30.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/upper_body_31.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/upper_body_31.png
new file mode 100644
index 0000000000000000000000000000000000000000..968c5f486593cc69e38604f40ed4fa44a2acc3ce
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/upper_body_31.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/upper_body_32.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/upper_body_32.png
new file mode 100644
index 0000000000000000000000000000000000000000..1039f6082928b8aac5ba0cbf613b67426a38565d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/upper_body_32.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/upper_body_33.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/upper_body_33.png
new file mode 100644
index 0000000000000000000000000000000000000000..559b60068b58d563b0c3a7c4b175efb73669be94
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/upper_body_33.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/upper_body_34.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/upper_body_34.png
new file mode 100644
index 0000000000000000000000000000000000000000..d816f110acdd1b4cb79dd6673d9c707e17a28dd8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/upper_body_34.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/upper_body_35.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/upper_body_35.png
new file mode 100644
index 0000000000000000000000000000000000000000..883ac7759de260239af7e9290266715e5209191a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/upper_body_35.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/upper_body_36.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/upper_body_36.png
new file mode 100644
index 0000000000000000000000000000000000000000..26c7f8bf7e386486455118f27eb075f6e0dc1bdc
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/upper_body_36.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/upper_body_37.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/upper_body_37.png
new file mode 100644
index 0000000000000000000000000000000000000000..4e3377070fda6bdc9c2680b4df4113d9ce773282
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/upper_body_37.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/human_male/upper_body_38.png b/game/modules/tome/data/gfx/shockbolt/player/human_male/upper_body_38.png
new file mode 100644
index 0000000000000000000000000000000000000000..cbe0abc3a4728a4a693908f88f2af7244b2a2762
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/human_male/upper_body_38.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/cloak_behind_07.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/cloak_behind_07.png
new file mode 100644
index 0000000000000000000000000000000000000000..72ea4bd01249347e65a878bc6aac7f07ccd2eec3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/cloak_behind_07.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/cloak_behind_08.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/cloak_behind_08.png
new file mode 100644
index 0000000000000000000000000000000000000000..5deeda78aed0100ac2b26a6ffa11361bfc3b6f1a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/cloak_behind_08.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/cloak_behind_09.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/cloak_behind_09.png
new file mode 100644
index 0000000000000000000000000000000000000000..35ee3ff3eb29fb7384e5019277edcab3494da027
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/cloak_behind_09.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/cloak_hood_07.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/cloak_hood_07.png
new file mode 100644
index 0000000000000000000000000000000000000000..9b23cb033e203312b9c0966325f105fcf73048e4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/cloak_hood_07.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/cloak_hood_08.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/cloak_hood_08.png
new file mode 100644
index 0000000000000000000000000000000000000000..beb31e9ad21cb1bc0b9786577ee9f9ce394d0b7b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/cloak_hood_08.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/cloak_hood_09.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/cloak_hood_09.png
new file mode 100644
index 0000000000000000000000000000000000000000..1a3446c30e7e3e463a05504d8224d7e066a3fd9c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/cloak_hood_09.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/cloak_shoulder_07.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/cloak_shoulder_07.png
new file mode 100644
index 0000000000000000000000000000000000000000..8065c5a21a840bf95207a97a4e041aa6e8148853
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/cloak_shoulder_07.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/cloak_shoulder_08.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/cloak_shoulder_08.png
new file mode 100644
index 0000000000000000000000000000000000000000..7123d838135126eb71345a10b3b728136dce330b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/cloak_shoulder_08.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/cloak_shoulder_09.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/cloak_shoulder_09.png
new file mode 100644
index 0000000000000000000000000000000000000000..9d19acbfa03993c01c3be518a1474c22329e5dbb
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/cloak_shoulder_09.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/feet_10.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/feet_10.png
new file mode 100644
index 0000000000000000000000000000000000000000..44cc96dcf208f5dc16563325f400085b12990718
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/feet_10.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/feet_11.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/feet_11.png
new file mode 100644
index 0000000000000000000000000000000000000000..0ec8e45aafea8626363dccecce4e05ef1380dba5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/feet_11.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/gembag_01.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/gembag_01.png
new file mode 100644
index 0000000000000000000000000000000000000000..34ab381e9dbdfb07201fc23186e3a7029c72b500
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/gembag_01.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/gembag_02.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/gembag_02.png
new file mode 100644
index 0000000000000000000000000000000000000000..3debca1dcd5df1872138564c483d9b329e99005f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/gembag_02.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/gembag_03.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/gembag_03.png
new file mode 100644
index 0000000000000000000000000000000000000000..73d0b5fd530d7aa6c6b9bb8e7199da61b6bb24f9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/gembag_03.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/gembag_04.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/gembag_04.png
new file mode 100644
index 0000000000000000000000000000000000000000..49cccfe3e21bb31a63947fca5d31e86e7a8595e6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/gembag_04.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/gembag_05.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/gembag_05.png
new file mode 100644
index 0000000000000000000000000000000000000000..bcf522528d48f879f7574c839e920d54779215e1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/gembag_05.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/hands_08.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/hands_08.png
new file mode 100644
index 0000000000000000000000000000000000000000..0877d4fbd68c34a920da168be47c483144496949
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/hands_08.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/hands_09.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/hands_09.png
new file mode 100644
index 0000000000000000000000000000000000000000..62e4e951f67f2dcc5f16735aa30a235945c4ca5d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/hands_09.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/head_19.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/head_19.png
new file mode 100644
index 0000000000000000000000000000000000000000..851f830006f23399f54c66bd6a932b6cfc5f9ab1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/head_19.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/head_20.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/head_20.png
new file mode 100644
index 0000000000000000000000000000000000000000..71948a67b1a2fffacfada165c6715a63853e5d51
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/head_20.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/head_21.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/head_21.png
new file mode 100644
index 0000000000000000000000000000000000000000..ee846e1cb947a464f7772ed7dc4ff4d43597cec5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/head_21.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/head_22.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/head_22.png
new file mode 100644
index 0000000000000000000000000000000000000000..a43baf7fe36ba7978690d1285170ba2487bdc3be
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/head_22.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/head_23.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/head_23.png
new file mode 100644
index 0000000000000000000000000000000000000000..8fca317e59d7651687dfd966d32795bc91ecec82
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/head_23.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/lower_body_14.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/lower_body_14.png
new file mode 100644
index 0000000000000000000000000000000000000000..ad9ae12a25f2682177056100a3f40aeb8465f795
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/lower_body_14.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/lower_body_15.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/lower_body_15.png
new file mode 100644
index 0000000000000000000000000000000000000000..8df83cfdfc4068aa52b32fbc887f370dbb57a347
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/lower_body_15.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/lower_body_16.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/lower_body_16.png
new file mode 100644
index 0000000000000000000000000000000000000000..33aa642b9cee0c2b4dd02fc5cf78864a91114e0c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/lower_body_16.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/lower_body_17.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/lower_body_17.png
new file mode 100644
index 0000000000000000000000000000000000000000..5d55e2b28ab40b2a12405f6489da6e9cdd3653eb
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/lower_body_17.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/lower_body_18.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/lower_body_18.png
new file mode 100644
index 0000000000000000000000000000000000000000..4a1aafec135f22dc60b4fc3d5414762489743e4b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/lower_body_18.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/lower_body_19.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/lower_body_19.png
new file mode 100644
index 0000000000000000000000000000000000000000..f3b1c2d0577f06a8c5757788c95436e3c971a383
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/lower_body_19.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/quiver_01.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/quiver_01.png
new file mode 100644
index 0000000000000000000000000000000000000000..56b4e2263d8cb781e98ac5c591b0fe6e463e5ee3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/quiver_01.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/quiver_02.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/quiver_02.png
new file mode 100644
index 0000000000000000000000000000000000000000..4b8c2058ca5c631e7c2f0a6b96ec1232de961840
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/quiver_02.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/quiver_03.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/quiver_03.png
new file mode 100644
index 0000000000000000000000000000000000000000..830bde537a3aa338d15ead79f3361f12d7d87416
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/quiver_03.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/quiver_04.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/quiver_04.png
new file mode 100644
index 0000000000000000000000000000000000000000..dc3354951bdad91243d1ceb8f1915302c50144b6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/quiver_04.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/quiver_05.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/quiver_05.png
new file mode 100644
index 0000000000000000000000000000000000000000..aa268f58aab9c160dcd60e05a4a0d3590c20fd5b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/quiver_05.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/shotbag_01.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/shotbag_01.png
new file mode 100644
index 0000000000000000000000000000000000000000..d3b8cf923544393fbe428ebb1c40c14c2ae3e101
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/shotbag_01.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/shotbag_02.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/shotbag_02.png
new file mode 100644
index 0000000000000000000000000000000000000000..5ecc0926e6627abbf1bce5fd9f88d84988191fe8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/shotbag_02.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/shotbag_03.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/shotbag_03.png
new file mode 100644
index 0000000000000000000000000000000000000000..42dd16004596e6189d9f428b1bafbd1737a6f7b8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/shotbag_03.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/shotbag_04.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/shotbag_04.png
new file mode 100644
index 0000000000000000000000000000000000000000..3349358cb489c29c0cd630afe690b1446ae0136c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/shotbag_04.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/shotbag_05.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/shotbag_05.png
new file mode 100644
index 0000000000000000000000000000000000000000..0e11b0bdd57a5f91f610b497ae4b996e3880d6aa
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/shotbag_05.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/aether_walk.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/aether_walk.png
new file mode 100644
index 0000000000000000000000000000000000000000..d960e8980a3dc524d06c1e57827f74ea5f5e1d13
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/aether_walk.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/arkuls_seige_arrows.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/arkuls_seige_arrows.png
new file mode 100644
index 0000000000000000000000000000000000000000..022a32906e434db6205711fa0d2ae6754c5aa78f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/arkuls_seige_arrows.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/armor_chromatic_harness.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/armor_chromatic_harness.png
new file mode 100644
index 0000000000000000000000000000000000000000..b3fc942ec5d9e77802efc635481afbdbaf48941c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/armor_chromatic_harness.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/armor_cuirass_of_the_thronesmen.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/armor_cuirass_of_the_thronesmen.png
new file mode 100644
index 0000000000000000000000000000000000000000..1ec0917ae320be13cc9399a416d8c0bb1cb6461d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/armor_cuirass_of_the_thronesmen.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/armor_natures_blessing.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/armor_natures_blessing.png
new file mode 100644
index 0000000000000000000000000000000000000000..5cb4c05e192647140110361134ba12348e27a482
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/armor_natures_blessing.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/armor_plate_borfasts_cage.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/armor_plate_borfasts_cage.png
new file mode 100644
index 0000000000000000000000000000000000000000..b899ae9b9dde3eb2c36b514be798b75f8b6a8885
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/armor_plate_borfasts_cage.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/armor_rogue_plight.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/armor_rogue_plight.png
new file mode 100644
index 0000000000000000000000000000000000000000..c07171023dedd3018d5aa3286532fc65bb5f90db
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/armor_rogue_plight.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/behemoth_skin.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/behemoth_skin.png
new file mode 100644
index 0000000000000000000000000000000000000000..68954f991eb9d9824b915e7648773d2a56b39dd8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/behemoth_skin.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/black_cloak_behind.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/black_cloak_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..133c4bd29288ea38f0c2788d813ce92c4605c440
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/black_cloak_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/black_cloak_hood.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/black_cloak_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..e985821b2ee134550721ba345a8669c9c0d1c3ae
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/black_cloak_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/black_cloak_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/black_cloak_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..557ef206465875dbf1e77c8ae0ceb5b8dd9c2527
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/black_cloak_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/boots_edens_guile.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/boots_edens_guile.png
new file mode 100644
index 0000000000000000000000000000000000000000..25072952ce7730f8bcff50bb72819c009b43fd3a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/boots_edens_guile.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/boots_of_the_hunter.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/boots_of_the_hunter.png
new file mode 100644
index 0000000000000000000000000000000000000000..332302cececa387c81e702baf71b83fa60e9ab2d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/boots_of_the_hunter.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/breath_of_eyal.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/breath_of_eyal.png
new file mode 100644
index 0000000000000000000000000000000000000000..b199cf523d5f1e6c1062339c896b80eed88cbdf3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/breath_of_eyal.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/cinderfeet.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/cinderfeet.png
new file mode 100644
index 0000000000000000000000000000000000000000..73320f98e677912edd28127b1f07dd7553cd316f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/cinderfeet.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/cloak_threads_of_fate_behind.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/cloak_threads_of_fate_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..e8acd1a6d6cbca92de0d54a24d6aae41bb58ebac
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/cloak_threads_of_fate_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/cloak_threads_of_fate_hood.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/cloak_threads_of_fate_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..1806dd8d633bd94b4ec2c36950bae327295b6a8a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/cloak_threads_of_fate_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/cloak_threads_of_fate_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/cloak_threads_of_fate_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..2db0744dd288603ef4b20af126a1c1d132b34917
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/cloak_threads_of_fate_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/cloak_winds_whisper_behind.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/cloak_winds_whisper_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..db15167bd606ce484b4c5a292e367f82e3dbb526
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/cloak_winds_whisper_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/cloak_winds_whisper_hood.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/cloak_winds_whisper_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..dccb2825b2f9a4a525ab2645b62b8521e5e0b37d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/cloak_winds_whisper_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/cloak_winds_whisper_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/cloak_winds_whisper_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..022bebd3b8aeadea89c96c355c1c23999b6ae18f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/cloak_winds_whisper_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/cloth_armour_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/cloth_armour_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..8b44309872f2d5ba0ba2f13faeba7993170a626a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/cloth_armour_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/cloth_of_dreams_behind.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/cloth_of_dreams_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..a8f8478c68653025505f736b4847702fc1e80701
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/cloth_of_dreams_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/cloth_of_dreams_hood.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/cloth_of_dreams_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..47f1d1f5b540d56baddba6df123ba1419037aeef
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/cloth_of_dreams_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/cloth_of_dreams_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/cloth_of_dreams_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..e64a78dc343c283188b0b0375ca4e62d8be3742d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/cloth_of_dreams_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/corrupted_gaze.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/corrupted_gaze.png
new file mode 100644
index 0000000000000000000000000000000000000000..44710efb8eeb420d9c727cd6f06a53a758f67d1b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/corrupted_gaze.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/crimson_robe.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/crimson_robe.png
new file mode 100644
index 0000000000000000000000000000000000000000..f83fb98badfbf8142a97ef8bd12d8167def18ad1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/crimson_robe.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/crown_of_burning_pain.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/crown_of_burning_pain.png
new file mode 100644
index 0000000000000000000000000000000000000000..bb25e2ec28aebbe649fc12a9f1dfc0efdef6d948
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/crown_of_burning_pain.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/crown_of_command.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/crown_of_command.png
new file mode 100644
index 0000000000000000000000000000000000000000..c929c4b30fe500c50b4f17e2b4108aeb0b4ae353
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/crown_of_command.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/crown_of_eternal_night.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/crown_of_eternal_night.png
new file mode 100644
index 0000000000000000000000000000000000000000..4978f5258ad1e95925e11721cbc883423b146f02
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/crown_of_eternal_night.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/crown_of_the_elements.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/crown_of_the_elements.png
new file mode 100644
index 0000000000000000000000000000000000000000..6d2154b604314c8bbb4448736a55a542d6019c67
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/crown_of_the_elements.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/crystles_astral_bindings.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/crystles_astral_bindings.png
new file mode 100644
index 0000000000000000000000000000000000000000..f3976e84d8b4129aff08be47bb02691d8ad6c7e1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/crystles_astral_bindings.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/dakhtuns_gauntlets.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/dakhtuns_gauntlets.png
new file mode 100644
index 0000000000000000000000000000000000000000..9e7568884cca61aa2c4eca78e1c4bfb2dd97473d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/dakhtuns_gauntlets.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/deaths_embrace.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/deaths_embrace.png
new file mode 100644
index 0000000000000000000000000000000000000000..7860b86beba41f7cf8e785ecef15db6c3fd19b7d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/deaths_embrace.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/decayed_visage.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/decayed_visage.png
new file mode 100644
index 0000000000000000000000000000000000000000..4c85a10e4b2ebb48dbfe882ffe30ed67d47218c4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/decayed_visage.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/destalas_scales_behind.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/destalas_scales_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..6564c6c3e3b85a50f3527e589b385c1b9016824e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/destalas_scales_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/destalas_scales_whisper_hood.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/destalas_scales_whisper_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..efca1a9b748abf416d8c5a8a6519a89c3d959409
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/destalas_scales_whisper_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/destalas_scales_whisper_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/destalas_scales_whisper_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..58d65404b18633dbedf4c4b31b56e63efa906e81
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/destalas_scales_whisper_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/dgs_clothes.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/dgs_clothes.png
new file mode 100644
index 0000000000000000000000000000000000000000..5e907b3eca43ee20860f8d2538df4b3eda37c5bf
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/dgs_clothes.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/diadem_alettas_diadem.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/diadem_alettas_diadem.png
new file mode 100644
index 0000000000000000000000000000000000000000..2a2f2b2511d76b5cfa4861b6b72655e58aaa50a1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/diadem_alettas_diadem.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/dragon_helm_of_kroltar.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/dragon_helm_of_kroltar.png
new file mode 100644
index 0000000000000000000000000000000000000000..d874367432d47760c50a5af517cf24c10d27c0fc
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/dragon_helm_of_kroltar.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/dragonskull_helmet.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/dragonskull_helmet.png
new file mode 100644
index 0000000000000000000000000000000000000000..72bdaf70322fc0a1605f52a821f706595cf8fc67
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/dragonskull_helmet.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/eel_skin_armor.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/eel_skin_armor.png
new file mode 100644
index 0000000000000000000000000000000000000000..3063fa15224628e8dceb3e4299f01587874fa025
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/eel_skin_armor.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/ethereal_embrace_behind.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/ethereal_embrace_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..90beaa3472a8c544370a74a6b5873933d2310fb2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/ethereal_embrace_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/ethereal_embrace_hood.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/ethereal_embrace_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..63eb5616cac2caf4d3a5c5a663426cf157f16318
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/ethereal_embrace_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/ethereal_embrace_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/ethereal_embrace_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..518260e8433946fc287cb15e7ad55861f67b0e85
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/ethereal_embrace_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/evermoss_robe.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/evermoss_robe.png
new file mode 100644
index 0000000000000000000000000000000000000000..21ef2ac9d11964beed96faaa0d4898dcdf8fad52
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/evermoss_robe.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/eye_of_the_forest.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/eye_of_the_forest.png
new file mode 100644
index 0000000000000000000000000000000000000000..1f193219b3980f9bfa0aea6a50d3ec4bdfb90d41
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/eye_of_the_forest.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/fist_of_the_destroyer.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/fist_of_the_destroyer.png
new file mode 100644
index 0000000000000000000000000000000000000000..f64085fd80e3a2ac3d2059d78c3b5b4065005ace
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/fist_of_the_destroyer.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/frost_treads.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/frost_treads.png
new file mode 100644
index 0000000000000000000000000000000000000000..081be90642a149d7f9cf997d5e6fd85849ec0032
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/frost_treads.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/frozen_shards.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/frozen_shards.png
new file mode 100644
index 0000000000000000000000000000000000000000..bc03e304d33d375bbed9edb5cabfa101e18cb3bf
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/frozen_shards.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/frozen_shroud_behind.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/frozen_shroud_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..f819edef65988de4c6203e9628fbbfd2c31e08cd
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/frozen_shroud_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/frozen_shroud_hood.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/frozen_shroud_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..5b0e3979436c878cfa806caa1c902149fdf695ec
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/frozen_shroud_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/frozen_shroud_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/frozen_shroud_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..b3363d2794a7562970911bb5c51237b2fc32f1bb
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/frozen_shroud_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/gauntlets_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/gauntlets_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..68075ff0dcbad8b74ab621532f7a6dd741442af0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/gauntlets_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/gloves_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/gloves_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..7c3d6daab6a4ab6000c22847e03640ffba253f8d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/gloves_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/gloves_flamewrought.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/gloves_flamewrought.png
new file mode 100644
index 0000000000000000000000000000000000000000..5c5dc2b8174b230cf9116d840896abea5f35b857
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/gloves_flamewrought.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/gloves_of_the_firm_hand.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/gloves_of_the_firm_hand.png
new file mode 100644
index 0000000000000000000000000000000000000000..091ecab86c6d4af090242f6c8b69273df0f92da2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/gloves_of_the_firm_hand.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/grip_of_death.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/grip_of_death.png
new file mode 100644
index 0000000000000000000000000000000000000000..ac752e9aeb568c421bb067b15f822455539e1100
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/grip_of_death.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/guise_of_the_hated_behind.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/guise_of_the_hated_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..682de5ac842aa8da87fcd716b11452097562b5a6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/guise_of_the_hated_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/guise_of_the_hated_hood.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/guise_of_the_hated_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..9c483f579fec1a2626a382d90e4fdd24f9f618e3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/guise_of_the_hated_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/guise_of_the_hated_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/guise_of_the_hated_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..721cefe89386fff64f69f66eaea352a5905f2bed
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/guise_of_the_hated_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/hand_of_the_worldshaper.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/hand_of_the_worldshaper.png
new file mode 100644
index 0000000000000000000000000000000000000000..d3e586b58facad11b175177c34e24bfa1bb246e7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/hand_of_the_worldshaper.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/harkor_zun_gauntlets.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/harkor_zun_gauntlets.png
new file mode 100644
index 0000000000000000000000000000000000000000..cf5c8ca0a56e55340de24df3f3e201baf5fab378
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/harkor_zun_gauntlets.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/heavy_armour_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/heavy_armour_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..a0d308e121794b27092789c8900298809edcfdaa
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/heavy_armour_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/helm_of_garkul.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/helm_of_garkul.png
new file mode 100644
index 0000000000000000000000000000000000000000..e1fe97e4f308ec32abd8a3cfb29b65d515d48340
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/helm_of_garkul.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/helm_of_the_dwarven_emperors.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/helm_of_the_dwarven_emperors.png
new file mode 100644
index 0000000000000000000000000000000000000000..5aad7edd6855f1b7f40a913c64860156de243d59
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/helm_of_the_dwarven_emperors.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/hornet_stingers.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/hornet_stingers.png
new file mode 100644
index 0000000000000000000000000000000000000000..a9d3a852e2bc114457c5fd62313dc8f91af25d3c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/hornet_stingers.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/iron_mail_of_bloodletting.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/iron_mail_of_bloodletting.png
new file mode 100644
index 0000000000000000000000000000000000000000..5fa7b6e594684400918cf00f3ce0ad7ccfd40efa
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/iron_mail_of_bloodletting.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_1Haxe_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_1Haxe_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..8fe6e1567373e8bfdca5aa67b5c526a268baf4f4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_1Haxe_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_1Hmace_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_1Hmace_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..33fd089dcfe184e728205c36721f00f859a51309
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_1Hmace_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_1Hsword_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_1Hsword_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..0db80dd5fcd32ee865bf4ed981d49f957d9863be
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_1Hsword_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_2Haxe_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_2Haxe_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..f029d3e5ac540e8be89132788f54956209af2ca3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_2Haxe_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_2Hmace_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_2Hmace_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..be5459bf0d0f6cc73d4ea1243a92525ba8914a47
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_2Hmace_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_2Hsword_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_2Hsword_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..599f924b77c2bce322ff65b78d219f169d0c84c5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_2Hsword_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_amethyst_of_sanctuary.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_amethyst_of_sanctuary.png
new file mode 100644
index 0000000000000000000000000000000000000000..1a2536e511f52dd76d0553f779f3bd6ef29912bf
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_amethyst_of_sanctuary.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_awaken_staff_of_absorbtion.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_awaken_staff_of_absorbtion.png
new file mode 100644
index 0000000000000000000000000000000000000000..40f3311b224ee8170e2fdcb1e7e187b9575a7199
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_awaken_staff_of_absorbtion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_blighted_maul.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_blighted_maul.png
new file mode 100644
index 0000000000000000000000000000000000000000..297282cee54cd509a95f7d39c5388c24333ab020
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_blighted_maul.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_bloomsoul.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_bloomsoul.png
new file mode 100644
index 0000000000000000000000000000000000000000..1d00107474f1d9e299182e59934e0f028902830b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_bloomsoul.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_borosks_hate.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_borosks_hate.png
new file mode 100644
index 0000000000000000000000000000000000000000..de75899de7ec25e5bc73d7c09695e76d761f5317
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_borosks_hate.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_bow_corpsebow.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_bow_corpsebow.png
new file mode 100644
index 0000000000000000000000000000000000000000..49e7b8405ce5249795f940b7d4da1ee97fcfb8e0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_bow_corpsebow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_bow_epochs_curve.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_bow_epochs_curve.png
new file mode 100644
index 0000000000000000000000000000000000000000..40b0534f97ed5e4e8b38422d5d909cb3584a3c62
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_bow_epochs_curve.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_champions_will.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_champions_will.png
new file mode 100644
index 0000000000000000000000000000000000000000..5120b5773adbc11d1a4e01f76d0d743f1ebb1ddb
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_champions_will.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_colaryem.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_colaryem.png
new file mode 100644
index 0000000000000000000000000000000000000000..dd599617b3bf50c39d0f8bd68a6c3b8973b492a2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_colaryem.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_core_of_the_forge.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_core_of_the_forge.png
new file mode 100644
index 0000000000000000000000000000000000000000..2ceabefa0faad856fe1e4941e9fefac7b80d3a2b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_core_of_the_forge.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_corpus_2.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_corpus_2.png
new file mode 100644
index 0000000000000000000000000000000000000000..17ea235de1fa36aec7a5870879263b0b71532381
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_corpus_2.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_crystal_shard.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_crystal_shard.png
new file mode 100644
index 0000000000000000000000000000000000000000..c253161350310c751531aec23b6f34eac9fda576
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_crystal_shard.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_dagger_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_dagger_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..77e1ffef21f2afc0be976a385ce7c1c52e34fe7a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_dagger_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_dream_malleus.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_dream_malleus.png
new file mode 100644
index 0000000000000000000000000000000000000000..956e167b60f43c5be1b9e3e5725dfcf483748fc8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_dream_malleus.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_eclipse.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_eclipse.png
new file mode 100644
index 0000000000000000000000000000000000000000..20f573732866d1fbcd5814ed20db9d60a9fa7f8b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_eclipse.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_eyals_will.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_eyals_will.png
new file mode 100644
index 0000000000000000000000000000000000000000..5aa9ba098b101de78720dc3b41fb1ef91959d8c2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_eyals_will.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_eye_of_the_wyrm.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_eye_of_the_wyrm.png
new file mode 100644
index 0000000000000000000000000000000000000000..7873e13f48ede44605f31f59d7caac8fd0b348c7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_eye_of_the_wyrm.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_focus_whip.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_focus_whip.png
new file mode 100644
index 0000000000000000000000000000000000000000..6f66d6f527ee826f568f3fc5aab9b0db38c6be0d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_focus_whip.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_genocide.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_genocide.png
new file mode 100644
index 0000000000000000000000000000000000000000..1e26d4a654045f7a207342dffb0cc181594bdb24
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_genocide.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_gravitational_staff.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_gravitational_staff.png
new file mode 100644
index 0000000000000000000000000000000000000000..11013382a66d6ded124ea44a8cfb924536b8e557
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_gravitational_staff.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_great_caller.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_great_caller.png
new file mode 100644
index 0000000000000000000000000000000000000000..2f04165edd8270df0bcfa0898bc1a2327ac94a09
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_great_caller.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_guidance.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_guidance.png
new file mode 100644
index 0000000000000000000000000000000000000000..27d126efc5ff8eb901ee2cd8f586c14f5f7a42d1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_guidance.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_hareskin_sling.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_hareskin_sling.png
new file mode 100644
index 0000000000000000000000000000000000000000..c17eb38e70efaad771a43cbd4e1e2accb310ff7b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_hareskin_sling.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_hydras_bite.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_hydras_bite.png
new file mode 100644
index 0000000000000000000000000000000000000000..eb1eb014cdd1bb2de8e7dae15906dfcc7cdd24e0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_hydras_bite.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_latafayn.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_latafayn.png
new file mode 100644
index 0000000000000000000000000000000000000000..4f3f23f39da1ba5ffc2eb386dedf6947ca9a9738
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_latafayn.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_merkuls_second_eye.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_merkuls_second_eye.png
new file mode 100644
index 0000000000000000000000000000000000000000..4031e91cdc0a55e2630ffa81be1258260111e9af
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_merkuls_second_eye.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_nexus_of_the_way.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_nexus_of_the_way.png
new file mode 100644
index 0000000000000000000000000000000000000000..05e0aecb884b716eb87035f1ffc073121b3d3515
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_nexus_of_the_way.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_nithans_force.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_nithans_force.png
new file mode 100644
index 0000000000000000000000000000000000000000..d1073547199e857c5c98f84aea5f12dc010a6d86
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_nithans_force.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_obliterator.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_obliterator.png
new file mode 100644
index 0000000000000000000000000000000000000000..44faf60f38288d16ccefd466c8f7eecdf138dcd0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_obliterator.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_oozing_heart.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_oozing_heart.png
new file mode 100644
index 0000000000000000000000000000000000000000..1008eec042322210f7ce740b21da545734c32619
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_oozing_heart.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_psionic_fury.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_psionic_fury.png
new file mode 100644
index 0000000000000000000000000000000000000000..9bae39419f3d094bbc1d4a63fe874d099aa6e2bf
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_psionic_fury.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_rod_of_sarrilon.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_rod_of_sarrilon.png
new file mode 100644
index 0000000000000000000000000000000000000000..6376be5d81b27371df386a37721cae5cef898618
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_rod_of_sarrilon.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_sceptre_of_the_archlich.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_sceptre_of_the_archlich.png
new file mode 100644
index 0000000000000000000000000000000000000000..c4037f79653e74cfe1af10c2817aaa140cf997a3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_sceptre_of_the_archlich.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_serpents_glare.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_serpents_glare.png
new file mode 100644
index 0000000000000000000000000000000000000000..a058fe87bbc96cc3bc1eccc5824c393454ec328c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_serpents_glare.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_shield_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_shield_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..8c275b1d092a374ceb07879dbff03291a94c0a03
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_shield_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_skeletal_claw.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_skeletal_claw.png
new file mode 100644
index 0000000000000000000000000000000000000000..6e9b4fb66874cac8abcac059acfbad39484962d3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_skeletal_claw.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_sling_eldoral_last_resort.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_sling_eldoral_last_resort.png
new file mode 100644
index 0000000000000000000000000000000000000000..512f53ad8f055cb196453874b5b592e9f88b35bc
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_sling_eldoral_last_resort.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_spectral_blade.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_spectral_blade.png
new file mode 100644
index 0000000000000000000000000000000000000000..c23f4305162e1281b2ac5b6ee4cd6792caa972db
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_spectral_blade.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_spellcrusher.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_spellcrusher.png
new file mode 100644
index 0000000000000000000000000000000000000000..a1e012ca355daa63fde66e18c5708c07693523aa
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_spellcrusher.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_staff_bolbums_big_knocker.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_staff_bolbums_big_knocker.png
new file mode 100644
index 0000000000000000000000000000000000000000..f7f75723d8f9598fc37b716198dae936f92cbd39
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_staff_bolbums_big_knocker.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_staff_broken_bottom_telos.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_staff_broken_bottom_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..a47d67d65f35e074fde2a28ce3d3f336ab5820af
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_staff_broken_bottom_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_staff_broken_top_telos.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_staff_broken_top_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..84eaf6296b3ee7c15c9406ce4da091897e4ab7de
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_staff_broken_top_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_staff_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_staff_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..47de39880b78e7aff5272b3c83946064ced12617
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_staff_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_staff_kors_fall.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_staff_kors_fall.png
new file mode 100644
index 0000000000000000000000000000000000000000..df7b55b9b5fdff088f8359a85158c1f9766641d3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_staff_kors_fall.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_staff_lost_staff_archmage_tarelion.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_staff_lost_staff_archmage_tarelion.png
new file mode 100644
index 0000000000000000000000000000000000000000..d75ed8eea8b20e5ef110e2dd1aa267db31d80ae5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_staff_lost_staff_archmage_tarelion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_staff_of_absorbtion.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_staff_of_absorbtion.png
new file mode 100644
index 0000000000000000000000000000000000000000..6e3459c2348c09c9c062fdabaf7c5e740e7073f1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_staff_of_absorbtion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_staff_of_arcane_supremacy.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_staff_of_arcane_supremacy.png
new file mode 100644
index 0000000000000000000000000000000000000000..b57c3c1309260a62621c1b5f44e879a1dfe7129d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_staff_of_arcane_supremacy.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_staff_of_destruction.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_staff_of_destruction.png
new file mode 100644
index 0000000000000000000000000000000000000000..0d39903774a95765b7d74f605103dcd630d255dc
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_staff_of_destruction.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_staff_penitence.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_staff_penitence.png
new file mode 100644
index 0000000000000000000000000000000000000000..387b53ba5d6360254b4c6fd62a1bcbed41bc2e40
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_staff_penitence.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_staff_voice_of_telos.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_staff_voice_of_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..f0bf42628a70a2717ab2d6a220051e21913dbd26
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_staff_voice_of_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_storm_fury.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_storm_fury.png
new file mode 100644
index 0000000000000000000000000000000000000000..770cb0ac72f19f55d8fd1e2dacf5e5490a083692
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_storm_fury.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_stormlash.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_stormlash.png
new file mode 100644
index 0000000000000000000000000000000000000000..709552de804402a3b07e3495c24f4a0ad61a821e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_stormlash.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_surefire.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_surefire.png
new file mode 100644
index 0000000000000000000000000000000000000000..1cb8dae3fb123b661229e259e240942f57a49e87
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_surefire.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_telos_spire_of_power.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_telos_spire_of_power.png
new file mode 100644
index 0000000000000000000000000000000000000000..56e0e657ebc92cf188c3c8d836dbb586f237682b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_telos_spire_of_power.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_thaloren_tree_longbow.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_thaloren_tree_longbow.png
new file mode 100644
index 0000000000000000000000000000000000000000..373c5b83299a6b84da46010acda5a6ef88e34cb6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_thaloren_tree_longbow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_trident_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_trident_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..906a46218dd0e41ddd4da13f59ede1f4e627e4ea
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_trident_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_umbral_razor.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_umbral_razor.png
new file mode 100644
index 0000000000000000000000000000000000000000..da3888f7e66452d808a401ebe6df91bcc17fbf97
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_umbral_razor.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_unstoppable_mauler.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_unstoppable_mauler.png
new file mode 100644
index 0000000000000000000000000000000000000000..59fb41e6aad3c9237e99aa7be1a2de99b7200248
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_unstoppable_mauler.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_voratun_hammer_of_the_deep_bellow.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_voratun_hammer_of_the_deep_bellow.png
new file mode 100644
index 0000000000000000000000000000000000000000..1498b40b1b26f15e9edc2961a38b7e5e44856b88
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_voratun_hammer_of_the_deep_bellow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_warmaster_gnargs_murderblade.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_warmaster_gnargs_murderblade.png
new file mode 100644
index 0000000000000000000000000000000000000000..b247d002d35b16d190c2620e35b9ad224bb9405f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_warmaster_gnargs_murderblade.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_whip_of_urh_rok.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_whip_of_urh_rok.png
new file mode 100644
index 0000000000000000000000000000000000000000..35a729e4661096bab9efb4943a24d13a08dcd52a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_whip_of_urh_rok.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_whip_scorpions_tail.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_whip_scorpions_tail.png
new file mode 100644
index 0000000000000000000000000000000000000000..8c53fa5d84d8347e095d279aafb61e25c933ce1f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_whip_scorpions_tail.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_writhing_essence_of_nightmares.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_writhing_essence_of_nightmares.png
new file mode 100644
index 0000000000000000000000000000000000000000..9c2a2ae1bf9ff201e28c37a861e1706f23ab3c82
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/left_writhing_essence_of_nightmares.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/light_armour_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/light_armour_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..0e420ad7f9452c142395dfd756cbae46b0b81997
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/light_armour_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/malslek_the_accursed_hat.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/malslek_the_accursed_hat.png
new file mode 100644
index 0000000000000000000000000000000000000000..e818c1f8fc695e144d9e3841c5a9fd703a0039a2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/malslek_the_accursed_hat.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/masochism.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/masochism.png
new file mode 100644
index 0000000000000000000000000000000000000000..57cb10a09deb05801d5bedb52558c0f9bdf38e11
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/masochism.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/massive_armour_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/massive_armour_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..9965bc26de6bcd4bb92d30ab030a2edf1d1edd8d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/massive_armour_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/molten_skin.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/molten_skin.png
new file mode 100644
index 0000000000000000000000000000000000000000..d851bf4ec46752b55e3fc6c252a4805e44e999e5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/molten_skin.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/omniscience.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/omniscience.png
new file mode 100644
index 0000000000000000000000000000000000000000..f05c8ab4e4ac86ae836578b7b9592af950c65761
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/omniscience.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/plate_armor_of_the_king.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/plate_armor_of_the_king.png
new file mode 100644
index 0000000000000000000000000000000000000000..53cc4dbbd407f53796c317befe5a0c313ede203f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/plate_armor_of_the_king.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/plate_of_the_blackened_mind.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/plate_of_the_blackened_mind.png
new file mode 100644
index 0000000000000000000000000000000000000000..66c277f182488b13a30ec2926d2eeb7b652e0b5a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/plate_of_the_blackened_mind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/pouch_of_the_subconscious.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/pouch_of_the_subconscious.png
new file mode 100644
index 0000000000000000000000000000000000000000..ef278fafa9655ad7982edcee73ad3305d66cfb34
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/pouch_of_the_subconscious.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/quiver_of_domination.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/quiver_of_domination.png
new file mode 100644
index 0000000000000000000000000000000000000000..2be50ea26bd8326e8d8b78af6f7b8f9f309e9115
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/quiver_of_domination.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/quiver_of_the_sun.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/quiver_of_the_sun.png
new file mode 100644
index 0000000000000000000000000000000000000000..92a88fe89e20171b52c0639c1bfd6c44ae34a525
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/quiver_of_the_sun.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/radiance_behind.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/radiance_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..8f291a67b8abb7dc4379644ebcfb2e191d702d36
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/radiance_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/radiance_hood.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/radiance_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..a523ba6f30eaa45114cca5b3ca0192bc1feb6d15
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/radiance_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/radiance_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/radiance_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..badca16bb123d5d09e92a578c75005828a05ddf5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/radiance_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_1Haxe_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_1Haxe_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..3967d7797dc516ec9add147f2b48392d5b105aa4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_1Haxe_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_1Hmace_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_1Hmace_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..cd62fcb02da52adc94bbaad83b02a5e1b7eca657
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_1Hmace_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_1Hsword_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_1Hsword_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..f157d09985dda4b5d420c01796e531d86ab70e6b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_1Hsword_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_2Haxe_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_2Haxe_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..67113b47738f9d1b30368982d3d36263eff95ae1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_2Haxe_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_2Hmace_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_2Hmace_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..099c8dcd71e02450ccffcfd5d4221477e0ae2827
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_2Hmace_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_2Hsword_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_2Hsword_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..8345b269ad93fb753b00fedfa5af8421d7ff19e9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_2Hsword_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_amethyst_of_sanctuary.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_amethyst_of_sanctuary.png
new file mode 100644
index 0000000000000000000000000000000000000000..76f2628639a93c039eb9e0a47304c24d3f60c40f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_amethyst_of_sanctuary.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_awaken_staff_of_absorbtion.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_awaken_staff_of_absorbtion.png
new file mode 100644
index 0000000000000000000000000000000000000000..586bc8605e40ad9347b71067006d9bf328f6de2f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_awaken_staff_of_absorbtion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_blighted_maul.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_blighted_maul.png
new file mode 100644
index 0000000000000000000000000000000000000000..d0fd7572bfe7888a9ec7d4e7216c7d589bbba427
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_blighted_maul.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_bloomsoul.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_bloomsoul.png
new file mode 100644
index 0000000000000000000000000000000000000000..efa8cd42f17a22852d3400e8fee521e58cb6a439
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_bloomsoul.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_borosks_hate.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_borosks_hate.png
new file mode 100644
index 0000000000000000000000000000000000000000..fff1144f2d2d477c805a52520998d23967f97fdb
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_borosks_hate.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_bow_corpsebow.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_bow_corpsebow.png
new file mode 100644
index 0000000000000000000000000000000000000000..5ba8559d2ee02335fabfb061040cad3638b1276a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_bow_corpsebow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_bow_epochs_curve.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_bow_epochs_curve.png
new file mode 100644
index 0000000000000000000000000000000000000000..7b2c2c7834a04ff6492e5494ac04cff546ec78f6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_bow_epochs_curve.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_champions_will.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_champions_will.png
new file mode 100644
index 0000000000000000000000000000000000000000..a0f4a4fcd1ba4c2a8660b8787d06cc2450c6632b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_champions_will.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_colaryem.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_colaryem.png
new file mode 100644
index 0000000000000000000000000000000000000000..a543e686a141e3c42e17c0d35338f239794f498c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_colaryem.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_core_of_the_forge.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_core_of_the_forge.png
new file mode 100644
index 0000000000000000000000000000000000000000..466645e5549c9fdb480940bf0f38ad157ee49cf5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_core_of_the_forge.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_corpus_2.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_corpus_2.png
new file mode 100644
index 0000000000000000000000000000000000000000..6ec4b491ffcd0489193b17e73fe9258e540ced45
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_corpus_2.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_crystal_shard.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_crystal_shard.png
new file mode 100644
index 0000000000000000000000000000000000000000..6ec75827222d8794682116208c6335d9cb43c0c5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_crystal_shard.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_dagger_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_dagger_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..9b8d129e312b96fd8559c30cb61ba9527931f874
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_dagger_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_dream_malleus.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_dream_malleus.png
new file mode 100644
index 0000000000000000000000000000000000000000..aecd7c705a48686af8ca09b954d56f0e5573f9fc
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_dream_malleus.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_eclipse.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_eclipse.png
new file mode 100644
index 0000000000000000000000000000000000000000..1ea439562aeaf2a3f00d39f6875761bab8a16450
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_eclipse.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_eyals_will.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_eyals_will.png
new file mode 100644
index 0000000000000000000000000000000000000000..375a8dc6187cc9b4475b886b11a3909882305774
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_eyals_will.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_eye_of_the_wyrm.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_eye_of_the_wyrm.png
new file mode 100644
index 0000000000000000000000000000000000000000..2e00c1c050be53c74e68a7fb9845bf802c800e94
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_eye_of_the_wyrm.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_focus_whip.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_focus_whip.png
new file mode 100644
index 0000000000000000000000000000000000000000..1ae54d3e1cb80fdc70fe09b6e6344cdfba116238
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_focus_whip.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_genocide.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_genocide.png
new file mode 100644
index 0000000000000000000000000000000000000000..3f8ee4a3bc28c070b2c92b7b9837cc27674a0cbe
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_genocide.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_gravitational_staff.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_gravitational_staff.png
new file mode 100644
index 0000000000000000000000000000000000000000..66b4e31eac1025098eea1e593201b921f70b7b21
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_gravitational_staff.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_great_caller.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_great_caller.png
new file mode 100644
index 0000000000000000000000000000000000000000..b37b72e86ee28a578d3ee7fc1bd4114fb0e11523
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_great_caller.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_guidance.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_guidance.png
new file mode 100644
index 0000000000000000000000000000000000000000..a0936efb09e3b21b84ef43873cb3b01347ca9d72
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_guidance.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_hareskin_sling.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_hareskin_sling.png
new file mode 100644
index 0000000000000000000000000000000000000000..d4c30cf33fc4ca48278eeddad894d10e1ffb4b5e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_hareskin_sling.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_hydras_bite.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_hydras_bite.png
new file mode 100644
index 0000000000000000000000000000000000000000..cc0f7d63acc306e835cb56dfa284af05f712d3bb
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_hydras_bite.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_latafayn.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_latafayn.png
new file mode 100644
index 0000000000000000000000000000000000000000..d5da913227a940641b4ce6ede3f227fe590a94fc
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_latafayn.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_merkuls_second_eye.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_merkuls_second_eye.png
new file mode 100644
index 0000000000000000000000000000000000000000..c2e95deb71e9ac6ac39d7432491415d827db1f19
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_merkuls_second_eye.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_nexus_of_the_way.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_nexus_of_the_way.png
new file mode 100644
index 0000000000000000000000000000000000000000..69bc23e4b2a5599690993b4bca6115f6f65d1f8a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_nexus_of_the_way.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_nithans_force.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_nithans_force.png
new file mode 100644
index 0000000000000000000000000000000000000000..d969969deff07299c2d41c11ba5f50bd4263d21a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_nithans_force.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_obliterator.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_obliterator.png
new file mode 100644
index 0000000000000000000000000000000000000000..a1f39eb83fc6c879448594b71bb172cfc214d3da
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_obliterator.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_oozing_heart.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_oozing_heart.png
new file mode 100644
index 0000000000000000000000000000000000000000..f4aae8d42ba7411f0e2c5f0f6674d6b9e3f7ba2f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_oozing_heart.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_psionic_fury.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_psionic_fury.png
new file mode 100644
index 0000000000000000000000000000000000000000..f9e0cec2bc427c0db3909ade07515cffa0d25890
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_psionic_fury.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_rod_of_sarrilon.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_rod_of_sarrilon.png
new file mode 100644
index 0000000000000000000000000000000000000000..59ccdd3b3d0ad49273eafb09bdc86ca0a017d9a9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_rod_of_sarrilon.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_sceptre_of_the_archlich.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_sceptre_of_the_archlich.png
new file mode 100644
index 0000000000000000000000000000000000000000..6285cd0d6940648673b8ba53bd24355597532e77
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_sceptre_of_the_archlich.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_serpents_glare.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_serpents_glare.png
new file mode 100644
index 0000000000000000000000000000000000000000..a9edd73b9b7a429463a95edc5fce1664c516a0ec
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_serpents_glare.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_shield_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_shield_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..1431e816628625dfa3ed80a5d88afb84266ba70e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_shield_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_skeletal_claw.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_skeletal_claw.png
new file mode 100644
index 0000000000000000000000000000000000000000..2b4b1f95b4fdf46ef0c94e47ccd1e6dc9c7bcab0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_skeletal_claw.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_sling_eldoral_last_resort.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_sling_eldoral_last_resort.png
new file mode 100644
index 0000000000000000000000000000000000000000..1631ce37f55160e3458fb50c33d813c32b31eea4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_sling_eldoral_last_resort.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_spectral_blade.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_spectral_blade.png
new file mode 100644
index 0000000000000000000000000000000000000000..3b3ea00a0eae5111b13d1b2e6e8e53c8e0a27a7b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_spectral_blade.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_spellcrusher.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_spellcrusher.png
new file mode 100644
index 0000000000000000000000000000000000000000..ce5f955fc6111c44c6187b788059b410e686f020
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_spellcrusher.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_staff_bolbums_big_knocker.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_staff_bolbums_big_knocker.png
new file mode 100644
index 0000000000000000000000000000000000000000..0fb33dda77aae99f6e8816f149293cd01c90fde8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_staff_bolbums_big_knocker.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_staff_broken_bottom_telos.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_staff_broken_bottom_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..7daa4c56cce3fc0a5782bcfdf903174f2b8c43bf
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_staff_broken_bottom_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_staff_broken_top_telos.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_staff_broken_top_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..0071d777f2955423ddc1692dbc4e347085177096
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_staff_broken_top_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_staff_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_staff_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..e3df412d395ec9ed58f73f55154b846ad0c4c502
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_staff_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_staff_kors_fall.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_staff_kors_fall.png
new file mode 100644
index 0000000000000000000000000000000000000000..a6b4b17a21afffd6defd2ddea5d2cc26b560f5f8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_staff_kors_fall.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_staff_lost_staff_archmage_tarelion.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_staff_lost_staff_archmage_tarelion.png
new file mode 100644
index 0000000000000000000000000000000000000000..d24cda0bb745a53c3dab89c1abf6131e0e670195
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_staff_lost_staff_archmage_tarelion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_staff_of_absorbtion.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_staff_of_absorbtion.png
new file mode 100644
index 0000000000000000000000000000000000000000..5fd4ee3949f7a8ffb02bd8dc9a2a345886194b0f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_staff_of_absorbtion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_staff_of_arcane_supremacy.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_staff_of_arcane_supremacy.png
new file mode 100644
index 0000000000000000000000000000000000000000..9cfda5c025ed58771d145c1d4c5c496d21e970db
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_staff_of_arcane_supremacy.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_staff_of_destruction.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_staff_of_destruction.png
new file mode 100644
index 0000000000000000000000000000000000000000..3a6dcb752633f764344705deea52d0a43aa50c81
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_staff_of_destruction.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_staff_penitence.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_staff_penitence.png
new file mode 100644
index 0000000000000000000000000000000000000000..75ada0412c3154189a6da2c080f0814f244ac313
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_staff_penitence.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_staff_voice_of_telos.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_staff_voice_of_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..d9607972caf6fe7c6469dbfee2f5df1ce4b9881a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_staff_voice_of_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_storm_fury.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_storm_fury.png
new file mode 100644
index 0000000000000000000000000000000000000000..c68be4250f06b2b0f6820d033f9b90837a7b8bd4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_storm_fury.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_stormlash.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_stormlash.png
new file mode 100644
index 0000000000000000000000000000000000000000..6aed2a46a46c27ec272eaee5943e52376e475a16
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_stormlash.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_surefire.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_surefire.png
new file mode 100644
index 0000000000000000000000000000000000000000..1f22eb24e296d2c1141975344bce23f0a550095c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_surefire.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_telos_spire_of_power.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_telos_spire_of_power.png
new file mode 100644
index 0000000000000000000000000000000000000000..a99bd3428c874d5575fd2f5df7c0da1450223719
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_telos_spire_of_power.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_thaloren_tree_longbow.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_thaloren_tree_longbow.png
new file mode 100644
index 0000000000000000000000000000000000000000..d8a6b5d2f39c7ecadcd61f35b6e6c8d14080c686
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_thaloren_tree_longbow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_trident_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_trident_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..0aae0bcc51497fc69f4f00efbe7325a47f37508e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_trident_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_umbral_razor.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_umbral_razor.png
new file mode 100644
index 0000000000000000000000000000000000000000..cd3e43df443bfc3ebfaa5020e89c61ac9ec1a3a8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_umbral_razor.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_unstoppable_mauler.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_unstoppable_mauler.png
new file mode 100644
index 0000000000000000000000000000000000000000..b1c75d2aedc22c0f8e88a562704315cc4cb1f430
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_unstoppable_mauler.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_voratun_hammer_of_the_deep_bellow.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_voratun_hammer_of_the_deep_bellow.png
new file mode 100644
index 0000000000000000000000000000000000000000..94ca7ca9d3b0c6627c2086efd463dbf72f41a1c3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_voratun_hammer_of_the_deep_bellow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_warmaster_gnargs_murderblade.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_warmaster_gnargs_murderblade.png
new file mode 100644
index 0000000000000000000000000000000000000000..1f926fdc42268d160bd71b8383f2c38d5a920c68
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_warmaster_gnargs_murderblade.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_whip_of_urh_rok.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_whip_of_urh_rok.png
new file mode 100644
index 0000000000000000000000000000000000000000..22c51de43307a80d8b953cfabf1f8592015eb2c1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_whip_of_urh_rok.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_whip_scorpions_tail.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_whip_scorpions_tail.png
new file mode 100644
index 0000000000000000000000000000000000000000..7e9121abadaf750148e39321e2a225d558e62e6a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_whip_scorpions_tail.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_writhing_essence_of_nightmares.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_writhing_essence_of_nightmares.png
new file mode 100644
index 0000000000000000000000000000000000000000..4efa12d8d33a5c537bef4322eff275ac4bb2add5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/right_writhing_essence_of_nightmares.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/robe_black_robe.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/robe_black_robe.png
new file mode 100644
index 0000000000000000000000000000000000000000..0fe1cc14618ea7edc072eea4ed3ae3078e6910e3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/robe_black_robe.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/robe_firewalker.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/robe_firewalker.png
new file mode 100644
index 0000000000000000000000000000000000000000..3c9a257753d24e4392844ab67eefea196df1b991
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/robe_firewalker.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/robe_of_force.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/robe_of_force.png
new file mode 100644
index 0000000000000000000000000000000000000000..3fdcf073fd9e88961c69fe668a1906a2a64715de
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/robe_of_force.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/robe_spider_silk_robe_spydre.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/robe_spider_silk_robe_spydre.png
new file mode 100644
index 0000000000000000000000000000000000000000..e6083d5e8e86393bc3a08d3ad3d59effe2978b23
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/robe_spider_silk_robe_spydre.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/robe_temporal_augmentation_robe.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/robe_temporal_augmentation_robe.png
new file mode 100644
index 0000000000000000000000000000000000000000..cf4b9bed442ae86a065750cc3ce5f65181f7d375
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/robe_temporal_augmentation_robe.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/robe_vestments_of_the_conclave.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/robe_vestments_of_the_conclave.png
new file mode 100644
index 0000000000000000000000000000000000000000..8a3d62170f1915b553323190fc30376681aaee13
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/robe_vestments_of_the_conclave.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/robes_of_deflection.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/robes_of_deflection.png
new file mode 100644
index 0000000000000000000000000000000000000000..8a3b5c6654de7aeeab08748e9e1c7e63e4a6bd33
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/robes_of_deflection.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/scale_mail_of_kroltar.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/scale_mail_of_kroltar.png
new file mode 100644
index 0000000000000000000000000000000000000000..c34a1811a1816ac01dcf2ce3aa69ab49b347ca9a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/scale_mail_of_kroltar.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/scorched_boots.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/scorched_boots.png
new file mode 100644
index 0000000000000000000000000000000000000000..2f24be800be387479b30b1919c4416dce21a2f48
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/scorched_boots.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/scorpion_gauntlets.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/scorpion_gauntlets.png
new file mode 100644
index 0000000000000000000000000000000000000000..439006ad6bce3c0e7e8783a5bf0da9fccba693cf
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/scorpion_gauntlets.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/serpentine_cloak_behind.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/serpentine_cloak_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..21be20281e326d6964bf8f9768f56adaee4eafcb
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/serpentine_cloak_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/serpentine_cloak_hood.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/serpentine_cloak_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..f1c92495222f694ba24371348b24bc137ee8e882
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/serpentine_cloak_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/serpentine_cloak_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/serpentine_cloak_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..b96ebec571a6781bf69b83e8a19c6c5057824ffb
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/serpentine_cloak_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/shifting_boots.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/shifting_boots.png
new file mode 100644
index 0000000000000000000000000000000000000000..cc243f2c60866c06ef65d7ba9c6a87cb3fde5f0e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/shifting_boots.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/silk_current.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/silk_current.png
new file mode 100644
index 0000000000000000000000000000000000000000..99db69f7e3dc945db9e6db6533097d8351c9f748
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/silk_current.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/sludgegrip.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/sludgegrip.png
new file mode 100644
index 0000000000000000000000000000000000000000..a97d6aec652fc04fb20dabebaeacb9dc53fc3abe
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/sludgegrip.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/snow_giant_arm_wraps.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/snow_giant_arm_wraps.png
new file mode 100644
index 0000000000000000000000000000000000000000..ea66c190f0018dd43d4b3ef2f9c5102468fb93c1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/snow_giant_arm_wraps.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/spellhunt_remnants.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/spellhunt_remnants.png
new file mode 100644
index 0000000000000000000000000000000000000000..13848e4f2d101a3c8680711681d7fc8ebc0de4d0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/spellhunt_remnants.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/star_shot.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/star_shot.png
new file mode 100644
index 0000000000000000000000000000000000000000..49008e4b57bcf87e5a05ef560598c399edfb8635
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/star_shot.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/storm_bringers_gauntlets.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/storm_bringers_gauntlets.png
new file mode 100644
index 0000000000000000000000000000000000000000..65edd4d1a80451befca624e7969e8ab87b886194
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/storm_bringers_gauntlets.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/terrasca.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/terrasca.png
new file mode 100644
index 0000000000000000000000000000000000000000..f20c8ed2de06453b4d7ca7817501c2b499ea66ab
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/terrasca.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/the_calm.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/the_calm.png
new file mode 100644
index 0000000000000000000000000000000000000000..01f47a9c52cebf32f297ef8e9526dbc78a986a07
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/the_calm.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/the_inner_eye.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/the_inner_eye.png
new file mode 100644
index 0000000000000000000000000000000000000000..47d67260dfe83a70a356eca13f9aaa2660826558
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/the_inner_eye.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/the_titans_quiver.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/the_titans_quiver.png
new file mode 100644
index 0000000000000000000000000000000000000000..196940f12f99ed45aea8e2f26e0c629c4e166804
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/the_titans_quiver.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/the_untouchable.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/the_untouchable.png
new file mode 100644
index 0000000000000000000000000000000000000000..905d89f28de61de41dfa3740ce73b2699802daf6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/the_untouchable.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/the_warped_boots.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/the_warped_boots.png
new file mode 100644
index 0000000000000000000000000000000000000000..7bc9d46a086fe962944bbd964273c7e74f597400
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/the_warped_boots.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/unbreakable_greaves.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/unbreakable_greaves.png
new file mode 100644
index 0000000000000000000000000000000000000000..585179b84555bbacef341127d83bb739556a8629
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/unbreakable_greaves.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/ureslaks_molted_scales_behind.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/ureslaks_molted_scales_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..0ee6813157ef63a0c20e53fa87798151e3cc5283
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/ureslaks_molted_scales_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/ureslaks_molted_scales_hood.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/ureslaks_molted_scales_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..38169f5ed34309b416408eb587fdc5234c3c09ea
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/ureslaks_molted_scales_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/ureslaks_molted_scales_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/ureslaks_molted_scales_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..bea722ec7c70d60d41fbefa09f6aef0824f23cae
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/ureslaks_molted_scales_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/void_quiver.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/void_quiver.png
new file mode 100644
index 0000000000000000000000000000000000000000..0c9d86fff8c4115709eb1fc819a8b08397b10e59
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/void_quiver.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/wanderers_rest.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/wanderers_rest.png
new file mode 100644
index 0000000000000000000000000000000000000000..b115e812b0b1f60fc54f459a477f35c35a676915
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/wanderers_rest.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/wind_worn_shot.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/wind_worn_shot.png
new file mode 100644
index 0000000000000000000000000000000000000000..3ff1f5ec0569e1e622326cff7813369543fa9b94
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/wind_worn_shot.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/wizard_hat_of_arcane_understanding.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/wizard_hat_of_arcane_understanding.png
new file mode 100644
index 0000000000000000000000000000000000000000..d532ed5836dfbf4ee4fa00e0a7e9a93abaae2ba6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/wizard_hat_of_arcane_understanding.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/wooden_cuirass.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/wooden_cuirass.png
new file mode 100644
index 0000000000000000000000000000000000000000..0d3525dd46c3d996736fe579f737152ce3ddf631
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/wooden_cuirass.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/wrap_of_stone_behind.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/wrap_of_stone_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..688192ea5ebd36d95af11464bd5b784f5898468a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/wrap_of_stone_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/wrap_of_stone_hood.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/wrap_of_stone_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..ca963e45c104effc3992518b3febc75005a6c3b5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/wrap_of_stone_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/wrap_of_stone_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/wrap_of_stone_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..d70bb2255168a40c6b40d71c004128e6f82ad586
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/wrap_of_stone_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/wyrmbreath.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/wyrmbreath.png
new file mode 100644
index 0000000000000000000000000000000000000000..95eea13997ff0b3a2798479d3acda8a97112aada
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/wyrmbreath.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/yaldan_baoth.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/yaldan_baoth.png
new file mode 100644
index 0000000000000000000000000000000000000000..321309dc5ee274683148ab542d7c8e3f8e6b33ca
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/yaldan_baoth.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/yeek_fur_robe.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/yeek_fur_robe.png
new file mode 100644
index 0000000000000000000000000000000000000000..cf3bafc068c47d3a5d96a32bc1cc13df6d62ee79
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/special/yeek_fur_robe.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/upper_body_25.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/upper_body_25.png
new file mode 100644
index 0000000000000000000000000000000000000000..433890f00096f5c7ce8466aec9834e4bc3be59b8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/upper_body_25.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/upper_body_29.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/upper_body_29.png
new file mode 100644
index 0000000000000000000000000000000000000000..2f2649ca8246c7b652ac042bbfadf8333b2a1ea0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/upper_body_29.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/upper_body_30.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/upper_body_30.png
new file mode 100644
index 0000000000000000000000000000000000000000..8db40265d312a10b2d1e1d54417d242daff2d576
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/upper_body_30.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/upper_body_31.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/upper_body_31.png
new file mode 100644
index 0000000000000000000000000000000000000000..ea2ed1c2c0fba2eae9c1944dc28980df782e642d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/upper_body_31.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/upper_body_32.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/upper_body_32.png
new file mode 100644
index 0000000000000000000000000000000000000000..14c7e9e986d8000400dd1adacdf1a899c948f6d3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/upper_body_32.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/upper_body_33.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/upper_body_33.png
new file mode 100644
index 0000000000000000000000000000000000000000..466d924b3ba2c89fe6774603b19f271e234abd57
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/upper_body_33.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/upper_body_34.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/upper_body_34.png
new file mode 100644
index 0000000000000000000000000000000000000000..4950389c2a81735389efa35a894757b8cb9575d8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/upper_body_34.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/upper_body_35.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/upper_body_35.png
new file mode 100644
index 0000000000000000000000000000000000000000..af7a333f96462eaaad69571b100c901a7048688b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/upper_body_35.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/upper_body_36.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/upper_body_36.png
new file mode 100644
index 0000000000000000000000000000000000000000..21bf1c2127e88020ce6313eae88134a825d1e387
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/upper_body_36.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/upper_body_37.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/upper_body_37.png
new file mode 100644
index 0000000000000000000000000000000000000000..3660406506c5dffa5a1dbd5b6e477e72b156d97c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/upper_body_37.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_female/upper_body_38.png b/game/modules/tome/data/gfx/shockbolt/player/orc_female/upper_body_38.png
new file mode 100644
index 0000000000000000000000000000000000000000..b2ff2d6ff83e96763bd39549ff9babfd31439926
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_female/upper_body_38.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/cloak_behind_07.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/cloak_behind_07.png
new file mode 100644
index 0000000000000000000000000000000000000000..2019a2a19eee5998b804229b360b7d8cb13bc1f1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/cloak_behind_07.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/cloak_behind_08.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/cloak_behind_08.png
new file mode 100644
index 0000000000000000000000000000000000000000..6fa023c027c498df137b617e80ae3ada8f851e0a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/cloak_behind_08.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/cloak_behind_09.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/cloak_behind_09.png
new file mode 100644
index 0000000000000000000000000000000000000000..f00fab9b27d84b867b09a1d9dcdc3ace32275e2c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/cloak_behind_09.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/cloak_hood_07.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/cloak_hood_07.png
new file mode 100644
index 0000000000000000000000000000000000000000..269adf6abb1b776cd253e852ebefe130a549a798
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/cloak_hood_07.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/cloak_hood_08.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/cloak_hood_08.png
new file mode 100644
index 0000000000000000000000000000000000000000..2ddb5b28daa6dc5b75b5dc17873e0fb06be9ace2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/cloak_hood_08.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/cloak_hood_09.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/cloak_hood_09.png
new file mode 100644
index 0000000000000000000000000000000000000000..4e86f4bbefe2199f9fcfd7151230adca7d08d208
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/cloak_hood_09.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/cloak_shoulder_07.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/cloak_shoulder_07.png
new file mode 100644
index 0000000000000000000000000000000000000000..ae0c106a6fdd8cf8330f0b87433ae37093452f5a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/cloak_shoulder_07.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/cloak_shoulder_08.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/cloak_shoulder_08.png
new file mode 100644
index 0000000000000000000000000000000000000000..13d0fea37ca89f2868aa655c21c48fe3f704df38
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/cloak_shoulder_08.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/cloak_shoulder_09.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/cloak_shoulder_09.png
new file mode 100644
index 0000000000000000000000000000000000000000..853fbeadf350fcd2e212c74c82c782db52a90630
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/cloak_shoulder_09.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/feet_10.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/feet_10.png
new file mode 100644
index 0000000000000000000000000000000000000000..e3f96e88c761ef4b8fa9da028828c35b96c91e89
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/feet_10.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/feet_11.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/feet_11.png
new file mode 100644
index 0000000000000000000000000000000000000000..1cadb2b15e4da54aed5b4dcec253e66a9b8c50ef
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/feet_11.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/gembag_01.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/gembag_01.png
new file mode 100644
index 0000000000000000000000000000000000000000..b35ee60d15efa4e792138e31ac716bfae4bb6fa0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/gembag_01.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/gembag_02.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/gembag_02.png
new file mode 100644
index 0000000000000000000000000000000000000000..82ebbb94a49333a77a66e6f7a4e6d2a0feb21653
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/gembag_02.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/gembag_03.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/gembag_03.png
new file mode 100644
index 0000000000000000000000000000000000000000..524470c8cdb44689ca138692edebbc427cf3d14c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/gembag_03.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/gembag_04.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/gembag_04.png
new file mode 100644
index 0000000000000000000000000000000000000000..1a92bfe4b831b4a859d345b73ebc92ab617e6fea
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/gembag_04.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/gembag_05.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/gembag_05.png
new file mode 100644
index 0000000000000000000000000000000000000000..4144fa0fc8ed5dfc44fad1e9aadd78cf95f9d3a1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/gembag_05.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/hands_08.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/hands_08.png
new file mode 100644
index 0000000000000000000000000000000000000000..149bc40feb8e4ee9ccfc9dff32efe3e7e12efc31
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/hands_08.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/hands_09.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/hands_09.png
new file mode 100644
index 0000000000000000000000000000000000000000..4a14a19d03cb2fd68c8b757a22678405f54c6223
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/hands_09.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/head_19.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/head_19.png
new file mode 100644
index 0000000000000000000000000000000000000000..8f768c30d948dfe5b0ea4d54743c2cc92f813d61
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/head_19.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/head_20.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/head_20.png
new file mode 100644
index 0000000000000000000000000000000000000000..4e7f555a3ecc352e3e2931e931a0d80bfea91dcc
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/head_20.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/head_21.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/head_21.png
new file mode 100644
index 0000000000000000000000000000000000000000..496ac7bf6cfc95977da4f6b6b4961096fc5f2ef6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/head_21.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/head_22.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/head_22.png
new file mode 100644
index 0000000000000000000000000000000000000000..29415c9e6422185175aba5f1b85bc2a5c2427f6c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/head_22.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/head_23.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/head_23.png
new file mode 100644
index 0000000000000000000000000000000000000000..de82dc593ccf39c0558280cd9a132128ce25621c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/head_23.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/lower_body_14.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/lower_body_14.png
new file mode 100644
index 0000000000000000000000000000000000000000..c70156403d8bc601d19726d600904588b3905eea
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/lower_body_14.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/lower_body_15.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/lower_body_15.png
new file mode 100644
index 0000000000000000000000000000000000000000..b0a60b6da401bcac9d96ef3955d179f5c1cc881a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/lower_body_15.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/lower_body_16.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/lower_body_16.png
new file mode 100644
index 0000000000000000000000000000000000000000..8a4aff7ed6eacfddf776106b38d64844954ae34f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/lower_body_16.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/lower_body_17.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/lower_body_17.png
new file mode 100644
index 0000000000000000000000000000000000000000..8a5763d8a010bfefa26d3141f598ac3a96e3d1a6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/lower_body_17.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/lower_body_18.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/lower_body_18.png
new file mode 100644
index 0000000000000000000000000000000000000000..5278afaec5557176afefc76b45e4bfd54db64e00
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/lower_body_18.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/lower_body_19.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/lower_body_19.png
new file mode 100644
index 0000000000000000000000000000000000000000..4ef659289865ead985f0591a9fc70c8fd807d1f0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/lower_body_19.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/quiver_01.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/quiver_01.png
new file mode 100644
index 0000000000000000000000000000000000000000..01c29fbae19c1363a7c1c59c04ab93a0910f2190
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/quiver_01.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/quiver_02.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/quiver_02.png
new file mode 100644
index 0000000000000000000000000000000000000000..8c0e9db6cbd6d6ee0a49d05c2a7a397ffc62c2f5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/quiver_02.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/quiver_03.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/quiver_03.png
new file mode 100644
index 0000000000000000000000000000000000000000..94678335c4c0e4316c89ca6007ececf9f1ae5f8a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/quiver_03.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/quiver_04.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/quiver_04.png
new file mode 100644
index 0000000000000000000000000000000000000000..bb6cd01eedf35f75ea27b8ee664898a5616f7a65
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/quiver_04.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/quiver_05.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/quiver_05.png
new file mode 100644
index 0000000000000000000000000000000000000000..bd76178a8ccb31b4eca2d011f3d48d12531bcb6c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/quiver_05.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/shotbag_01.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/shotbag_01.png
new file mode 100644
index 0000000000000000000000000000000000000000..768a2550d6f5d126d3b00003a5a02de02b03b5ec
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/shotbag_01.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/shotbag_02.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/shotbag_02.png
new file mode 100644
index 0000000000000000000000000000000000000000..9a93dbec24a1925f3137dba491605cd0e679bcbf
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/shotbag_02.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/shotbag_03.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/shotbag_03.png
new file mode 100644
index 0000000000000000000000000000000000000000..0090473b73101fdf598c6ce0eb7f4c7eaee9fe2a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/shotbag_03.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/shotbag_04.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/shotbag_04.png
new file mode 100644
index 0000000000000000000000000000000000000000..cabb3a7e447b1959698abbfe09f6e11c0ecbfde0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/shotbag_04.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/shotbag_05.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/shotbag_05.png
new file mode 100644
index 0000000000000000000000000000000000000000..f0d91553f63d656398e372da3baaa826e04c6cb6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/shotbag_05.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/aether_walk.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/aether_walk.png
new file mode 100644
index 0000000000000000000000000000000000000000..02c962bcc3543c4847d8dbc0f786999004ed9533
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/aether_walk.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/arkuls_seige_arrows.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/arkuls_seige_arrows.png
new file mode 100644
index 0000000000000000000000000000000000000000..85013d0c598b71579da6f45810db5f1dd1339c01
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/arkuls_seige_arrows.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/armor_chromatic_harness.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/armor_chromatic_harness.png
new file mode 100644
index 0000000000000000000000000000000000000000..9606df1161a6335bd59700923c5f2f386bc121e7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/armor_chromatic_harness.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/armor_cuirass_of_the_thronesmen.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/armor_cuirass_of_the_thronesmen.png
new file mode 100644
index 0000000000000000000000000000000000000000..28ab71f6db7121a2b101ee917a625716b47a59db
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/armor_cuirass_of_the_thronesmen.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/armor_natures_blessing.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/armor_natures_blessing.png
new file mode 100644
index 0000000000000000000000000000000000000000..802ed94aee87eb424daefe45d23e65598fb8b802
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/armor_natures_blessing.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/armor_plate_borfasts_cage.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/armor_plate_borfasts_cage.png
new file mode 100644
index 0000000000000000000000000000000000000000..221c1ecb23693c3bff147d2b7bc9c8df505531eb
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/armor_plate_borfasts_cage.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/armor_rogue_plight.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/armor_rogue_plight.png
new file mode 100644
index 0000000000000000000000000000000000000000..2c523970d217c9d10f5b5cdeef58ff3a42c34764
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/armor_rogue_plight.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/behemoth_skin.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/behemoth_skin.png
new file mode 100644
index 0000000000000000000000000000000000000000..0fcbc920df552e99042ce0e8a6e1cb69e21e43bd
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/behemoth_skin.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/black_cloak_behind.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/black_cloak_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..1d47cb45d9b4674a6886c1a89feddf49eb344618
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/black_cloak_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/black_cloak_hood.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/black_cloak_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..f0d352528e4b71702aac35955953bb2e0d2e9c02
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/black_cloak_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/black_cloak_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/black_cloak_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..a152fbfb54cb2457a3fd6db3947f74d13c8eeb38
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/black_cloak_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/boots_edens_guile.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/boots_edens_guile.png
new file mode 100644
index 0000000000000000000000000000000000000000..ff6727d9109087716f3c5ef5b8ba9d1e807ce80a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/boots_edens_guile.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/boots_of_the_hunter.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/boots_of_the_hunter.png
new file mode 100644
index 0000000000000000000000000000000000000000..664ee04451c3ab7154cbba2652d998852fe9457f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/boots_of_the_hunter.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/breath_of_eyal.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/breath_of_eyal.png
new file mode 100644
index 0000000000000000000000000000000000000000..458fb3c9233de1d8ad6f1cd51b2dbb325ec7279f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/breath_of_eyal.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/cinderfeet.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/cinderfeet.png
new file mode 100644
index 0000000000000000000000000000000000000000..55ff31b25ae2e2a77e9da2079cd682ed1f6311b4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/cinderfeet.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/cloak_threads_of_fate_behind.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/cloak_threads_of_fate_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..29eb428e60dcef403037d94a6806b847691ca4eb
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/cloak_threads_of_fate_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/cloak_threads_of_fate_hood.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/cloak_threads_of_fate_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..80a44e6365d12b9a0903dda5fe609af997f4e0da
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/cloak_threads_of_fate_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/cloak_threads_of_fate_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/cloak_threads_of_fate_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..9bf9a81db632b233da6cb3993b116bc5c8836367
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/cloak_threads_of_fate_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/cloak_winds_whisper_behind.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/cloak_winds_whisper_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..98273c91f3bac80f3dc5f9afcc385cf109b2933e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/cloak_winds_whisper_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/cloak_winds_whisper_hood.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/cloak_winds_whisper_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..382d5aeaec1806aeb804fbf8406da7dbd2bd1ee1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/cloak_winds_whisper_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/cloak_winds_whisper_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/cloak_winds_whisper_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..f1f1d6ae2ab463fbd0fab98eb0bec6e9abe649f1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/cloak_winds_whisper_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/cloth_armour_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/cloth_armour_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..3093bc47475a40fd8c691772ccf90a1ae071a460
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/cloth_armour_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/cloth_of_dreams_behind.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/cloth_of_dreams_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..c7ba25905853bad47887e911d1492a04b318ba64
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/cloth_of_dreams_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/cloth_of_dreams_hood.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/cloth_of_dreams_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..2cce77ba80be5a9276e7c6db15f460d602f19b37
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/cloth_of_dreams_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/cloth_of_dreams_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/cloth_of_dreams_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..5258d15cf6419c052f4da49fab1d840fe3155ffa
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/cloth_of_dreams_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/corrupted_gaze.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/corrupted_gaze.png
new file mode 100644
index 0000000000000000000000000000000000000000..6d2ab3cdff6369db50298ed7d11f882358fa4b63
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/corrupted_gaze.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/crimson_robe.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/crimson_robe.png
new file mode 100644
index 0000000000000000000000000000000000000000..e89aa69108c2d2b14aa14e7b85447212e22a70be
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/crimson_robe.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/crown_of_burning_pain.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/crown_of_burning_pain.png
new file mode 100644
index 0000000000000000000000000000000000000000..66ef317e6b1a26b42e54da6c837dff948591a15b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/crown_of_burning_pain.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/crown_of_command.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/crown_of_command.png
new file mode 100644
index 0000000000000000000000000000000000000000..41b77c30be8e06d9cc505cac9a582b8aa5c62840
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/crown_of_command.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/crown_of_eternal_night.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/crown_of_eternal_night.png
new file mode 100644
index 0000000000000000000000000000000000000000..8cdc30306064588d4ae2c9ef50202e2814cc460b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/crown_of_eternal_night.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/crown_of_the_elements.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/crown_of_the_elements.png
new file mode 100644
index 0000000000000000000000000000000000000000..a347604a280e60cb5ff664943c057f39ce53bbe5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/crown_of_the_elements.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/crystles_astral_bindings.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/crystles_astral_bindings.png
new file mode 100644
index 0000000000000000000000000000000000000000..56a29ae22a9a7a788b6220f74324ec833932c8b2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/crystles_astral_bindings.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/dakhtuns_gauntlets.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/dakhtuns_gauntlets.png
new file mode 100644
index 0000000000000000000000000000000000000000..65a61a633f1ee95d09f69e52d7656f2cde5b5377
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/dakhtuns_gauntlets.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/deaths_embrace.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/deaths_embrace.png
new file mode 100644
index 0000000000000000000000000000000000000000..431f8fa71ac4c24de54643c1811fb5b633e947b1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/deaths_embrace.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/decayed_visage.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/decayed_visage.png
new file mode 100644
index 0000000000000000000000000000000000000000..27a41193a814aa5457d2d385f8863d4647822dff
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/decayed_visage.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/destalas_scales_behind.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/destalas_scales_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..03aa3cf04473eb73891f6371422d8b6c99c61c12
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/destalas_scales_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/destalas_scales_whisper_hood.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/destalas_scales_whisper_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..3e5c043194488b8e67c1f57d22978a491bad4c82
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/destalas_scales_whisper_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/destalas_scales_whisper_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/destalas_scales_whisper_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..ff20a3123e1ea4a5f618daef0588a2373d51591b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/destalas_scales_whisper_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/diadem_alettas_diadem.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/diadem_alettas_diadem.png
new file mode 100644
index 0000000000000000000000000000000000000000..906298b763fb3a6822f9d463b58483d2933cad89
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/diadem_alettas_diadem.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/dragon_helm_of_kroltar.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/dragon_helm_of_kroltar.png
new file mode 100644
index 0000000000000000000000000000000000000000..f89889a090b53dfcd29522761fc76ac5ae31bd51
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/dragon_helm_of_kroltar.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/dragonskull_helmet.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/dragonskull_helmet.png
new file mode 100644
index 0000000000000000000000000000000000000000..b76e09160dbb56891c53f50e021e9c6feefed31e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/dragonskull_helmet.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/eel_skin_armor.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/eel_skin_armor.png
new file mode 100644
index 0000000000000000000000000000000000000000..7e15f439bc4286dd21c9bec638fd003d83c29414
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/eel_skin_armor.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/ethereal_embrace_behind.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/ethereal_embrace_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..e8480fcd12194a038108e5866a47ed1a4042bd93
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/ethereal_embrace_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/ethereal_embrace_hood.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/ethereal_embrace_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..cdf02a6717dacf6fdb58fc9bfb3ee15beebc2c10
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/ethereal_embrace_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/ethereal_embrace_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/ethereal_embrace_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..f680fd4b616a76528f4d051f3b6eff901fc23d93
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/ethereal_embrace_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/evermoss_robe.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/evermoss_robe.png
new file mode 100644
index 0000000000000000000000000000000000000000..850a8f8e1c938a4fa9a1475d2c12b023b75f320c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/evermoss_robe.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/eye_of_the_forest.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/eye_of_the_forest.png
new file mode 100644
index 0000000000000000000000000000000000000000..f67b24247b709c0cc5de1a6ad69459fc4635aef2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/eye_of_the_forest.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/fist_of_the_destroyer.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/fist_of_the_destroyer.png
new file mode 100644
index 0000000000000000000000000000000000000000..9a1705048595338c3581b7535e8d117f83daa3dd
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/fist_of_the_destroyer.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/frost_treads.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/frost_treads.png
new file mode 100644
index 0000000000000000000000000000000000000000..733b0309d1a1e7929b66f040427a3644d972a0b7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/frost_treads.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/frozen_shards.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/frozen_shards.png
new file mode 100644
index 0000000000000000000000000000000000000000..3ed198ccb46732e9b699ca0a3836e4f255d5878f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/frozen_shards.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/frozen_shroud_behind.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/frozen_shroud_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..9228a574c0f9bbc21cf50c0434de137cbd00bf19
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/frozen_shroud_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/frozen_shroud_hood.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/frozen_shroud_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..d59b66bb09c5d1afac25b2c545f82bec5698f53d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/frozen_shroud_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/frozen_shroud_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/frozen_shroud_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..d738522ad35815f703bb874524a229b2b5f9f509
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/frozen_shroud_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/gauntlets_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/gauntlets_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..3f23a0f682267f594737ad714999d91bd2b25f15
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/gauntlets_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/gloves_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/gloves_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..c91d93ef53c664411e653223e15392aa78c5b64a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/gloves_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/gloves_flamewrought.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/gloves_flamewrought.png
new file mode 100644
index 0000000000000000000000000000000000000000..cd5b14898e87f1ba15a9475e9d0e46a3e7947eb2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/gloves_flamewrought.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/gloves_of_the_firm_hand.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/gloves_of_the_firm_hand.png
new file mode 100644
index 0000000000000000000000000000000000000000..05ecc3d5ffb893d45909ab5b23a32389cbd03cb3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/gloves_of_the_firm_hand.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/grip_of_death.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/grip_of_death.png
index ed3bbfc8b7716b561790eb360447870a1f1790ae..b0b4d2ef740f4ca1e153f46d6a6ee0351d2fbb01 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/grip_of_death.png and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/grip_of_death.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/guise_of_the_hated_behind.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/guise_of_the_hated_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..72720e81ace3b4bdbaa142ce2372b6a270427262
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/guise_of_the_hated_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/guise_of_the_hated_hood.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/guise_of_the_hated_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..592050230a27b7f05847e92ceb6e280c32c02d50
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/guise_of_the_hated_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/guise_of_the_hated_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/guise_of_the_hated_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..b177b3247c5cbf6c7e80f8964dd886d95438fa57
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/guise_of_the_hated_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/hand_of_the_worldshaper.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/hand_of_the_worldshaper.png
new file mode 100644
index 0000000000000000000000000000000000000000..d3d0801b93b5cf409092992b5b55ed711bba44a0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/hand_of_the_worldshaper.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/harkor_zun_gauntlets.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/harkor_zun_gauntlets.png
new file mode 100644
index 0000000000000000000000000000000000000000..932add345cb5e6e91b9443e03cf4756ac798f915
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/harkor_zun_gauntlets.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/heavy_armour_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/heavy_armour_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..546047595ed350981553ab9bc5560bec55185bc6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/heavy_armour_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/helm_of_garkul.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/helm_of_garkul.png
new file mode 100644
index 0000000000000000000000000000000000000000..ba07ccbd0993ec401d71c68a2da32fb3791a1c6c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/helm_of_garkul.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/helm_of_the_dwarven_emperors.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/helm_of_the_dwarven_emperors.png
new file mode 100644
index 0000000000000000000000000000000000000000..3cd9b74d6579c58b3f14e893f772da68652a4e0a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/helm_of_the_dwarven_emperors.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/hornet_stingers.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/hornet_stingers.png
new file mode 100644
index 0000000000000000000000000000000000000000..99bd373455ce3772b78a5bed6805989c6b0cfa47
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/hornet_stingers.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/iron_mail_of_bloodletting.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/iron_mail_of_bloodletting.png
new file mode 100644
index 0000000000000000000000000000000000000000..8bb02d59ef5137e66f1d66779c6a70d1a3263bc0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/iron_mail_of_bloodletting.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_1Haxe_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_1Haxe_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..1caa1dafbcaadfd836eeced19e6f037fe5f4ceaf
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_1Haxe_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_1Hmace_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_1Hmace_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..3df5ebfeba673ec899ba002db0f2a568e7d7ba6c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_1Hmace_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_1Hsword_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_1Hsword_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..a422ad539563671738325084ad9c169ab9cbf4e6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_1Hsword_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_2Haxe_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_2Haxe_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..1c03bd95a89a051551b6ec81fb10d3992315c798
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_2Haxe_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_2Hmace_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_2Hmace_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..17a9353564af36bd47fe80e5b2ee18814862f71a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_2Hmace_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_2Hsword_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_2Hsword_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..1f05e987ba627c447031388fd5173ae2ed4491c8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_2Hsword_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_amethyst_of_sanctuary.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_amethyst_of_sanctuary.png
new file mode 100644
index 0000000000000000000000000000000000000000..fbe665a39b277ab421b5f838b5888c667835416a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_amethyst_of_sanctuary.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_awaken_staff_of_absorbtion.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_awaken_staff_of_absorbtion.png
new file mode 100644
index 0000000000000000000000000000000000000000..45d50a46d355f48196583b6515db7b3bdf861a8e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_awaken_staff_of_absorbtion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_blighted_maul.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_blighted_maul.png
new file mode 100644
index 0000000000000000000000000000000000000000..6d50a41155bb000fa9b73d610a88dbfd8ffa632d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_blighted_maul.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_bloomsoul.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_bloomsoul.png
new file mode 100644
index 0000000000000000000000000000000000000000..c0b14382184a8bf63ce016fbde9d94dd63e27c18
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_bloomsoul.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_borosks_hate.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_borosks_hate.png
new file mode 100644
index 0000000000000000000000000000000000000000..20155414767e7ef57a063c5cf9c40f9b0d762b56
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_borosks_hate.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_bow_corpsebow.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_bow_corpsebow.png
new file mode 100644
index 0000000000000000000000000000000000000000..c331451b29c768d2379dd82a915f9e241988ad27
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_bow_corpsebow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_bow_epochs_curve.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_bow_epochs_curve.png
new file mode 100644
index 0000000000000000000000000000000000000000..4daf639d94c1a9a8b975838980da4d43b82faeeb
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_bow_epochs_curve.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_champions_will.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_champions_will.png
new file mode 100644
index 0000000000000000000000000000000000000000..3ca4eaf69e32bb8008f765d1e0af0848b3fbc7d4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_champions_will.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_colaryem.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_colaryem.png
new file mode 100644
index 0000000000000000000000000000000000000000..b2a2c763f0bfefa8a00d7aafa55cd4b667aa7f00
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_colaryem.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_core_of_the_forge.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_core_of_the_forge.png
new file mode 100644
index 0000000000000000000000000000000000000000..c288be77342eff9d8708b2b9062975563ff51312
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_core_of_the_forge.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_corpus_2.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_corpus_2.png
new file mode 100644
index 0000000000000000000000000000000000000000..bb4e34e7fac236c61ebf0d5eb9d87308cb2f753a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_corpus_2.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_crystal_shard.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_crystal_shard.png
new file mode 100644
index 0000000000000000000000000000000000000000..e16bb2cd84283b7cb41a0b79208a6b4f60e94c3b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_crystal_shard.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_dagger_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_dagger_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..008b61072ac4e38e056ca0dca581ed6ae67b9930
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_dagger_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_dream_malleus.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_dream_malleus.png
new file mode 100644
index 0000000000000000000000000000000000000000..b92d535c243537064680466311747b09b24c2795
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_dream_malleus.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_eclipse.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_eclipse.png
new file mode 100644
index 0000000000000000000000000000000000000000..a0c4e76def56de820658bc92bfe679def77ce603
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_eclipse.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_eyals_will.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_eyals_will.png
new file mode 100644
index 0000000000000000000000000000000000000000..8ce81261192c8670831ef440d791e945bfc8baa3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_eyals_will.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_eye_of_the_wyrm.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_eye_of_the_wyrm.png
new file mode 100644
index 0000000000000000000000000000000000000000..b9572551472ef4dc5b81d56ed8583264bb6aa186
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_eye_of_the_wyrm.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_focus_whip.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_focus_whip.png
new file mode 100644
index 0000000000000000000000000000000000000000..fe365de76596f04cb388ad18be76d110586c061f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_focus_whip.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_genocide.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_genocide.png
new file mode 100644
index 0000000000000000000000000000000000000000..a07a83922a30af101b9dabdcb4a3a10a0915ec65
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_genocide.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_gravitational_staff.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_gravitational_staff.png
new file mode 100644
index 0000000000000000000000000000000000000000..218f02c49f12f0612ae44f7eb4482afe9f169cbe
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_gravitational_staff.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_great_caller.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_great_caller.png
new file mode 100644
index 0000000000000000000000000000000000000000..ad85d485e725e5b30ebcd3e1b3b015b0903fd6b6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_great_caller.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_guidance.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_guidance.png
new file mode 100644
index 0000000000000000000000000000000000000000..792aa6aa2e194851dc0777f37610dc56b918600e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_guidance.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_hareskin_sling.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_hareskin_sling.png
new file mode 100644
index 0000000000000000000000000000000000000000..df996fca77425fb95151f4a5e5e5c5a470924c45
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_hareskin_sling.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_hydras_bite.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_hydras_bite.png
new file mode 100644
index 0000000000000000000000000000000000000000..60618b96a78cf7441dee9615f1ec2bbcb1d4e0de
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_hydras_bite.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_latafayn.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_latafayn.png
new file mode 100644
index 0000000000000000000000000000000000000000..ebb4be278fecfe6534c546265f9abb2562b1d618
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_latafayn.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_merkuls_second_eye.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_merkuls_second_eye.png
new file mode 100644
index 0000000000000000000000000000000000000000..61d95b18914bbd930f2fd528a925b0bd80552e4a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_merkuls_second_eye.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_nexus_of_the_way.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_nexus_of_the_way.png
new file mode 100644
index 0000000000000000000000000000000000000000..9d53b16870c66bd298304beebd47f4729682a136
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_nexus_of_the_way.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_nithans_force.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_nithans_force.png
new file mode 100644
index 0000000000000000000000000000000000000000..2a85b41bbda39ac97f49a2f8f7c8208068a523b2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_nithans_force.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_obliterator.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_obliterator.png
new file mode 100644
index 0000000000000000000000000000000000000000..ba6494068fbb9496593aa51b74be7026e47ace4a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_obliterator.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_oozing_heart.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_oozing_heart.png
new file mode 100644
index 0000000000000000000000000000000000000000..02de10be7bed6029ec8a6806bdfb4821a0425e6e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_oozing_heart.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_psionic_fury.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_psionic_fury.png
new file mode 100644
index 0000000000000000000000000000000000000000..a9afab82f446a20e296f6441018f73643c751c0d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_psionic_fury.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_rod_of_sarrilon.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_rod_of_sarrilon.png
new file mode 100644
index 0000000000000000000000000000000000000000..c752247ca53a06eb40e61888457f7b7cfc5bf904
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_rod_of_sarrilon.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_sceptre_of_the_archlich.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_sceptre_of_the_archlich.png
new file mode 100644
index 0000000000000000000000000000000000000000..350c85ab6b192c843739e09784fd9888ddd5df92
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_sceptre_of_the_archlich.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_serpents_glare.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_serpents_glare.png
new file mode 100644
index 0000000000000000000000000000000000000000..fbe378fd4ed3f535be975296a25e00430016f0fc
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_serpents_glare.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_shield_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_shield_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..7bfa31446d81a4058a3acca4f2c41383ab38d3c7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_shield_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_skeletal_claw.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_skeletal_claw.png
new file mode 100644
index 0000000000000000000000000000000000000000..77b3ddd6ccbf05a1f866358eb7c13ef9439b797a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_skeletal_claw.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_sling_eldoral_last_resort.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_sling_eldoral_last_resort.png
new file mode 100644
index 0000000000000000000000000000000000000000..460117ad0884bef9e7cddc2d581fc721b3805d9e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_sling_eldoral_last_resort.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_spectral_blade.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_spectral_blade.png
new file mode 100644
index 0000000000000000000000000000000000000000..137902834925345d54e76aae14340e70ee4b3980
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_spectral_blade.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_spellcrusher.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_spellcrusher.png
new file mode 100644
index 0000000000000000000000000000000000000000..e285b70afb70f42f434edfea74b5c690092d0b94
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_spellcrusher.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_staff_bolbums_big_knocker.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_staff_bolbums_big_knocker.png
new file mode 100644
index 0000000000000000000000000000000000000000..74388dff06eb9dd25174bee14992326ef8fc2b58
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_staff_bolbums_big_knocker.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_staff_broken_bottom_telos.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_staff_broken_bottom_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..7e7b7a70ad4f5ac8a1468f8522ed8a62e6f7b50e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_staff_broken_bottom_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_staff_broken_top_telos.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_staff_broken_top_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..89acdae888e5cc0e9aa4d3803cc155743d72bebe
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_staff_broken_top_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_staff_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_staff_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..d809f95d2519fd5593540d9d84ab17c33867de58
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_staff_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_staff_kors_fall.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_staff_kors_fall.png
new file mode 100644
index 0000000000000000000000000000000000000000..ea631438640ccec7cbe6eeabb3bfc646d6b9643a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_staff_kors_fall.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_staff_lost_staff_archmage_tarelion.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_staff_lost_staff_archmage_tarelion.png
new file mode 100644
index 0000000000000000000000000000000000000000..fb5d92d6214c0e6a4eccf4f28f05353338d3447f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_staff_lost_staff_archmage_tarelion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_staff_of_absorbtion.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_staff_of_absorbtion.png
new file mode 100644
index 0000000000000000000000000000000000000000..d24f7aad46d48668d44672b6a60e1f5412e21baf
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_staff_of_absorbtion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_staff_of_arcane_supremacy.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_staff_of_arcane_supremacy.png
new file mode 100644
index 0000000000000000000000000000000000000000..1f26ebaf98c49e5aa134b35bc67a70ecbe538d6d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_staff_of_arcane_supremacy.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_staff_of_destruction.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_staff_of_destruction.png
new file mode 100644
index 0000000000000000000000000000000000000000..15f2cefab02c81fde025bd019248a7209ce3ea6c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_staff_of_destruction.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_staff_penitence.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_staff_penitence.png
new file mode 100644
index 0000000000000000000000000000000000000000..447e61d85178cda580837a0589e174976d9138d0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_staff_penitence.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_staff_voice_of_telos.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_staff_voice_of_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..c180cc7ad8e589c683c3752f5ccd9f646da61352
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_staff_voice_of_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_storm_fury.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_storm_fury.png
new file mode 100644
index 0000000000000000000000000000000000000000..fc1ee6660bef2a1e362f061215fb5933287401b5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_storm_fury.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_stormlash.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_stormlash.png
new file mode 100644
index 0000000000000000000000000000000000000000..fe164b98ec60cf177c04c2aeff1bb4dd2b1b3355
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_stormlash.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_surefire.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_surefire.png
new file mode 100644
index 0000000000000000000000000000000000000000..edecc884cb6d9142f81fe394927752658a68921d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_surefire.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_telos_spire_of_power.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_telos_spire_of_power.png
new file mode 100644
index 0000000000000000000000000000000000000000..11157696bed5aee0b4c1d9de460c5ce6f60779a0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_telos_spire_of_power.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_thaloren_tree_longbow.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_thaloren_tree_longbow.png
new file mode 100644
index 0000000000000000000000000000000000000000..e64c55ca64b801319405445d05bf99c88645b838
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_thaloren_tree_longbow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_trident_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_trident_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..c5083bf783dd6bf60679b74c0d7265f08f4c84c6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_trident_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_umbral_razor.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_umbral_razor.png
index c878f4517b500476fcc84f29c8f7b8fe0c997019..de0f1529bc37c983272996ba93ae9488595842a7 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_umbral_razor.png and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_umbral_razor.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_unstoppable_mauler.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_unstoppable_mauler.png
new file mode 100644
index 0000000000000000000000000000000000000000..bf96ee6187d56cecccd844009f69821dd52a28f6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_unstoppable_mauler.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_voratun_hammer_of_the_deep_bellow.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_voratun_hammer_of_the_deep_bellow.png
new file mode 100644
index 0000000000000000000000000000000000000000..1567fc262b65f3c18b0978b26917511991ba7972
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_voratun_hammer_of_the_deep_bellow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_warmaster_gnargs_murderblade.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_warmaster_gnargs_murderblade.png
new file mode 100644
index 0000000000000000000000000000000000000000..466ec6e9492aab8fe1b80bb709de2ed43f59b602
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_warmaster_gnargs_murderblade.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_whip_of_urh_rok.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_whip_of_urh_rok.png
new file mode 100644
index 0000000000000000000000000000000000000000..a9de23fb3857a9657c80adab1f06c4f360f66fd2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_whip_of_urh_rok.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_whip_scorpions_tail.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_whip_scorpions_tail.png
new file mode 100644
index 0000000000000000000000000000000000000000..63c3f3bc913fee27e8744046f524b17f64aca520
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_whip_scorpions_tail.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_writhing_essence_of_nightmares.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_writhing_essence_of_nightmares.png
new file mode 100644
index 0000000000000000000000000000000000000000..21092dc87b4555ad492bb50ae415d82811541cf8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/left_writhing_essence_of_nightmares.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/light_armour_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/light_armour_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..8b52c81e5a2cf90a36ccd5dbe0dceb61095e005f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/light_armour_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/malslek_the_accursed_hat.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/malslek_the_accursed_hat.png
new file mode 100644
index 0000000000000000000000000000000000000000..51d93825801a619a3463d5db297ebbccc1033a48
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/malslek_the_accursed_hat.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/masochism.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/masochism.png
new file mode 100644
index 0000000000000000000000000000000000000000..73fdec51223db36bd1ff3d6f4851dd312a015482
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/masochism.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/massive_armour_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/massive_armour_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..b5b83a3d5d8c9cc237391b5155068698e8cbca03
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/massive_armour_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/omniscience.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/omniscience.png
new file mode 100644
index 0000000000000000000000000000000000000000..1396f51b6f2180d5c9c96287b0abab35ced504f9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/omniscience.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/plate_armor_of_the_king.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/plate_armor_of_the_king.png
new file mode 100644
index 0000000000000000000000000000000000000000..ece5d93bde28fa8fef2e7cc1413073d70b2ff565
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/plate_armor_of_the_king.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/plate_of_the_blackened_mind.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/plate_of_the_blackened_mind.png
new file mode 100644
index 0000000000000000000000000000000000000000..24703d0eaef2a82343379dbb991faac07b6fbf7f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/plate_of_the_blackened_mind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/pouch_of_the_subconscious.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/pouch_of_the_subconscious.png
new file mode 100644
index 0000000000000000000000000000000000000000..932d2ef4562a363b1ea5172e29eca7b18f327dc6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/pouch_of_the_subconscious.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/quiver_of_domination.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/quiver_of_domination.png
new file mode 100644
index 0000000000000000000000000000000000000000..d8d8d79c2497733f8696765d7305e0ed5afbc2d7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/quiver_of_domination.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/quiver_of_the_sun.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/quiver_of_the_sun.png
new file mode 100644
index 0000000000000000000000000000000000000000..70bde51efdc3e15fa3c317b3d0d46a0e454e72fd
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/quiver_of_the_sun.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/radiance_behind.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/radiance_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..1d9f75d9fe06fd1986db3914ffd01a1b28fbc994
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/radiance_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/radiance_hood.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/radiance_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..8d64a9395da6f7ea1d132137eed153d91c883de8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/radiance_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/radiance_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/radiance_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..c5c9d0ad94b4d50417b1867fcad741b8a73ac93a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/radiance_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_1Haxe_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_1Haxe_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..54b404243ee1b90791ee30b475338b8122902be9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_1Haxe_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_1Hmace_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_1Hmace_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..bee04d6371ebcdac76d037db1d241a157976ed11
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_1Hmace_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_1Hsword_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_1Hsword_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..6b0a77bfea452473ef2129d8fad273b69b8477c8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_1Hsword_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_2Haxe_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_2Haxe_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..fd4cb90b8275ab6731c2381d2e4648b795f39413
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_2Haxe_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_2Hmace_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_2Hmace_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..7fc0692a051832b0ad5dba98ca299398450b6638
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_2Hmace_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_2Hsword_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_2Hsword_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..9cbc112ecb9e7efc8cb5045b88e52ca7a51d3aad
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_2Hsword_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_amethyst_of_sanctuary.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_amethyst_of_sanctuary.png
new file mode 100644
index 0000000000000000000000000000000000000000..16b503a32d3c144e83eb779f67937098cb7b46f6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_amethyst_of_sanctuary.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_awaken_staff_of_absorbtion.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_awaken_staff_of_absorbtion.png
new file mode 100644
index 0000000000000000000000000000000000000000..1d8039a27c87a482e0fa8363c48422d28b209e74
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_awaken_staff_of_absorbtion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_blighted_maul.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_blighted_maul.png
new file mode 100644
index 0000000000000000000000000000000000000000..54122f8543a381d03295ca9e53ad06ea71d493e3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_blighted_maul.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_bloomsoul.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_bloomsoul.png
new file mode 100644
index 0000000000000000000000000000000000000000..d2f3a10b5be661bab353f1c2426160eb09b7cfca
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_bloomsoul.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_borosks_hate.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_borosks_hate.png
new file mode 100644
index 0000000000000000000000000000000000000000..5c0fa2f28e47ffe2b785036029e180cd92e855b2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_borosks_hate.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_bow_corpsebow.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_bow_corpsebow.png
new file mode 100644
index 0000000000000000000000000000000000000000..7a1d1317be76cb74bb2670444a6f7392a13c80f9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_bow_corpsebow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_bow_epochs_curve.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_bow_epochs_curve.png
new file mode 100644
index 0000000000000000000000000000000000000000..78fbe195c6283a295c40de0654ac746f371b0bfe
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_bow_epochs_curve.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_champions_will.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_champions_will.png
new file mode 100644
index 0000000000000000000000000000000000000000..5045e5a0ce29a09a2cb9ab29f6fc55dfa8b1c76c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_champions_will.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_colaryem.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_colaryem.png
new file mode 100644
index 0000000000000000000000000000000000000000..d24296c0327fc90159acf3e688a8f433b220e6ce
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_colaryem.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_core_of_the_forge.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_core_of_the_forge.png
new file mode 100644
index 0000000000000000000000000000000000000000..c59e5ec4c9323a8b71812c36c4b0518fb98d78a8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_core_of_the_forge.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_corpus_2.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_corpus_2.png
new file mode 100644
index 0000000000000000000000000000000000000000..54b1422c7ce6846bb63b0c5812127852f47b579d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_corpus_2.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_crystal_shard.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_crystal_shard.png
new file mode 100644
index 0000000000000000000000000000000000000000..2c179e563789f08393c932ddfcada9deffd74717
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_crystal_shard.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_dagger_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_dagger_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..27e3f30a45cae414456b06d5e6d57dce95d268c7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_dagger_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_dream_malleus.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_dream_malleus.png
new file mode 100644
index 0000000000000000000000000000000000000000..5b73f7f96b92d0827ac7863e9ced36d521b8ac0c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_dream_malleus.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_eclipse.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_eclipse.png
new file mode 100644
index 0000000000000000000000000000000000000000..f6a8f426545e437b43317084fa2a808ffe8f5f4b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_eclipse.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_eyals_will.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_eyals_will.png
new file mode 100644
index 0000000000000000000000000000000000000000..9af93c68b571d990837d416130f29113e6bb6abf
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_eyals_will.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_eye_of_the_wyrm.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_eye_of_the_wyrm.png
new file mode 100644
index 0000000000000000000000000000000000000000..c7fb08bc010396f410f625fe488962e2f7e7055e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_eye_of_the_wyrm.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_focus_whip.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_focus_whip.png
new file mode 100644
index 0000000000000000000000000000000000000000..5c3b559a7665d7259904cbc80a262a36b2114251
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_focus_whip.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_genocide.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_genocide.png
new file mode 100644
index 0000000000000000000000000000000000000000..591c8734546d411c939c36b2b474ba65ae4529fb
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_genocide.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_gravitational_staff.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_gravitational_staff.png
new file mode 100644
index 0000000000000000000000000000000000000000..db838f4a1f6b380c5190f266fc6b5ad19552c114
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_gravitational_staff.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_great_caller.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_great_caller.png
new file mode 100644
index 0000000000000000000000000000000000000000..9b40111c58ab82d3fc40df5f793c09c5f9af6846
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_great_caller.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_guidance.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_guidance.png
new file mode 100644
index 0000000000000000000000000000000000000000..933245a9b82cf104032a813cb95cbcacd3be276f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_guidance.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_hareskin_sling.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_hareskin_sling.png
new file mode 100644
index 0000000000000000000000000000000000000000..b08053560a1f2fa0cdf7b0d2c95fea13bb5ee284
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_hareskin_sling.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_hydras_bite.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_hydras_bite.png
new file mode 100644
index 0000000000000000000000000000000000000000..344d8839390991166c7bf2d2730ba15a3b3b085e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_hydras_bite.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_latafayn.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_latafayn.png
new file mode 100644
index 0000000000000000000000000000000000000000..3257b1729e2f8b428fc8d103c747cc40d8978d64
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_latafayn.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_merkuls_second_eye.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_merkuls_second_eye.png
new file mode 100644
index 0000000000000000000000000000000000000000..a2d71bdfe35e3a715397949c00f3fe47b00a4fd6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_merkuls_second_eye.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_nexus_of_the_way.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_nexus_of_the_way.png
new file mode 100644
index 0000000000000000000000000000000000000000..a3b780986bfb5d2c265a002b875bea1c90986b83
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_nexus_of_the_way.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_nithans_force.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_nithans_force.png
new file mode 100644
index 0000000000000000000000000000000000000000..b8f90b818d3e5dab4bc35ed6cf73a113ffc042ad
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_nithans_force.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_obliterator.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_obliterator.png
new file mode 100644
index 0000000000000000000000000000000000000000..936c32f7d8b34a4e9c5b62b0b29427528b666d59
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_obliterator.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_oozing_heart.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_oozing_heart.png
new file mode 100644
index 0000000000000000000000000000000000000000..cd2aab7987f8b2760da5515b2c6ec02911b8d2d1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_oozing_heart.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_psionic_fury.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_psionic_fury.png
new file mode 100644
index 0000000000000000000000000000000000000000..c7575528da460d2ac885fd852ca8f3148f1401a1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_psionic_fury.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_rod_of_sarrilon.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_rod_of_sarrilon.png
new file mode 100644
index 0000000000000000000000000000000000000000..8d49730a9b8705eff29390920843b27902a26243
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_rod_of_sarrilon.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_sceptre_of_the_archlich.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_sceptre_of_the_archlich.png
new file mode 100644
index 0000000000000000000000000000000000000000..1c33990c1661c4d0f3c775e3e9d9ccf831ed12bc
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_sceptre_of_the_archlich.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_serpents_glare.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_serpents_glare.png
new file mode 100644
index 0000000000000000000000000000000000000000..4b7983638f0fd102037ec0d5c79ab4c4a94725f4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_serpents_glare.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_shield_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_shield_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..5b5ad83652a8dc4e4be90519412ff54ef55b4dde
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_shield_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_skeletal_claw.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_skeletal_claw.png
new file mode 100644
index 0000000000000000000000000000000000000000..4d4000cb4b66c19604e5a77f2703a9a530d5ea40
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_skeletal_claw.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_sling_eldoral_last_resort.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_sling_eldoral_last_resort.png
new file mode 100644
index 0000000000000000000000000000000000000000..b36266838457f1818535ff12fa0c809105374ad1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_sling_eldoral_last_resort.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_spectral_blade.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_spectral_blade.png
new file mode 100644
index 0000000000000000000000000000000000000000..d7d5717dc2f6b61b78da6122ac27bc82e642ab37
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_spectral_blade.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_spellcrusher.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_spellcrusher.png
new file mode 100644
index 0000000000000000000000000000000000000000..3d6c6c164f008e1284189aed67315da8e950284f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_spellcrusher.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_staff_bolbums_big_knocker.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_staff_bolbums_big_knocker.png
new file mode 100644
index 0000000000000000000000000000000000000000..58e89392bb4f8a9a1b38d5f90f66abdc674fd358
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_staff_bolbums_big_knocker.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_staff_broken_bottom_telos.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_staff_broken_bottom_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..fd5561ee1494ea4512f5e0ceff2c4b4f15ed8c12
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_staff_broken_bottom_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_staff_broken_top_telos.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_staff_broken_top_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..f7ba503f87720b110803231722861cf3aa02def2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_staff_broken_top_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_staff_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_staff_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..1c54e5d6f242f1e9a35cbccfc5467df46c65086d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_staff_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_staff_kors_fall.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_staff_kors_fall.png
new file mode 100644
index 0000000000000000000000000000000000000000..e0c8a07f61f0480f96084153eceecad670638fbf
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_staff_kors_fall.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_staff_lost_staff_archmage_tarelion.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_staff_lost_staff_archmage_tarelion.png
new file mode 100644
index 0000000000000000000000000000000000000000..22254e49de5c53b0a8316b653fa893cabd8e9c73
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_staff_lost_staff_archmage_tarelion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_staff_of_absorbtion.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_staff_of_absorbtion.png
new file mode 100644
index 0000000000000000000000000000000000000000..cf26b879e10525fcc964bf75f92a8c516ce2c15b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_staff_of_absorbtion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_staff_of_arcane_supremacy.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_staff_of_arcane_supremacy.png
new file mode 100644
index 0000000000000000000000000000000000000000..ed09e8f1c2b7d29bd20b2b9ce1c190a94fe78544
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_staff_of_arcane_supremacy.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_staff_of_destruction.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_staff_of_destruction.png
new file mode 100644
index 0000000000000000000000000000000000000000..30db18ce148e71a5f746def5fcf4e0596a5982a2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_staff_of_destruction.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_staff_penitence.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_staff_penitence.png
new file mode 100644
index 0000000000000000000000000000000000000000..d03c0b6213f47320e58668ad9f7ba43eb7fa4c3a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_staff_penitence.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_staff_voice_of_telos.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_staff_voice_of_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..f1077367aac27f5e4a7e9067edb29a19d0995d21
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_staff_voice_of_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_storm_fury.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_storm_fury.png
new file mode 100644
index 0000000000000000000000000000000000000000..4815e4bfcc5458f482760e95bcfcba78147166a9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_storm_fury.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_stormlash.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_stormlash.png
new file mode 100644
index 0000000000000000000000000000000000000000..4676298edc8dff6811636df8854a84e1adf53340
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_stormlash.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_surefire.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_surefire.png
new file mode 100644
index 0000000000000000000000000000000000000000..af8e06e2df4a11bd439a27dad2b548072c50c4be
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_surefire.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_telos_spire_of_power.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_telos_spire_of_power.png
new file mode 100644
index 0000000000000000000000000000000000000000..a7636a340d4c8cae738bddada9c2b2ac0dd6fafb
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_telos_spire_of_power.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_thaloren_tree_longbow.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_thaloren_tree_longbow.png
new file mode 100644
index 0000000000000000000000000000000000000000..3ae4754e3baaa45ad2109b8967c5b8eadf4c3b4d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_thaloren_tree_longbow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_trident_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_trident_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..04085e6b3274b0a1b355e69dfd415fb7b934ccf1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_trident_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_umbral_razor.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_umbral_razor.png
index cf23288e99d714a65fe79e8483f42793dc9ca4c0..d249dff6383b1c03c23540d0e1e7c0742c1ee47b 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_umbral_razor.png and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_umbral_razor.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_unstoppable_mauler.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_unstoppable_mauler.png
new file mode 100644
index 0000000000000000000000000000000000000000..3d00b0b343ff7e94060b357324813a6c7db48925
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_unstoppable_mauler.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_voratun_hammer_of_the_deep_bellow.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_voratun_hammer_of_the_deep_bellow.png
new file mode 100644
index 0000000000000000000000000000000000000000..36cff83336c2b6c35baac70e76a216c50e8c008e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_voratun_hammer_of_the_deep_bellow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_warmaster_gnargs_murderblade.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_warmaster_gnargs_murderblade.png
new file mode 100644
index 0000000000000000000000000000000000000000..e8fa54ee73f0894edf40d8657145109ae1ed09ca
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_warmaster_gnargs_murderblade.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_whip_of_urh_rok.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_whip_of_urh_rok.png
new file mode 100644
index 0000000000000000000000000000000000000000..62399e59ebfefaff747b9eba06f94df3566ddb5b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_whip_of_urh_rok.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_whip_scorpions_tail.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_whip_scorpions_tail.png
new file mode 100644
index 0000000000000000000000000000000000000000..13fa92436e28329c253f9f74805f53afc291f7ff
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_whip_scorpions_tail.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_writhing_essence_of_nightmares.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_writhing_essence_of_nightmares.png
new file mode 100644
index 0000000000000000000000000000000000000000..e0a1bfa391481d3505148da05e7033c06d44c967
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/right_writhing_essence_of_nightmares.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/robe_black_robe.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/robe_black_robe.png
new file mode 100644
index 0000000000000000000000000000000000000000..1f7a64c5556896bea9094025395d6636627ee981
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/robe_black_robe.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/robe_firewalker.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/robe_firewalker.png
new file mode 100644
index 0000000000000000000000000000000000000000..b114132121838747eb9874300f4b83b18115a8ad
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/robe_firewalker.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/robe_of_force.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/robe_of_force.png
new file mode 100644
index 0000000000000000000000000000000000000000..1372e298a2fc1a5b44787ca8b0646613a7abac5c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/robe_of_force.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/robe_spider_silk_robe_spydre.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/robe_spider_silk_robe_spydre.png
new file mode 100644
index 0000000000000000000000000000000000000000..b2d773b0f7433a98af57a45571623cf5a1bb4d3a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/robe_spider_silk_robe_spydre.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/robe_temporal_augmentation_robe.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/robe_temporal_augmentation_robe.png
new file mode 100644
index 0000000000000000000000000000000000000000..9f29ad5968faf2085b067dc2755c50d1471459b5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/robe_temporal_augmentation_robe.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/robe_vestments_of_the_conclave.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/robe_vestments_of_the_conclave.png
new file mode 100644
index 0000000000000000000000000000000000000000..4dd82868ff21f6fba4c9e058c71b715cc24681b5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/robe_vestments_of_the_conclave.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/robes_of_deflection.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/robes_of_deflection.png
new file mode 100644
index 0000000000000000000000000000000000000000..38e3b1ab6ea45e3dd4cbb2bae014a9f6130c6039
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/robes_of_deflection.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/scale_mail_of_kroltar.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/scale_mail_of_kroltar.png
new file mode 100644
index 0000000000000000000000000000000000000000..b942549857c71f00c48062bdd877cf2076f9af96
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/scale_mail_of_kroltar.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/scorched_boots.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/scorched_boots.png
new file mode 100644
index 0000000000000000000000000000000000000000..4e0922d551bc0ae42e5e31bcb258478207c93381
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/scorched_boots.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/scorpion_gauntlets.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/scorpion_gauntlets.png
new file mode 100644
index 0000000000000000000000000000000000000000..6e60b0b89acbb67c75a219374774b5398c8a9959
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/scorpion_gauntlets.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/serpentine_cloak_behind.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/serpentine_cloak_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..b206da453d0a61d6dac0796338cc4e69c10373e4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/serpentine_cloak_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/serpentine_cloak_hood.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/serpentine_cloak_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..483d112d4fcea73486cf6472905fd676150ec406
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/serpentine_cloak_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/serpentine_cloak_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/serpentine_cloak_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..550bcc8fbf149d20b680712bef3719c4f131a4a9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/serpentine_cloak_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/shifting_boots.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/shifting_boots.png
new file mode 100644
index 0000000000000000000000000000000000000000..7da267f617f3802596ecf8f0c50181abb34fc041
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/shifting_boots.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/silk_current.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/silk_current.png
new file mode 100644
index 0000000000000000000000000000000000000000..361ef44edfff503b8d915a199140abbed70d4015
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/silk_current.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/sludgegrip.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/sludgegrip.png
new file mode 100644
index 0000000000000000000000000000000000000000..1ba4140c1d08d4d67ab8bec536676da4f9674bf3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/sludgegrip.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/snow_giant_arm_wraps.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/snow_giant_arm_wraps.png
new file mode 100644
index 0000000000000000000000000000000000000000..30a7d516c9ffb0423487d65bb9b6c1c61283c7ea
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/snow_giant_arm_wraps.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/spellhunt_remnants.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/spellhunt_remnants.png
new file mode 100644
index 0000000000000000000000000000000000000000..32b1d9dd890ed6a91502b734aad5f2863e833783
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/spellhunt_remnants.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/star_shot.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/star_shot.png
new file mode 100644
index 0000000000000000000000000000000000000000..698da3a1796911d0dbf4a89af2cb8c23d0614f90
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/star_shot.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/storm_bringers_gauntlets.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/storm_bringers_gauntlets.png
new file mode 100644
index 0000000000000000000000000000000000000000..b4598ac8636eeb33fec3df7f2025c869909a6a33
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/storm_bringers_gauntlets.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/terrasca.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/terrasca.png
new file mode 100644
index 0000000000000000000000000000000000000000..e20fb2f7a66941747262264acf79517d5950598a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/terrasca.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/the_calm.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/the_calm.png
new file mode 100644
index 0000000000000000000000000000000000000000..c6b545e4af247339a96e4fca973fe9c413f4001d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/the_calm.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/the_inner_eye.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/the_inner_eye.png
new file mode 100644
index 0000000000000000000000000000000000000000..1eb765a0bf56fcee56564a2f28184abfd6bc9a90
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/the_inner_eye.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/the_titans_quiver.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/the_titans_quiver.png
new file mode 100644
index 0000000000000000000000000000000000000000..147dd97a09494a04ed0def530b5644c193104ac3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/the_titans_quiver.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/the_untouchable.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/the_untouchable.png
new file mode 100644
index 0000000000000000000000000000000000000000..1a9a3b1d36b36446d332ca9d37aca0918c371d9d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/the_untouchable.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/the_warped_boots.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/the_warped_boots.png
new file mode 100644
index 0000000000000000000000000000000000000000..3b9469734f9bb2dd578cdbaf43684b0714c6b9ef
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/the_warped_boots.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/unbreakable_greaves.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/unbreakable_greaves.png
new file mode 100644
index 0000000000000000000000000000000000000000..a6e283b3c4b53d4f5ef421596dea77abd964a39c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/unbreakable_greaves.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/ureslaks_molted_scales_behind.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/ureslaks_molted_scales_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..151ead92e6216a6ceb20008a299a300549547ced
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/ureslaks_molted_scales_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/ureslaks_molted_scales_hood.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/ureslaks_molted_scales_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..a885dec937a06c544b4699d1e8045a42993625b3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/ureslaks_molted_scales_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/ureslaks_molted_scales_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/ureslaks_molted_scales_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..66d0514fe40c0ec494009786d4e8e39347827b06
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/ureslaks_molted_scales_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/void_quiver.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/void_quiver.png
new file mode 100644
index 0000000000000000000000000000000000000000..c9ffe5eba5841827a68405cc715b79ab86eaf928
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/void_quiver.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/wanderers_rest.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/wanderers_rest.png
new file mode 100644
index 0000000000000000000000000000000000000000..fda533604dbe5fcdd0a0f0d05870253013cf43e6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/wanderers_rest.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/wind_worn_shot.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/wind_worn_shot.png
new file mode 100644
index 0000000000000000000000000000000000000000..060c7f31e65bac46d3eff1a9d9bf5fab776c3248
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/wind_worn_shot.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/wizard_hat_of_arcane_understanding.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/wizard_hat_of_arcane_understanding.png
new file mode 100644
index 0000000000000000000000000000000000000000..4ca043c3fb9f4a417961644af1be052c06e69d0b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/wizard_hat_of_arcane_understanding.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/wooden_cuirass.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/wooden_cuirass.png
index a94ee7bde8bfa9f48aba3f3f5b53f4630e8ff792..6d3d47b3026f7616c99b9f3c6dd3af02c385f82a 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/wooden_cuirass.png and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/wooden_cuirass.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/wrap_of_stone_behind.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/wrap_of_stone_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..2f2071ac5052978b37d7329b6cac2182aef9465b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/wrap_of_stone_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/wrap_of_stone_hood.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/wrap_of_stone_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..80a76c3bf584b8f1b8c1ab2e9df26502f379cf18
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/wrap_of_stone_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/wrap_of_stone_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/wrap_of_stone_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..d0edc5a47693d2afd6473f2d82a697f0852674fe
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/wrap_of_stone_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/wyrmbreath.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/wyrmbreath.png
new file mode 100644
index 0000000000000000000000000000000000000000..cb64af218fe1e99bc49c9204d437f9840bdd14c7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/wyrmbreath.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/yaldan_baoth.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/yaldan_baoth.png
new file mode 100644
index 0000000000000000000000000000000000000000..107c7168d85e01e062ff6015d7195418d1c9e239
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/yaldan_baoth.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/yeek_fur_robe.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/yeek_fur_robe.png
new file mode 100644
index 0000000000000000000000000000000000000000..66afb96d0abbebb0ea74bcb2411f79afca1a1808
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/special/yeek_fur_robe.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/upper_body_25.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/upper_body_25.png
index 2b345067d37edda793adbeb78b80c6999a6c0b28..941788eda5a327d3285f86eab771b18badd80de1 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/orc_male/upper_body_25.png and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/upper_body_25.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/upper_body_29.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/upper_body_29.png
new file mode 100644
index 0000000000000000000000000000000000000000..3523ebce2c0cbdbf5b101ca8d3646e022c4cbd13
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/upper_body_29.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/upper_body_30.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/upper_body_30.png
new file mode 100644
index 0000000000000000000000000000000000000000..a56cb2a808ecb1c3fe96fddfa9a87b7f9ce894c5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/upper_body_30.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/upper_body_31.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/upper_body_31.png
new file mode 100644
index 0000000000000000000000000000000000000000..055a944eacaa6b67a7d5f315788b24e1a4ef3038
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/upper_body_31.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/upper_body_32.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/upper_body_32.png
new file mode 100644
index 0000000000000000000000000000000000000000..9140ce1fc162dcc2998a929465c0d05b67eec043
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/upper_body_32.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/upper_body_33.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/upper_body_33.png
new file mode 100644
index 0000000000000000000000000000000000000000..cc33ce0ee19cd17f8b6fe7387baedbc0daf22e2f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/upper_body_33.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/upper_body_34.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/upper_body_34.png
new file mode 100644
index 0000000000000000000000000000000000000000..9b50f09b4454d6efa5446908dd8ec65ff7c90a6b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/upper_body_34.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/upper_body_35.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/upper_body_35.png
new file mode 100644
index 0000000000000000000000000000000000000000..931c3101baa189976a2176b678874febdcbc3664
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/upper_body_35.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/upper_body_36.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/upper_body_36.png
new file mode 100644
index 0000000000000000000000000000000000000000..e477718f1aa546a22e3277eb3856b9269cc6b71e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/upper_body_36.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/upper_body_37.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/upper_body_37.png
new file mode 100644
index 0000000000000000000000000000000000000000..4e501188527ade57bce7bb4d3e08cbb4b797c668
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/upper_body_37.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/orc_male/upper_body_38.png b/game/modules/tome/data/gfx/shockbolt/player/orc_male/upper_body_38.png
new file mode 100644
index 0000000000000000000000000000000000000000..2024975a11fb2d22701c280a17a8a120ae543166
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/orc_male/upper_body_38.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/cloak_behind_07.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/cloak_behind_07.png
new file mode 100644
index 0000000000000000000000000000000000000000..3fd386c8b54a1f7cabd96be60bf4051d8a82e15e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/cloak_behind_07.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/cloak_behind_08.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/cloak_behind_08.png
new file mode 100644
index 0000000000000000000000000000000000000000..b35304a09936e5d33aff7f5a22564188ea76618b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/cloak_behind_08.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/cloak_behind_09.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/cloak_behind_09.png
new file mode 100644
index 0000000000000000000000000000000000000000..8d31fe8b7fc1e01c22fc025c1dcac4fce6899873
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/cloak_behind_09.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/cloak_hood_07.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/cloak_hood_07.png
new file mode 100644
index 0000000000000000000000000000000000000000..37f922854eb8908056cd3e974ac544e59aa78cc8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/cloak_hood_07.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/cloak_hood_08.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/cloak_hood_08.png
new file mode 100644
index 0000000000000000000000000000000000000000..8a16784cbb49341b80c145082fb1ec662c2e094a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/cloak_hood_08.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/cloak_hood_09.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/cloak_hood_09.png
new file mode 100644
index 0000000000000000000000000000000000000000..1fd36b98af5c20ab5368bfc4dddc358b3670d18f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/cloak_hood_09.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/cloak_shoulder_07.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/cloak_shoulder_07.png
new file mode 100644
index 0000000000000000000000000000000000000000..aa5c11f12db31c6075dfeb0f37d12a755e276ab9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/cloak_shoulder_07.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/cloak_shoulder_08.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/cloak_shoulder_08.png
new file mode 100644
index 0000000000000000000000000000000000000000..b8e6f0c982c5a7f76b6008bfb6f689e82e24962c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/cloak_shoulder_08.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/cloak_shoulder_09.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/cloak_shoulder_09.png
new file mode 100644
index 0000000000000000000000000000000000000000..cded6f54c0b1f7022305d0315d89d16ddcb69c81
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/cloak_shoulder_09.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/feet_10.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/feet_10.png
new file mode 100644
index 0000000000000000000000000000000000000000..0b57992b673319d65f9801f965ce33adf872a546
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/feet_10.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/feet_11.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/feet_11.png
new file mode 100644
index 0000000000000000000000000000000000000000..22d46874de0b314ef165eef4d739f622c31948cd
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/feet_11.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/gembag_01.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/gembag_01.png
new file mode 100644
index 0000000000000000000000000000000000000000..f6b0ebceba201d230cd87af2daf0bb562fadd6f8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/gembag_01.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/gembag_02.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/gembag_02.png
new file mode 100644
index 0000000000000000000000000000000000000000..440da37497a3711629006051ccedb3d7e54c6aba
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/gembag_02.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/gembag_03.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/gembag_03.png
new file mode 100644
index 0000000000000000000000000000000000000000..ac987e8d44e4e8bba4fbf1bf6141f4c0c65c61d8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/gembag_03.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/gembag_04.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/gembag_04.png
new file mode 100644
index 0000000000000000000000000000000000000000..b6818ff6e1e7a6e0e3ae6bae8fee7c0eb4e8db69
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/gembag_04.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/gembag_05.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/gembag_05.png
new file mode 100644
index 0000000000000000000000000000000000000000..593f3505b6a3d990e76f1c30089807bd5235331f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/gembag_05.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/hands_08.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/hands_08.png
new file mode 100644
index 0000000000000000000000000000000000000000..9be339c88852954b57f2aff29257ba72076fc6a0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/hands_08.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/hands_09.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/hands_09.png
new file mode 100644
index 0000000000000000000000000000000000000000..b7f420e4a2a76073c8fe05b08189bfa38aacf813
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/hands_09.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/head_19.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/head_19.png
new file mode 100644
index 0000000000000000000000000000000000000000..f343cf71ce571861cc2bd5da6fe9e4bced2a3ec0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/head_19.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/head_20.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/head_20.png
new file mode 100644
index 0000000000000000000000000000000000000000..c9120ee03211144869acf12c9f750f8fd609ee5a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/head_20.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/head_21.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/head_21.png
new file mode 100644
index 0000000000000000000000000000000000000000..8366d5066d279802aef922e1adbc0781477c0712
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/head_21.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/head_22.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/head_22.png
new file mode 100644
index 0000000000000000000000000000000000000000..fd3303f49642f09bc69d82a50eb97f188fd519fa
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/head_22.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/head_23.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/head_23.png
new file mode 100644
index 0000000000000000000000000000000000000000..c8bdcbbb6d175a8bbf163140836cdcf8e327bd49
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/head_23.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/lower_body_14.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/lower_body_14.png
new file mode 100644
index 0000000000000000000000000000000000000000..5fd95eb12d9f251dbfe203e71f1b7be30d335ec5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/lower_body_14.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/lower_body_15.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/lower_body_15.png
new file mode 100644
index 0000000000000000000000000000000000000000..10a853e7e4704c03109c99b06f874be5bb7b2add
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/lower_body_15.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/lower_body_16.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/lower_body_16.png
new file mode 100644
index 0000000000000000000000000000000000000000..c332fd7f2960a7d73b89eebf75273e8cb6877e00
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/lower_body_16.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/lower_body_17.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/lower_body_17.png
new file mode 100644
index 0000000000000000000000000000000000000000..5590a5b11e9aa65254e8d51c5f7e4684a5dbcc16
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/lower_body_17.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/lower_body_18.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/lower_body_18.png
new file mode 100644
index 0000000000000000000000000000000000000000..f12d88820575deb4ed9a9ed236f55250981c910d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/lower_body_18.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/lower_body_19.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/lower_body_19.png
new file mode 100644
index 0000000000000000000000000000000000000000..5b5a8117e0c889c9eb1ee4ee59eaef8a71e668b1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/lower_body_19.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/quiver_01.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/quiver_01.png
new file mode 100644
index 0000000000000000000000000000000000000000..210b7b3e185bd9228e417f1bd35eb992b3b80eb9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/quiver_01.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/quiver_02.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/quiver_02.png
new file mode 100644
index 0000000000000000000000000000000000000000..ec357649c6b1d5a231c88708a8429f4e6b8b2fe9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/quiver_02.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/quiver_03.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/quiver_03.png
new file mode 100644
index 0000000000000000000000000000000000000000..dcf7d3d67453e3c2da88fd42c2ef21aca48e913b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/quiver_03.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/quiver_04.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/quiver_04.png
new file mode 100644
index 0000000000000000000000000000000000000000..2bb986d92bfb950d565a3907f567a662ccf1204e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/quiver_04.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/quiver_05.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/quiver_05.png
new file mode 100644
index 0000000000000000000000000000000000000000..eeb26636126b6d5f84b75c319469ca7086863f4f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/quiver_05.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/shotbag_01.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/shotbag_01.png
new file mode 100644
index 0000000000000000000000000000000000000000..4a5d32819db6a83c287ed7cbde520c10d08fad07
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/shotbag_01.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/shotbag_02.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/shotbag_02.png
new file mode 100644
index 0000000000000000000000000000000000000000..fa27219637a1a7be44594b1fd15209113c1ed70c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/shotbag_02.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/shotbag_03.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/shotbag_03.png
new file mode 100644
index 0000000000000000000000000000000000000000..39b890d32be17ee4f72364373f2267cf1361906a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/shotbag_03.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/shotbag_04.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/shotbag_04.png
new file mode 100644
index 0000000000000000000000000000000000000000..c26bd9cf14763991130c66367b6a4180ef5f471a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/shotbag_04.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/shotbag_05.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/shotbag_05.png
new file mode 100644
index 0000000000000000000000000000000000000000..f6f9b27f0aafda98e44f62610c4afb1c5445f40d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/shotbag_05.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/aether_walk.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/aether_walk.png
new file mode 100644
index 0000000000000000000000000000000000000000..7664acc18d9872f6315448b063f538103a0f2f29
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/aether_walk.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/arkuls_seige_arrows.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/arkuls_seige_arrows.png
new file mode 100644
index 0000000000000000000000000000000000000000..69fdbbd433bec10479a226eb9b40b0c6f68b25c8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/arkuls_seige_arrows.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/armor_chromatic_harness.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/armor_chromatic_harness.png
new file mode 100644
index 0000000000000000000000000000000000000000..c496f21d02e2073e695bab949ff1dfe3f6d2c832
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/armor_chromatic_harness.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/armor_cuirass_of_the_thronesmen.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/armor_cuirass_of_the_thronesmen.png
new file mode 100644
index 0000000000000000000000000000000000000000..4c80821ecc625d76fa295d5c2dc7202d43d8a60d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/armor_cuirass_of_the_thronesmen.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/armor_natures_blessing.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/armor_natures_blessing.png
new file mode 100644
index 0000000000000000000000000000000000000000..a3ac964149c683fbd8f85668e54cbb78c0a101de
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/armor_natures_blessing.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/armor_plate_borfasts_cage.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/armor_plate_borfasts_cage.png
new file mode 100644
index 0000000000000000000000000000000000000000..25d1eadd2832317cfb66416aea389fb7301d5037
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/armor_plate_borfasts_cage.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/armor_rogue_plight.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/armor_rogue_plight.png
new file mode 100644
index 0000000000000000000000000000000000000000..c9939353e3f400e9121f1a5d9f602497e1540b68
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/armor_rogue_plight.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/behemoth_skin.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/behemoth_skin.png
new file mode 100644
index 0000000000000000000000000000000000000000..dbd8a027cc2e111679fa84edab7cc96a477cb606
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/behemoth_skin.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/black_cloak_behind.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/black_cloak_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..ff33d204a609adaa4e41116d37d3aabe3641abc1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/black_cloak_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/black_cloak_hood.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/black_cloak_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..a7b375e72273d279d972bd5242e68cbe0c2e2210
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/black_cloak_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/black_cloak_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/black_cloak_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..7d486928b3f8a89d929d1152bdc38d6a8c74a04f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/black_cloak_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/boots_edens_guile.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/boots_edens_guile.png
new file mode 100644
index 0000000000000000000000000000000000000000..b568fc622b54df82df31c0c06c93ef418027565b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/boots_edens_guile.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/boots_of_the_hunter.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/boots_of_the_hunter.png
new file mode 100644
index 0000000000000000000000000000000000000000..c74aff3c8826aaf94dd06486a927beb0e9404f9b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/boots_of_the_hunter.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/breath_of_eyal.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/breath_of_eyal.png
new file mode 100644
index 0000000000000000000000000000000000000000..a3426f1c895db10081cca4e59777ba626fce2528
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/breath_of_eyal.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/cinderfeet.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/cinderfeet.png
new file mode 100644
index 0000000000000000000000000000000000000000..2e42e62e0aabe1a3ddc1c174dfd7d238c9fe5f52
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/cinderfeet.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/cloak_threads_of_fate_behind.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/cloak_threads_of_fate_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..ae1bcc39273cf9c5c810ae2f1f6e65893a7bbfb3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/cloak_threads_of_fate_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/cloak_threads_of_fate_hood.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/cloak_threads_of_fate_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..02e1a4d55ac0aae7c8c9b4aba72f0a5e36b21d75
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/cloak_threads_of_fate_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/cloak_threads_of_fate_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/cloak_threads_of_fate_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..f67c176a78e0f1041a343052518c65ae0a87a616
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/cloak_threads_of_fate_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/cloak_winds_whisper_behind.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/cloak_winds_whisper_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..d9ec5b96b90fa181fc6d122e976aff1d2941ab16
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/cloak_winds_whisper_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/cloak_winds_whisper_hood.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/cloak_winds_whisper_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..f5a304e608750a1a5aaa57582cecfa464849c0b4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/cloak_winds_whisper_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/cloak_winds_whisper_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/cloak_winds_whisper_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..00450f92cff06d3adea1777e89d6ef0be57b6cec
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/cloak_winds_whisper_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/cloth_armour_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/cloth_armour_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..c8c0cc50a0b82907cc0e005b905f6b54a55686dc
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/cloth_armour_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/cloth_of_dreams_behind.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/cloth_of_dreams_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..57674b2124589c9adeaf4c083537b84a8fd40a0b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/cloth_of_dreams_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/cloth_of_dreams_hood.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/cloth_of_dreams_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..12ea34c4214cf3edfe11e3101feb71a8c09ef3bf
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/cloth_of_dreams_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/cloth_of_dreams_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/cloth_of_dreams_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..9b23d6608ed70bb62f7dd627524ba3a682873aa4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/cloth_of_dreams_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/corrupted_gaze.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/corrupted_gaze.png
new file mode 100644
index 0000000000000000000000000000000000000000..f7a46461795ae352534c50faa48a251edd64f5d2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/corrupted_gaze.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/crimson_robe.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/crimson_robe.png
new file mode 100644
index 0000000000000000000000000000000000000000..11a3d7f3fd31fb3f0d112a7089f6c66fb7414b51
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/crimson_robe.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/crown_of_burning_pain.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/crown_of_burning_pain.png
new file mode 100644
index 0000000000000000000000000000000000000000..b5afb6fc94a9090d7bff27a21b8650bb24edb5a6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/crown_of_burning_pain.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/crown_of_command.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/crown_of_command.png
new file mode 100644
index 0000000000000000000000000000000000000000..d20f27311f3df638cab56b9df1cecee3cd4229c5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/crown_of_command.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/crown_of_eternal_night.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/crown_of_eternal_night.png
new file mode 100644
index 0000000000000000000000000000000000000000..3e23634fb1a8e827c904f173cf95078d97d6ecf1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/crown_of_eternal_night.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/crown_of_the_elements.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/crown_of_the_elements.png
new file mode 100644
index 0000000000000000000000000000000000000000..1aa7824c9670646f880b590f90256dab7cc2f19b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/crown_of_the_elements.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/crystles_astral_bindings.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/crystles_astral_bindings.png
new file mode 100644
index 0000000000000000000000000000000000000000..41cf64f58d4768ddc112eb0da9491c9531c63088
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/crystles_astral_bindings.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/dakhtuns_gauntlets.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/dakhtuns_gauntlets.png
new file mode 100644
index 0000000000000000000000000000000000000000..a8463e1115c625881febf37d416aec55fd1cf447
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/dakhtuns_gauntlets.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/deaths_embrace.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/deaths_embrace.png
new file mode 100644
index 0000000000000000000000000000000000000000..86447d4f3e302fcf2b005163e87372a61d2e8b67
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/deaths_embrace.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/decayed_visage.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/decayed_visage.png
new file mode 100644
index 0000000000000000000000000000000000000000..82c3eee1ca5d08140a2cabcddeb5b8b02769f3c2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/decayed_visage.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/destalas_scales_whisper_behind.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/destalas_scales_whisper_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..4dfece9b3c03973372abe319cc90ea9e0178dd5a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/destalas_scales_whisper_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/destalas_scales_whisper_hood.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/destalas_scales_whisper_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..77472dec16ac9a212fd0b8802a790a865f364867
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/destalas_scales_whisper_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/destalas_scales_whisper_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/destalas_scales_whisper_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..61b058f863eb5674e61797f042f7b08902ab81b0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/destalas_scales_whisper_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/diadem_alettas_diadem.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/diadem_alettas_diadem.png
new file mode 100644
index 0000000000000000000000000000000000000000..da9d35556fdfc225fc0347eb4a20a6f0b092448d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/diadem_alettas_diadem.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/dragon_helm_of_kroltar.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/dragon_helm_of_kroltar.png
new file mode 100644
index 0000000000000000000000000000000000000000..885bee106993b2cfbf2fa20c342570363fa1e084
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/dragon_helm_of_kroltar.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/dragonskull_helmet.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/dragonskull_helmet.png
new file mode 100644
index 0000000000000000000000000000000000000000..96dfd913ca8daf723afa82ec13689811767eccd0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/dragonskull_helmet.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/eel_skin_armor.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/eel_skin_armor.png
new file mode 100644
index 0000000000000000000000000000000000000000..36510483c8417062fe3336beed70512cbda4897f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/eel_skin_armor.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/ethereal_embrace_behind.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/ethereal_embrace_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..f38d78e0188bc7f877e2c9ede71b167657b293f6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/ethereal_embrace_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/ethereal_embrace_hood.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/ethereal_embrace_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..ddea27ae8151ad0643d69b0a92caa00d5827903d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/ethereal_embrace_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/ethereal_embrace_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/ethereal_embrace_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..5a8b5da8da6b77ae808cd7aef883a32d57b67e37
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/ethereal_embrace_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/evermoss_robe.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/evermoss_robe.png
new file mode 100644
index 0000000000000000000000000000000000000000..cf874903160f86cc0307c2c7900441572602ea65
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/evermoss_robe.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/eye_of_the_forest.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/eye_of_the_forest.png
new file mode 100644
index 0000000000000000000000000000000000000000..4ccf135e12a73ea48823cc26f063ff53f737df57
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/eye_of_the_forest.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/fist_of_the_destroyer.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/fist_of_the_destroyer.png
new file mode 100644
index 0000000000000000000000000000000000000000..db6f546d424c92c40745a43ce3a41e2badc59439
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/fist_of_the_destroyer.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/frost_treads.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/frost_treads.png
new file mode 100644
index 0000000000000000000000000000000000000000..28ee564757e1133eeade1658865e76083fffb701
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/frost_treads.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/frozen_shards.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/frozen_shards.png
new file mode 100644
index 0000000000000000000000000000000000000000..aa97534c669e41079f12377226e6d7298d33245e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/frozen_shards.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/frozen_shroud_behind.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/frozen_shroud_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..58d6bac10980ae130966c16e5bb37fcaa367c1b0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/frozen_shroud_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/frozen_shroud_hood.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/frozen_shroud_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..99ad5867178053173229237eec498848f5235bdc
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/frozen_shroud_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/frozen_shroud_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/frozen_shroud_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..68b98aa901b1dbf3c6ec27f318411574cbb0fa42
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/frozen_shroud_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/gauntlets_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/gauntlets_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..1ca40c27fdd6393454909182b6730765611af573
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/gauntlets_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/gloves_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/gloves_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..545a767141194f8431d3956bf1deb0bf133f0500
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/gloves_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/gloves_flamewrought.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/gloves_flamewrought.png
new file mode 100644
index 0000000000000000000000000000000000000000..915f3b932413548e8379355c7245a6a2f634ed18
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/gloves_flamewrought.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/gloves_of_the_firm_hand.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/gloves_of_the_firm_hand.png
new file mode 100644
index 0000000000000000000000000000000000000000..405fc717974f7e796f50703c302dd31b555ef181
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/gloves_of_the_firm_hand.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/grip_of_death.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/grip_of_death.png
index 49c36d0e66c0a4b4836311c12b63b0d5dd5eb2c6..36b24ce971ef6dfe30460da6b818fc76d569ef5e 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/grip_of_death.png and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/grip_of_death.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/guise_of_the_hated_behind.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/guise_of_the_hated_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..28b44986b7eb3aeaa2fe4a99fae66e9362306e5c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/guise_of_the_hated_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/guise_of_the_hated_hood.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/guise_of_the_hated_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..9c9254f9f66aaa4e48d91c169bf9becf73a66f8c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/guise_of_the_hated_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/guise_of_the_hated_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/guise_of_the_hated_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..e08566899177c60c5257b47e6bb7896b6b3c019f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/guise_of_the_hated_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/hand_of_the_worldshaper.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/hand_of_the_worldshaper.png
new file mode 100644
index 0000000000000000000000000000000000000000..8bc2b49e5ab52a6845088570315ac7f34b7562eb
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/hand_of_the_worldshaper.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/harkor_zun_gauntlets.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/harkor_zun_gauntlets.png
new file mode 100644
index 0000000000000000000000000000000000000000..43c63e1936179eb1d6f879d7c0a6e64c2511ff9c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/harkor_zun_gauntlets.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/heavy_armour_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/heavy_armour_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..e906179531b7a5b7b3ed64f8f183da14ba2aefd7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/heavy_armour_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/helm_of_garkul.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/helm_of_garkul.png
new file mode 100644
index 0000000000000000000000000000000000000000..c7129a1f173d99808d2e86a219beaf7ccb552aec
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/helm_of_garkul.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/helm_of_the_dwarven_emperors.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/helm_of_the_dwarven_emperors.png
new file mode 100644
index 0000000000000000000000000000000000000000..47ae785c1e584a520a2b9b845d743064890a2cd6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/helm_of_the_dwarven_emperors.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/hornet_stingers.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/hornet_stingers.png
new file mode 100644
index 0000000000000000000000000000000000000000..e268da9112f9cb034c089a2dedcbfcc77619a75a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/hornet_stingers.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/iron_mail_of_bloodletting.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/iron_mail_of_bloodletting.png
new file mode 100644
index 0000000000000000000000000000000000000000..321a968b083edf2dc336c8972473626b05f141db
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/iron_mail_of_bloodletting.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_1Haxe_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_1Haxe_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..97b6f6be64b81cd0d582d50719ad72072690165b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_1Haxe_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_1Hmace_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_1Hmace_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..be4347785fb6e497d2292825b832b47a54f99b6a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_1Hmace_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_1Hsword_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_1Hsword_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..3e858893befd9e91376785c1d047a33962d7750d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_1Hsword_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_2Haxe_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_2Haxe_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..d43359b05d54b1be9b29666469b88617d0439c0b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_2Haxe_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_2Hmace_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_2Hmace_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..a948b1a2eae509388c73824c7c83aa914fdea442
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_2Hmace_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_2Hsword_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_2Hsword_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..292ec3e2467034ca1fdad983cb39ab8df6991fcf
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_2Hsword_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_amethyst_of_sanctuary.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_amethyst_of_sanctuary.png
new file mode 100644
index 0000000000000000000000000000000000000000..45c6f08bf75fe95b46cb0b39db0916c744ce48fe
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_amethyst_of_sanctuary.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_awaken_staff_of_absorbtion.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_awaken_staff_of_absorbtion.png
new file mode 100644
index 0000000000000000000000000000000000000000..bb0b768afc15b59221fad5e73191a6ed61a0d95c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_awaken_staff_of_absorbtion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_blighted_maul.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_blighted_maul.png
new file mode 100644
index 0000000000000000000000000000000000000000..93093a9b9455b7e620f1b78430fe59792ce1a3f2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_blighted_maul.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_bloomsoul.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_bloomsoul.png
new file mode 100644
index 0000000000000000000000000000000000000000..42ce3ecbbf36aa1b3e82c66ef1521c8dac38a315
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_bloomsoul.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_borosks_hate.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_borosks_hate.png
new file mode 100644
index 0000000000000000000000000000000000000000..c62e5e247f16a85c0be731a7d22eb764c8f5836f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_borosks_hate.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_bow_corpsebow.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_bow_corpsebow.png
new file mode 100644
index 0000000000000000000000000000000000000000..32970c9ac2716b869fe15b5a01ebf39d1ad2c747
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_bow_corpsebow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_bow_epochs_curve.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_bow_epochs_curve.png
new file mode 100644
index 0000000000000000000000000000000000000000..528f1fed3f021844989f70f35e5b3a04ed89753f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_bow_epochs_curve.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_champions_will.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_champions_will.png
new file mode 100644
index 0000000000000000000000000000000000000000..e7ce4d0c15e81f0bfb977995686b0080ce2a6b44
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_champions_will.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_colaryem.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_colaryem.png
new file mode 100644
index 0000000000000000000000000000000000000000..8700a33dcce265623e140b05376f994778f84e18
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_colaryem.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_core_of_the_forge.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_core_of_the_forge.png
new file mode 100644
index 0000000000000000000000000000000000000000..85c20911be57e29261d802bd404b1990c2fd4a09
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_core_of_the_forge.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_corpus_2.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_corpus_2.png
new file mode 100644
index 0000000000000000000000000000000000000000..bf362b274485f8e8f3ad29669b5a4b8c8b6df481
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_corpus_2.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_crystal_shard.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_crystal_shard.png
new file mode 100644
index 0000000000000000000000000000000000000000..3fc0bdc65b0e623b38082d340a4f999adf754f96
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_crystal_shard.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_dagger_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_dagger_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..1410bb55533b5404d4731b409433c6265832e386
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_dagger_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_dream_malleus.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_dream_malleus.png
new file mode 100644
index 0000000000000000000000000000000000000000..263f88c340eb421d442e03c60f1606f8b44b662b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_dream_malleus.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_eclipse.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_eclipse.png
new file mode 100644
index 0000000000000000000000000000000000000000..7f389e17f326ac37666de2f568c160dfb007a070
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_eclipse.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_eyals_will.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_eyals_will.png
new file mode 100644
index 0000000000000000000000000000000000000000..01dd800ce1e77f17b918004265a3f9affbe27c9b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_eyals_will.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_eye_of_the_wyrm.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_eye_of_the_wyrm.png
new file mode 100644
index 0000000000000000000000000000000000000000..4910109a76cf5e4f6708e4acf4268e2b8ced86ff
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_eye_of_the_wyrm.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_focus_whip.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_focus_whip.png
new file mode 100644
index 0000000000000000000000000000000000000000..250940bacb456cd6242a207fc141d5e4bb19a962
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_focus_whip.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_genocide.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_genocide.png
new file mode 100644
index 0000000000000000000000000000000000000000..ed5729144c163fbcdff9b4c70187872483be93de
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_genocide.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_gravitational_staff.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_gravitational_staff.png
new file mode 100644
index 0000000000000000000000000000000000000000..eeb95709e76066c9ff1912aad1c3bf0de887aacd
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_gravitational_staff.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_great_caller.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_great_caller.png
new file mode 100644
index 0000000000000000000000000000000000000000..839e6d91fbf2bb90759b63412ca309569d56061a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_great_caller.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_guidance.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_guidance.png
new file mode 100644
index 0000000000000000000000000000000000000000..58c8cd188d8c51dda1be012a18ee767f2566dd98
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_guidance.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_hareskin_sling.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_hareskin_sling.png
new file mode 100644
index 0000000000000000000000000000000000000000..6c0078f47a9a08c03748c57e81fe28f602f8c239
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_hareskin_sling.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_hydras_bite.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_hydras_bite.png
new file mode 100644
index 0000000000000000000000000000000000000000..9e9ba9f9c44cc558422406cecd906bce32d90cc0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_hydras_bite.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_latafayn.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_latafayn.png
new file mode 100644
index 0000000000000000000000000000000000000000..cd877a496c46b4be40b49127b7709b39cd345059
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_latafayn.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_merkuls_second_eye.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_merkuls_second_eye.png
new file mode 100644
index 0000000000000000000000000000000000000000..29a2b1597cb83ba773cc1c5bc8bc4317b8c388d2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_merkuls_second_eye.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_nexus_of_the_way.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_nexus_of_the_way.png
new file mode 100644
index 0000000000000000000000000000000000000000..cb2973b516bc3bc60decaf4ab7f15db79c73cab9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_nexus_of_the_way.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_nithans_force.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_nithans_force.png
new file mode 100644
index 0000000000000000000000000000000000000000..d5b85ad43e1e1e0f13630b93dd9049409aca8c71
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_nithans_force.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_obliterator.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_obliterator.png
new file mode 100644
index 0000000000000000000000000000000000000000..3829c2f910e8af1a093ab3d7816131a3085d8253
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_obliterator.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_oozing_heart.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_oozing_heart.png
new file mode 100644
index 0000000000000000000000000000000000000000..41e2d6e438421cf9eea2fbc6b0d981d98170c255
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_oozing_heart.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_psionic_fury.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_psionic_fury.png
new file mode 100644
index 0000000000000000000000000000000000000000..4b56f57ba3c4d2341429f3047a05b6fcffa947a1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_psionic_fury.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_rod_of_sarrilon.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_rod_of_sarrilon.png
new file mode 100644
index 0000000000000000000000000000000000000000..24eeec22c9c8dc1c836a9825a24fcfa6db26662b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_rod_of_sarrilon.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_sceptre_of_the_archlich.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_sceptre_of_the_archlich.png
new file mode 100644
index 0000000000000000000000000000000000000000..324af6147c447e6caec92f297f72c31d8e574b55
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_sceptre_of_the_archlich.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_serpents_glare.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_serpents_glare.png
new file mode 100644
index 0000000000000000000000000000000000000000..d2eab0757c61c66f496f66c6ace30a0779686ff5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_serpents_glare.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_shield_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_shield_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..31e36d71326e830d2e703534575cc12ef84cce3a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_shield_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_skeletal_claw.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_skeletal_claw.png
new file mode 100644
index 0000000000000000000000000000000000000000..79f4e25891b29a94b389a85cdfa40181fb3a1594
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_skeletal_claw.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_sling_eldoral_last_resort.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_sling_eldoral_last_resort.png
new file mode 100644
index 0000000000000000000000000000000000000000..edcbdc6467c5a126cca8ad16b43743426cf78f98
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_sling_eldoral_last_resort.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_spectral_blade.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_spectral_blade.png
new file mode 100644
index 0000000000000000000000000000000000000000..5fb7117894aa72c52e448800e886190413c6163c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_spectral_blade.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_spellcrusher.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_spellcrusher.png
new file mode 100644
index 0000000000000000000000000000000000000000..4537fa9f29b666329458ad65f108cc851c9d8c19
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_spellcrusher.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_staff_bolbums_big_knocker.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_staff_bolbums_big_knocker.png
new file mode 100644
index 0000000000000000000000000000000000000000..a82d29cf43f28a366aa6a642eb56018d6f96dca3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_staff_bolbums_big_knocker.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_staff_broken_bottom_telos.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_staff_broken_bottom_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..0c66392174325560bd857ab9cfb040a62860d03d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_staff_broken_bottom_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_staff_broken_top_telos.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_staff_broken_top_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..f149c0207b3f8f51edbd9f71b3ece0efad034236
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_staff_broken_top_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_staff_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_staff_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..6dd5444957946b7b1014c2f22af60c065f64c5b0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_staff_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_staff_kors_fall.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_staff_kors_fall.png
new file mode 100644
index 0000000000000000000000000000000000000000..7b0d5469c3a2ad094ad35eabc11ef933bfa084de
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_staff_kors_fall.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_staff_lost_staff_archmage_tarelion.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_staff_lost_staff_archmage_tarelion.png
new file mode 100644
index 0000000000000000000000000000000000000000..efdbdc6be9902e3417f095e0d55840f4bf613cab
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_staff_lost_staff_archmage_tarelion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_staff_of_absorbtion.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_staff_of_absorbtion.png
new file mode 100644
index 0000000000000000000000000000000000000000..9051a325883895e2dac6cb9d0f1cb3614fcc7886
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_staff_of_absorbtion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_staff_of_arcane_supremacy.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_staff_of_arcane_supremacy.png
new file mode 100644
index 0000000000000000000000000000000000000000..5897d7895978a82ad6f0f55d8e582f9abaebf6e2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_staff_of_arcane_supremacy.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_staff_of_destruction.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_staff_of_destruction.png
new file mode 100644
index 0000000000000000000000000000000000000000..f607ce1df1263ee220d54b2f6cef3b0f2eee7a13
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_staff_of_destruction.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_staff_penitence.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_staff_penitence.png
new file mode 100644
index 0000000000000000000000000000000000000000..3a61df02ec28bacc39cee375233bdf01f439f171
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_staff_penitence.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_staff_voice_of_telos.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_staff_voice_of_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..4dc7aeaebe00a8047a55cc58ad2b47bb15140486
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_staff_voice_of_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_storm_fury.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_storm_fury.png
new file mode 100644
index 0000000000000000000000000000000000000000..a1cd8c39c45de7183253126c717742e2c723bceb
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_storm_fury.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_stormlash.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_stormlash.png
new file mode 100644
index 0000000000000000000000000000000000000000..2354dfaf46c5bf4c723497feb54df9d66c7e670a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_stormlash.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_surefire.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_surefire.png
new file mode 100644
index 0000000000000000000000000000000000000000..1c35017e3c0d3f1b1eac4274b2a8478758e21fcf
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_surefire.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_telos_spire_of_power.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_telos_spire_of_power.png
new file mode 100644
index 0000000000000000000000000000000000000000..49e1f639455716f0175009e23634adaa2e696a08
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_telos_spire_of_power.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_thaloren_tree_longbow.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_thaloren_tree_longbow.png
new file mode 100644
index 0000000000000000000000000000000000000000..978129fe5419e3d6f67c77ba82d066256367042a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_thaloren_tree_longbow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_trident_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_trident_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..abc7d21e7460ebad8c38d4f6a591f5041b875eef
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_trident_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_umbral_razor.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_umbral_razor.png
new file mode 100644
index 0000000000000000000000000000000000000000..184bfec1af6ccff284d76e49b1163f138e135257
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_umbral_razor.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_unstoppable_mauler.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_unstoppable_mauler.png
new file mode 100644
index 0000000000000000000000000000000000000000..a387d345ab5b3b7071229794a54685d945eb365c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_unstoppable_mauler.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_voratun_hammer_of_the_deep_bellow.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_voratun_hammer_of_the_deep_bellow.png
new file mode 100644
index 0000000000000000000000000000000000000000..6e69813fe0cc4f11d67e055d3d37595c4e90f911
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_voratun_hammer_of_the_deep_bellow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_warmaster_gnargs_murderblade.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_warmaster_gnargs_murderblade.png
new file mode 100644
index 0000000000000000000000000000000000000000..a738d187aa23225f8f9f377661ddbe20c4f891a7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_warmaster_gnargs_murderblade.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_whip_of_urh_rok.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_whip_of_urh_rok.png
new file mode 100644
index 0000000000000000000000000000000000000000..6871fb558cd8912f605ca9319e1630be0287ea1c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_whip_of_urh_rok.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_whip_scorpions_tail.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_whip_scorpions_tail.png
new file mode 100644
index 0000000000000000000000000000000000000000..7fe4fb863abf6d4db66fa87a6be221111b567eb1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_whip_scorpions_tail.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_writhing_essence_of_nightmares.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_writhing_essence_of_nightmares.png
new file mode 100644
index 0000000000000000000000000000000000000000..0f4a4c86793a74149a105cdc27665fb4537c684e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/left_writhing_essence_of_nightmares.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/light_armour_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/light_armour_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..f8bc0c6b0d0a3bb5a78c36444bb5c06678dcfa73
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/light_armour_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/malslek_the_accursed_hat.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/malslek_the_accursed_hat.png
new file mode 100644
index 0000000000000000000000000000000000000000..072578500c8fc0559a0699321e869bb1e72a1b9b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/malslek_the_accursed_hat.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/masochism.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/masochism.png
new file mode 100644
index 0000000000000000000000000000000000000000..bf8d679ae6e5a6154f9e71f54888748319d9dfcc
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/masochism.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/massive_armour_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/massive_armour_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..3217b691e11f3aee3cc9420ab8f6dbfa723ee6c5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/massive_armour_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/omniscience.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/omniscience.png
new file mode 100644
index 0000000000000000000000000000000000000000..43274f6a7efe1dd7b35acee6856a98a837031e79
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/omniscience.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/plate_armor_of_the_king.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/plate_armor_of_the_king.png
new file mode 100644
index 0000000000000000000000000000000000000000..bb3965c048824d10b5467a04db2407448c637d18
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/plate_armor_of_the_king.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/plate_of_the_blackened_mind.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/plate_of_the_blackened_mind.png
new file mode 100644
index 0000000000000000000000000000000000000000..e6debd3abe7585774ce73a1b42758ab047518562
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/plate_of_the_blackened_mind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/pouch_of_the_subconscious.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/pouch_of_the_subconscious.png
new file mode 100644
index 0000000000000000000000000000000000000000..881c1b51b068dd86157855b70920c929258c2b30
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/pouch_of_the_subconscious.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/quiver_of_domination.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/quiver_of_domination.png
new file mode 100644
index 0000000000000000000000000000000000000000..a8068c26dcf4564448a1a76392839c072146e44b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/quiver_of_domination.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/quiver_of_the_sun.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/quiver_of_the_sun.png
new file mode 100644
index 0000000000000000000000000000000000000000..8c73f4885030403c6d7f8a0eae9c4b6f19c7424d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/quiver_of_the_sun.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/radiance_behind.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/radiance_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..a8b0b21c6344be58ca6456edf18151fe67dcf525
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/radiance_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/radiance_hood.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/radiance_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..da103aacc98231168759ba94e99199751220d7fb
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/radiance_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/radiance_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/radiance_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..91746244d8c0f8f93636bd364a2e4190fb6c4576
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/radiance_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_1Haxe_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_1Haxe_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..b083430b6cb0ee506fb6494b3a3afdf9d4408a49
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_1Haxe_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_1Hmace_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_1Hmace_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..42303d59e545f0f74b41b8641933e78de2426842
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_1Hmace_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_1Hsword_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_1Hsword_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..218631098a3f9a6c3b032ef604f6beef2471336c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_1Hsword_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_2Haxe_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_2Haxe_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..5c15de6ee10caaf78fffdf773eee64e72767e4e8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_2Haxe_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_2Hmace_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_2Hmace_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..8c0365eedef37108a72e771b9a53e6a6bdf6036d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_2Hmace_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_2Hsword_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_2Hsword_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..db0ca919607f21d3e922b02f96290874459e5787
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_2Hsword_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_amethyst_of_sanctuary.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_amethyst_of_sanctuary.png
new file mode 100644
index 0000000000000000000000000000000000000000..e95a4ae75075dc9c4deda3d5a08cfa1bae08a298
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_amethyst_of_sanctuary.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_awaken_staff_of_absorbtion.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_awaken_staff_of_absorbtion.png
new file mode 100644
index 0000000000000000000000000000000000000000..3c8cbb360a01ae8e1cd24dc425991ff92a10c98a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_awaken_staff_of_absorbtion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_blighted_maul.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_blighted_maul.png
new file mode 100644
index 0000000000000000000000000000000000000000..a5d7767d8c2583443b8568a67c2029d434bcb742
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_blighted_maul.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_bloomsoul.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_bloomsoul.png
new file mode 100644
index 0000000000000000000000000000000000000000..e7ee94061750ac58af723a7725925503bab416de
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_bloomsoul.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_borosks_hate.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_borosks_hate.png
new file mode 100644
index 0000000000000000000000000000000000000000..eefdf422d9752099d65ab76d23209d3800bcee12
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_borosks_hate.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_bow_corpsebow.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_bow_corpsebow.png
new file mode 100644
index 0000000000000000000000000000000000000000..fa9ea74bbd75d3fd2b0f2a11af55ccc8fd439d60
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_bow_corpsebow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_bow_epochs_curve.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_bow_epochs_curve.png
new file mode 100644
index 0000000000000000000000000000000000000000..69d5ac13bb67c59433c3027b32eb5704cbd1325c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_bow_epochs_curve.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_champions_will.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_champions_will.png
new file mode 100644
index 0000000000000000000000000000000000000000..3c188d97e4308babcb92a14d9aa6f3b9f4a6bce0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_champions_will.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_colaryem.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_colaryem.png
new file mode 100644
index 0000000000000000000000000000000000000000..efe568b44f805d99e54e9d8245301eab88e3eacd
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_colaryem.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_core_of_the_forge.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_core_of_the_forge.png
new file mode 100644
index 0000000000000000000000000000000000000000..45059807788d675c92dc5024348091cafa28d940
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_core_of_the_forge.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_corpus_2.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_corpus_2.png
new file mode 100644
index 0000000000000000000000000000000000000000..4c492ff70950b9be043b7c1c4b60c2977b4bb02d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_corpus_2.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_crystal_shard.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_crystal_shard.png
new file mode 100644
index 0000000000000000000000000000000000000000..4a6b94349e29c04635d90e1dc8a6b5327d2c1546
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_crystal_shard.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_dagger_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_dagger_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..48ab2702cc7d0e97c821539074680261dc1f388c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_dagger_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_dream_malleus.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_dream_malleus.png
new file mode 100644
index 0000000000000000000000000000000000000000..a64baa67619ed830bae7c9bda1c4bdc7a417fc70
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_dream_malleus.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_eclipse.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_eclipse.png
new file mode 100644
index 0000000000000000000000000000000000000000..65c12a3a56f4a2629f514c18dee3a262a209804f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_eclipse.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_eyals_will.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_eyals_will.png
new file mode 100644
index 0000000000000000000000000000000000000000..9240709122bc7a5d11263738cc90a71085b45d25
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_eyals_will.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_eye_of_the_wyrm.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_eye_of_the_wyrm.png
new file mode 100644
index 0000000000000000000000000000000000000000..cbf5ded4b97637f09731420933009b72641db362
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_eye_of_the_wyrm.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_focus_whip.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_focus_whip.png
new file mode 100644
index 0000000000000000000000000000000000000000..d9afb596f9e80ead262ccb9027c30f8776dbf1cc
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_focus_whip.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_genocide.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_genocide.png
new file mode 100644
index 0000000000000000000000000000000000000000..903518fca0e2ad0d3f5ff70e3107566010cde2cd
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_genocide.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_gravitational_staff.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_gravitational_staff.png
new file mode 100644
index 0000000000000000000000000000000000000000..aa8ace058772937dc9d0e08c8ccd647a67dd476f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_gravitational_staff.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_great_caller.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_great_caller.png
new file mode 100644
index 0000000000000000000000000000000000000000..9e9749c16acc6dc60857a4c1bb9623605258c552
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_great_caller.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_guidance.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_guidance.png
new file mode 100644
index 0000000000000000000000000000000000000000..ca1337664dad48c4bc2eca6370038527df09ef58
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_guidance.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_hareskin_sling.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_hareskin_sling.png
new file mode 100644
index 0000000000000000000000000000000000000000..7bfa39f69a9b4b1d2c7954b026978b68fb0bd7d2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_hareskin_sling.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_hydras_bite.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_hydras_bite.png
new file mode 100644
index 0000000000000000000000000000000000000000..11f0d5b3ec3af73da3a16dcb6500c94c8742c24f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_hydras_bite.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_latafayn.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_latafayn.png
new file mode 100644
index 0000000000000000000000000000000000000000..0def0e081f4ad5c72277c3609778596ce1af82a3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_latafayn.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_merkuls_second_eye.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_merkuls_second_eye.png
new file mode 100644
index 0000000000000000000000000000000000000000..2f169bb4d7863f2231c01a4a528a689caf5f7a04
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_merkuls_second_eye.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_nexus_of_the_way.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_nexus_of_the_way.png
new file mode 100644
index 0000000000000000000000000000000000000000..eb5a0154d55753ae16beaa1e87108d90ee54fb98
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_nexus_of_the_way.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_nithans_force.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_nithans_force.png
new file mode 100644
index 0000000000000000000000000000000000000000..7e6026b5d73c379e7eaa395a7c6e511cc3b71138
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_nithans_force.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_obliterator.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_obliterator.png
new file mode 100644
index 0000000000000000000000000000000000000000..0169d67916a2f24fc7781e8b27727e72f98a1e96
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_obliterator.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_oozing_heart.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_oozing_heart.png
new file mode 100644
index 0000000000000000000000000000000000000000..42b3f10342225c92e27c78622a92b6cfd4a40f3f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_oozing_heart.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_psionic_fury.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_psionic_fury.png
new file mode 100644
index 0000000000000000000000000000000000000000..ad124e1f0129eadf46471ca9c2756494ff955c8f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_psionic_fury.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_rod_of_sarrilon.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_rod_of_sarrilon.png
new file mode 100644
index 0000000000000000000000000000000000000000..b18d41d7b489d3d305751525804b7ad14215599f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_rod_of_sarrilon.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_sceptre_of_the_archlich.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_sceptre_of_the_archlich.png
new file mode 100644
index 0000000000000000000000000000000000000000..1968301b41cff5e44f2a6b554ccfd6a8de34ba54
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_sceptre_of_the_archlich.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_serpents_glare.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_serpents_glare.png
new file mode 100644
index 0000000000000000000000000000000000000000..1f0fc1330f7f58843b39164a90b04f55c8c1b7ec
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_serpents_glare.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_shield_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_shield_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..32ba2a920e34b58903f2247c996d5133d6a3e3c8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_shield_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_skeletal_claw.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_skeletal_claw.png
new file mode 100644
index 0000000000000000000000000000000000000000..4c4636336ce60c5efe6640b62103d0b77a45d0c4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_skeletal_claw.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_sling_eldoral_last_resort.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_sling_eldoral_last_resort.png
new file mode 100644
index 0000000000000000000000000000000000000000..86ee6709dbf646467130670be3d4a943482ee8e3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_sling_eldoral_last_resort.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_spectral_blade.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_spectral_blade.png
new file mode 100644
index 0000000000000000000000000000000000000000..72a63b8763389990f3341fe5768afd3d1ca3fdee
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_spectral_blade.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_spellcrusher.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_spellcrusher.png
new file mode 100644
index 0000000000000000000000000000000000000000..9c613129e99f7fbbe2c4b9f4ac41939e74ad3303
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_spellcrusher.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_staff_bolbums_big_knocker.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_staff_bolbums_big_knocker.png
new file mode 100644
index 0000000000000000000000000000000000000000..200d6a649e65801f01a77537a36cc5cc1abee58b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_staff_bolbums_big_knocker.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_staff_broken_bottom_telos.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_staff_broken_bottom_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..6bec1f91e9cfe8ae61c1811fcff7775fcc7e199c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_staff_broken_bottom_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_staff_broken_top_telos.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_staff_broken_top_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..e41822182544021406742430f6c166d4cd7c6d80
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_staff_broken_top_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_staff_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_staff_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..5e18cd4dee9e9973bd0ef3652221c5b3e53bf974
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_staff_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_staff_kors_fall.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_staff_kors_fall.png
new file mode 100644
index 0000000000000000000000000000000000000000..cd603bb4b8824b7ad9ffa510357486df4bed41b7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_staff_kors_fall.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_staff_lost_staff_archmage_tarelion.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_staff_lost_staff_archmage_tarelion.png
new file mode 100644
index 0000000000000000000000000000000000000000..a5166cfa9b3da7047013083f4cd35f0aec7058b1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_staff_lost_staff_archmage_tarelion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_staff_of_absorbtion.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_staff_of_absorbtion.png
new file mode 100644
index 0000000000000000000000000000000000000000..4f7d8a70f57f8345de65289b516ea2c70ba17009
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_staff_of_absorbtion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_staff_of_arcane_supremacy.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_staff_of_arcane_supremacy.png
new file mode 100644
index 0000000000000000000000000000000000000000..034602703c9529f2cf4bf03395979cbd67ebbea4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_staff_of_arcane_supremacy.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_staff_of_destruction.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_staff_of_destruction.png
new file mode 100644
index 0000000000000000000000000000000000000000..3d05bd8ea5fe6f4041a8d4b74564a953a439b58b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_staff_of_destruction.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_staff_penitence.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_staff_penitence.png
new file mode 100644
index 0000000000000000000000000000000000000000..ab393baf9d194f2efddd04a698a084dec358ce20
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_staff_penitence.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_staff_voice_of_telos.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_staff_voice_of_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..18dfcef72003fc027bf4a7ec8b1db7fdd6567f66
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_staff_voice_of_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_storm_fury.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_storm_fury.png
new file mode 100644
index 0000000000000000000000000000000000000000..017b50ed19935813c684c209b214e7cab5777bee
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_storm_fury.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_stormlash.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_stormlash.png
new file mode 100644
index 0000000000000000000000000000000000000000..7e9f6ae80f94313001dbd91ec26b4f3afbdb7970
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_stormlash.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_surefire.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_surefire.png
new file mode 100644
index 0000000000000000000000000000000000000000..912361cda0949a17d52ba5394eaf6999b52949dd
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_surefire.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_telos_spire_of_power.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_telos_spire_of_power.png
new file mode 100644
index 0000000000000000000000000000000000000000..01458e5604fb4d23fc020e8c4157a91905a5bdbf
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_telos_spire_of_power.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_thaloren_tree_longbow.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_thaloren_tree_longbow.png
new file mode 100644
index 0000000000000000000000000000000000000000..8c7bf8158c1e2bec4eb50d48423c0abeb5279290
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_thaloren_tree_longbow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_trident_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_trident_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..8dc45d09460d4fe53f49a44f6807505d7330c6f3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_trident_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_umbral_razor.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_umbral_razor.png
new file mode 100644
index 0000000000000000000000000000000000000000..32d1573beb71dde63ebe302efd328c19f28b0aa4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_umbral_razor.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_unstoppable_mauler.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_unstoppable_mauler.png
new file mode 100644
index 0000000000000000000000000000000000000000..f5aa25887dae8f1a292c7e655ec9e60c1c1bfa0d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_unstoppable_mauler.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_voratun_hammer_of_the_deep_bellow.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_voratun_hammer_of_the_deep_bellow.png
new file mode 100644
index 0000000000000000000000000000000000000000..733bd7c3254886bb8a89a84e2aef6ea518dc5153
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_voratun_hammer_of_the_deep_bellow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_warmaster_gnargs_murderblade.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_warmaster_gnargs_murderblade.png
new file mode 100644
index 0000000000000000000000000000000000000000..22ade7a97ce2617e4421ae752cd1822432d7ae7e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_warmaster_gnargs_murderblade.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_whip_of_urh_rok.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_whip_of_urh_rok.png
new file mode 100644
index 0000000000000000000000000000000000000000..d32da3f43a809311fb5ae033e372a598b1a3bc90
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_whip_of_urh_rok.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_whip_scorpions_tail.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_whip_scorpions_tail.png
new file mode 100644
index 0000000000000000000000000000000000000000..ea0b0bbb284339e2641924eba9cb50683eab217e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_whip_scorpions_tail.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_writhing_essence_of_nightmares.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_writhing_essence_of_nightmares.png
new file mode 100644
index 0000000000000000000000000000000000000000..16b8e59a2536b01410970e34dfc38ecaa659a42f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/right_writhing_essence_of_nightmares.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/robe_black_robe.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/robe_black_robe.png
new file mode 100644
index 0000000000000000000000000000000000000000..fa5a46c27110e23b03d58cf923cc3333b0ee9376
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/robe_black_robe.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/robe_firewalker.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/robe_firewalker.png
new file mode 100644
index 0000000000000000000000000000000000000000..9615843668bd60ffd0c823e7234ee1e07d1c5afd
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/robe_firewalker.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/robe_of_force.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/robe_of_force.png
new file mode 100644
index 0000000000000000000000000000000000000000..2fc6d6a4df084f792a612197114eaacfd6230b8c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/robe_of_force.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/robe_spider_silk_robe_spydre.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/robe_spider_silk_robe_spydre.png
new file mode 100644
index 0000000000000000000000000000000000000000..4cb41034e00038d77d30f2cc2e3637d550b63420
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/robe_spider_silk_robe_spydre.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/robe_temporal_augmentation_robe.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/robe_temporal_augmentation_robe.png
new file mode 100644
index 0000000000000000000000000000000000000000..616a27dbdc75a12852512fdf47744bafb2aed49a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/robe_temporal_augmentation_robe.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/robe_vestments_of_the_conclave.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/robe_vestments_of_the_conclave.png
new file mode 100644
index 0000000000000000000000000000000000000000..854de8c2c4c8a67fe249bbafe6b28b624e19e574
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/robe_vestments_of_the_conclave.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/robes_of_deflection.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/robes_of_deflection.png
new file mode 100644
index 0000000000000000000000000000000000000000..731b501ca98b3cbdfe940fd2e263f293bf94845b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/robes_of_deflection.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/scale_mail_of_kroltar.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/scale_mail_of_kroltar.png
new file mode 100644
index 0000000000000000000000000000000000000000..07215debf224a34383197a8cb882b85e4a46e724
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/scale_mail_of_kroltar.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/scorched_boots.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/scorched_boots.png
new file mode 100644
index 0000000000000000000000000000000000000000..ccfcb2a2837e9c384e45140f5e2557b944d5d1de
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/scorched_boots.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/scorpion_gauntlets.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/scorpion_gauntlets.png
new file mode 100644
index 0000000000000000000000000000000000000000..36742af8a1359ff62e615b08625442b1f66c5a5c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/scorpion_gauntlets.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/serpentine_cloak_behind.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/serpentine_cloak_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..ddf351159a4e183da3a9a82dd4ffebb69c8a992b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/serpentine_cloak_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/serpentine_cloak_hood.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/serpentine_cloak_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..1452149f7c4dfb32a0b85abf9e4f4e577bd0c469
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/serpentine_cloak_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/serpentine_cloak_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/serpentine_cloak_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..8a4547697d8b3fa76a863cb12a4d7f3330dae177
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/serpentine_cloak_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/shifting_boots.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/shifting_boots.png
new file mode 100644
index 0000000000000000000000000000000000000000..1bb992a2c6a5b7f149074bfb0babca297a2e3260
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/shifting_boots.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/silk_current.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/silk_current.png
new file mode 100644
index 0000000000000000000000000000000000000000..f6731654985b46849b4c519520e7d479bfb1686d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/silk_current.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/sludgegrip.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/sludgegrip.png
new file mode 100644
index 0000000000000000000000000000000000000000..58219b308d93d0314d25c178b3b5a90268083584
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/sludgegrip.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/snow_giant_arm_wraps.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/snow_giant_arm_wraps.png
new file mode 100644
index 0000000000000000000000000000000000000000..0cf828e0e17c06c7899147635d8cb088b68dc34e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/snow_giant_arm_wraps.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/spellhunt_remnants.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/spellhunt_remnants.png
new file mode 100644
index 0000000000000000000000000000000000000000..a4aa72e9fc0aeab96a4eeacb21b34a720b9b3d7b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/spellhunt_remnants.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/star_shot.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/star_shot.png
new file mode 100644
index 0000000000000000000000000000000000000000..cee9aff8432afec743a35d76df299665eb8c280c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/star_shot.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/storm_bringers_gauntlets.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/storm_bringers_gauntlets.png
new file mode 100644
index 0000000000000000000000000000000000000000..3cdc67ed431954011478824cd5cc6d9311f6c86d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/storm_bringers_gauntlets.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/terrasca.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/terrasca.png
new file mode 100644
index 0000000000000000000000000000000000000000..694297890fd7d51c01808708e3244d14ac0f4989
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/terrasca.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/the_calm.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/the_calm.png
new file mode 100644
index 0000000000000000000000000000000000000000..5b4d19885f58b986a999a80510b7d51f58f09b85
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/the_calm.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/the_inner_eye.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/the_inner_eye.png
new file mode 100644
index 0000000000000000000000000000000000000000..d007e5b0d39bd5baab1ec37a3b4375cc5b02cc67
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/the_inner_eye.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/the_titans_quiver.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/the_titans_quiver.png
new file mode 100644
index 0000000000000000000000000000000000000000..639fccb2c0457dfa536ab24b4c17a8c4b8255e95
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/the_titans_quiver.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/the_untouchable.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/the_untouchable.png
new file mode 100644
index 0000000000000000000000000000000000000000..245befa580fc4d4a4c0fd63774e19b7b7c7d21a1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/the_untouchable.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/the_warped_boots.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/the_warped_boots.png
new file mode 100644
index 0000000000000000000000000000000000000000..8e45ff315ccc83ae3f4537a7eeee3ad9887238e0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/the_warped_boots.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/unbreakable_greaves.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/unbreakable_greaves.png
new file mode 100644
index 0000000000000000000000000000000000000000..61606287b3ed263be2ac43107216c9d8069668ad
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/unbreakable_greaves.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/ureslaks_molted_scales_behind.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/ureslaks_molted_scales_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..ac57aca5d8f642ba446265738cddc69483b7d89e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/ureslaks_molted_scales_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/ureslaks_molted_scales_hood.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/ureslaks_molted_scales_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..1c1f9409d0ab8b21e9a5c3079f70275a0d6c73b6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/ureslaks_molted_scales_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/ureslaks_molted_scales_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/ureslaks_molted_scales_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..003017ea02d8ed7547b326d94cec49b80559a8a4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/ureslaks_molted_scales_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/void_quiver.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/void_quiver.png
new file mode 100644
index 0000000000000000000000000000000000000000..66e7ea86775828cecb1e5087b64e31dd2febc22c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/void_quiver.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/wanderers_rest.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/wanderers_rest.png
new file mode 100644
index 0000000000000000000000000000000000000000..e9c63fc7c1d32080a2f7f49aeb483ea8eed6009b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/wanderers_rest.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/wind_worn_shot.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/wind_worn_shot.png
new file mode 100644
index 0000000000000000000000000000000000000000..4139bbfb688f68741fc43b1937d645379f2122bf
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/wind_worn_shot.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/wizard_hat_of_arcane_understanding.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/wizard_hat_of_arcane_understanding.png
new file mode 100644
index 0000000000000000000000000000000000000000..651bc72bb8daee2fc5f1026d75866933c62ec49d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/wizard_hat_of_arcane_understanding.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/wooden_cuirass.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/wooden_cuirass.png
index 9df8ee638913781eb050b25b6bc1c2dc21677db6..8aaf59576271290a5dbcc9294b892d0c33a4ef23 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/wooden_cuirass.png and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/wooden_cuirass.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/wrap_of_stone_behind.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/wrap_of_stone_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..0dff13df538c8153209febd3c75e9e030cc68fd5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/wrap_of_stone_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/wrap_of_stone_hood.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/wrap_of_stone_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..d32e51222c7cee5e29cd7b43147ccd14c585d650
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/wrap_of_stone_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/wrap_of_stone_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/wrap_of_stone_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..664c819c52df018a6a27f623d08eb21f898ee5eb
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/wrap_of_stone_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/wyrmbreath.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/wyrmbreath.png
new file mode 100644
index 0000000000000000000000000000000000000000..e03cf93ca4fd4b29f47b5597104bbeb2f288d433
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/wyrmbreath.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/yaldan_baoth.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/yaldan_baoth.png
new file mode 100644
index 0000000000000000000000000000000000000000..bb133c6ab45dc54cb970ede84bad8615de448624
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/yaldan_baoth.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/yeek_fur_robe.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/yeek_fur_robe.png
new file mode 100644
index 0000000000000000000000000000000000000000..1ae965ac334c8653891a8f37bb74d4772da91266
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/special/yeek_fur_robe.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/upper_body_25.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/upper_body_25.png
index 5eb3d08facda4d1d2887b91c525f96b6d30d9a42..25f0a7547cab65325163e9e79f5f40a666832404 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/upper_body_25.png and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/upper_body_25.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/upper_body_29.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/upper_body_29.png
new file mode 100644
index 0000000000000000000000000000000000000000..9deb9ed8ffe2df8fa17382a7ccf3fd368794b82d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/upper_body_29.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/upper_body_30.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/upper_body_30.png
new file mode 100644
index 0000000000000000000000000000000000000000..363f495a4391de5a8b8b1b03261879d508c5eee0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/upper_body_30.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/upper_body_31.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/upper_body_31.png
new file mode 100644
index 0000000000000000000000000000000000000000..1ccb10a78e809f1c13f2b735c9d3992827ce0a7a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/upper_body_31.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/upper_body_32.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/upper_body_32.png
new file mode 100644
index 0000000000000000000000000000000000000000..a5852ae7247aef6aa2ea6b42fb1d1d4496ed06a1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/upper_body_32.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/upper_body_33.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/upper_body_33.png
new file mode 100644
index 0000000000000000000000000000000000000000..6705d1cbe9e697072e7f3d1b3badbd10c3ec7724
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/upper_body_33.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/upper_body_34.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/upper_body_34.png
new file mode 100644
index 0000000000000000000000000000000000000000..36e20ff49574cd09f99e5ead53f4cd8e846ec120
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/upper_body_34.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/upper_body_35.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/upper_body_35.png
new file mode 100644
index 0000000000000000000000000000000000000000..8d85c53ee8c03f9d06c878e14fb8cf93f14d01dc
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/upper_body_35.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/upper_body_36.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/upper_body_36.png
new file mode 100644
index 0000000000000000000000000000000000000000..dfc052a19b607811c3ee1ffad52bfb4e48570cec
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/upper_body_36.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/upper_body_37.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/upper_body_37.png
new file mode 100644
index 0000000000000000000000000000000000000000..a533fca497934595d173abb35c85e28ba3442043
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/upper_body_37.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/runic_golem/upper_body_38.png b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/upper_body_38.png
new file mode 100644
index 0000000000000000000000000000000000000000..bd9389963ea2a17f3056e85598e327eec4b8e45b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/runic_golem/upper_body_38.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/cloak_behind_07.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/cloak_behind_07.png
new file mode 100644
index 0000000000000000000000000000000000000000..24db50d51030ea0fc79f6d8add73f3b0c259a48e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/cloak_behind_07.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/cloak_behind_08.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/cloak_behind_08.png
new file mode 100644
index 0000000000000000000000000000000000000000..e023036f261fc904774afbd0f335ced05fd98c9c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/cloak_behind_08.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/cloak_behind_09.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/cloak_behind_09.png
new file mode 100644
index 0000000000000000000000000000000000000000..cf70fc6a66c1be7addb719374e4bd388608256f8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/cloak_behind_09.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/cloak_hood_07.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/cloak_hood_07.png
new file mode 100644
index 0000000000000000000000000000000000000000..ef937a0f4a2c482fafbee1b5bf3a1e08e9c33165
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/cloak_hood_07.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/cloak_hood_08.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/cloak_hood_08.png
new file mode 100644
index 0000000000000000000000000000000000000000..3d40d2610a5c6f168bdb3fa9ea86b9a60da5ddfb
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/cloak_hood_08.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/cloak_hood_09.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/cloak_hood_09.png
new file mode 100644
index 0000000000000000000000000000000000000000..3d700091c479afd3c3e7b94a1e662c4aae87a095
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/cloak_hood_09.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/cloak_shoulder_07.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/cloak_shoulder_07.png
new file mode 100644
index 0000000000000000000000000000000000000000..8ac2527b5dbe484332ed049bb4bba211d41cfba5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/cloak_shoulder_07.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/cloak_shoulder_08.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/cloak_shoulder_08.png
new file mode 100644
index 0000000000000000000000000000000000000000..0a3cc0312b9f955723970b13f995b5d0ba636192
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/cloak_shoulder_08.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/cloak_shoulder_09.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/cloak_shoulder_09.png
new file mode 100644
index 0000000000000000000000000000000000000000..887c628bd7e2796ea7d1df67eb8f555f46f2b6fe
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/cloak_shoulder_09.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/feet_10.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/feet_10.png
new file mode 100644
index 0000000000000000000000000000000000000000..a4069953e5ba46e87c6830c7bffaa9f25a7de41a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/feet_10.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/feet_11.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/feet_11.png
new file mode 100644
index 0000000000000000000000000000000000000000..3077e47bdcc204de7f3351c7d2ed0f5c782ca01a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/feet_11.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/gembag_01.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/gembag_01.png
new file mode 100644
index 0000000000000000000000000000000000000000..77625b6405d545b002f85da33dae5412e920b6be
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/gembag_01.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/gembag_02.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/gembag_02.png
new file mode 100644
index 0000000000000000000000000000000000000000..d865008bc09cbdf1e3ec4f910b5dbea7417bf2c6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/gembag_02.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/gembag_03.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/gembag_03.png
new file mode 100644
index 0000000000000000000000000000000000000000..cce5e634295d3183cf05d56f44afc8d6f94aa175
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/gembag_03.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/gembag_04.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/gembag_04.png
new file mode 100644
index 0000000000000000000000000000000000000000..bd70dc684350156f508394a92d0fc60ec3cb0fae
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/gembag_04.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/gembag_05.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/gembag_05.png
new file mode 100644
index 0000000000000000000000000000000000000000..6c5683b659a0b976d1d0a22bbc17f0660e2217fb
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/gembag_05.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/hands_08.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/hands_08.png
new file mode 100644
index 0000000000000000000000000000000000000000..ca2bf5512e6548a1d36a0ebea6596728da47e448
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/hands_08.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/hands_09.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/hands_09.png
new file mode 100644
index 0000000000000000000000000000000000000000..14a60d5ec7f611fa4e79bbac11b840ff88b1e74a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/hands_09.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/head_19.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/head_19.png
new file mode 100644
index 0000000000000000000000000000000000000000..cd629a5b9bb167d1186b39c0e4412046c0170b69
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/head_19.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/head_20.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/head_20.png
new file mode 100644
index 0000000000000000000000000000000000000000..c0d78815fe04ec8fe937618af4f20d741ff5a832
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/head_20.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/head_21.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/head_21.png
new file mode 100644
index 0000000000000000000000000000000000000000..03f658000977495e10a34268a0245d46a0fc444e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/head_21.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/head_22.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/head_22.png
new file mode 100644
index 0000000000000000000000000000000000000000..321b4e53006b13057c957aaedca3d971d63f00ff
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/head_22.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/head_23.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/head_23.png
new file mode 100644
index 0000000000000000000000000000000000000000..e6cbe2d465c97ca3b65747687a4bb65050e85e8e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/head_23.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/lower_body_14.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/lower_body_14.png
new file mode 100644
index 0000000000000000000000000000000000000000..6f5cf747cbb1c7261de81231128060f370195b9c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/lower_body_14.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/lower_body_15.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/lower_body_15.png
new file mode 100644
index 0000000000000000000000000000000000000000..4058e76a4674d09a1d80e86db4c90a6435d78966
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/lower_body_15.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/lower_body_16.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/lower_body_16.png
new file mode 100644
index 0000000000000000000000000000000000000000..84abdc4762506a1c5246804693ac39ed0a3ddfb4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/lower_body_16.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/lower_body_17.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/lower_body_17.png
new file mode 100644
index 0000000000000000000000000000000000000000..450aba70931d18067d6ae49c12b8b9312d859d1f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/lower_body_17.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/lower_body_18.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/lower_body_18.png
new file mode 100644
index 0000000000000000000000000000000000000000..47b3e1e51094e6f74369f5cbde806c3db63d56c0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/lower_body_18.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/lower_body_19.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/lower_body_19.png
new file mode 100644
index 0000000000000000000000000000000000000000..e67ce1d9ebfaaac050c88985f55c7b7aea23ad79
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/lower_body_19.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/quiver_01.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/quiver_01.png
new file mode 100644
index 0000000000000000000000000000000000000000..cbac374686ed640d790c85ba553ea0bbf0f1d7e9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/quiver_01.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/quiver_02.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/quiver_02.png
new file mode 100644
index 0000000000000000000000000000000000000000..1932ec0b1eb902484d3c87218a3fab490664f03f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/quiver_02.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/quiver_03.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/quiver_03.png
new file mode 100644
index 0000000000000000000000000000000000000000..a2732a1cdd5945692be33b65625251e9b49741ed
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/quiver_03.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/quiver_04.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/quiver_04.png
new file mode 100644
index 0000000000000000000000000000000000000000..380d4c9fd78a6698b41fa18c21a696630e76697a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/quiver_04.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/quiver_05.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/quiver_05.png
new file mode 100644
index 0000000000000000000000000000000000000000..76ab24f21906e818bd72d34c36359e3ef34e0fc6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/quiver_05.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/shotbag_01.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/shotbag_01.png
new file mode 100644
index 0000000000000000000000000000000000000000..5837d98cd1fb076bdcfbf47ba34a1d52a61ee37e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/shotbag_01.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/shotbag_02.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/shotbag_02.png
new file mode 100644
index 0000000000000000000000000000000000000000..1b23702417d8d5654e4dc5bbc1868fc4e41453fe
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/shotbag_02.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/shotbag_03.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/shotbag_03.png
new file mode 100644
index 0000000000000000000000000000000000000000..851c4379bfd9313af5c32d63b8857d29ad2d9ff5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/shotbag_03.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/shotbag_04.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/shotbag_04.png
new file mode 100644
index 0000000000000000000000000000000000000000..1336a13a97e6a15264a854dfb2be7656f533dc50
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/shotbag_04.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/shotbag_05.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/shotbag_05.png
new file mode 100644
index 0000000000000000000000000000000000000000..6a27b0559dfa23d2c911da957e34cfb0f0d7c3e9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/shotbag_05.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/aether_walk.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/aether_walk.png
new file mode 100644
index 0000000000000000000000000000000000000000..e3d2edf30443a8753a53167570e453696cde24d3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/aether_walk.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/arkuls_seige_arrows.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/arkuls_seige_arrows.png
new file mode 100644
index 0000000000000000000000000000000000000000..dbdca94199011e1644ed81cd2427a69e3747af72
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/arkuls_seige_arrows.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/armor_chromatic_harness.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/armor_chromatic_harness.png
new file mode 100644
index 0000000000000000000000000000000000000000..a2d6c95889e0e0cc8b72b7a3d5c198ee367c8ee3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/armor_chromatic_harness.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/armor_cuirass_of_the_thronesmen.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/armor_cuirass_of_the_thronesmen.png
new file mode 100644
index 0000000000000000000000000000000000000000..2b5b6c5bf858fe7e570374294a67f3ed023da8ac
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/armor_cuirass_of_the_thronesmen.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/armor_natures_blessing.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/armor_natures_blessing.png
new file mode 100644
index 0000000000000000000000000000000000000000..fbc8bb2d73e048b6a2afb5b0b4ffe17a38cfb7fd
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/armor_natures_blessing.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/armor_plate_borfasts_cage.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/armor_plate_borfasts_cage.png
new file mode 100644
index 0000000000000000000000000000000000000000..3909783d923c4ce24c9cfe82dc7fed20c8e712ad
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/armor_plate_borfasts_cage.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/armor_rogue_plight.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/armor_rogue_plight.png
new file mode 100644
index 0000000000000000000000000000000000000000..1c998ff82035b2d26a1ecee34096f8685edf8c3a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/armor_rogue_plight.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/behemoth_skin.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/behemoth_skin.png
new file mode 100644
index 0000000000000000000000000000000000000000..0158e3275a35ecd995b887113e9e97f171ae53f1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/behemoth_skin.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/black_cloak_behind.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/black_cloak_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..77c81050c83d7f4289c01e042349d64ac0c5c7de
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/black_cloak_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/black_cloak_hood.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/black_cloak_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..d95547bbbd0d3f16108270a4e8515c47413614d2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/black_cloak_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/black_cloak_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/black_cloak_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..a5781e0f64cb445429eb5f31e93347bf49e452bf
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/black_cloak_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/boots_edens_guile.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/boots_edens_guile.png
new file mode 100644
index 0000000000000000000000000000000000000000..e8d0bf878f662322747f9e294dba7ff5167dae17
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/boots_edens_guile.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/boots_of_the_hunter.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/boots_of_the_hunter.png
new file mode 100644
index 0000000000000000000000000000000000000000..541783fadcde75b62c6ee27a3b615763768a46a4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/boots_of_the_hunter.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/breath_of_eyal.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/breath_of_eyal.png
new file mode 100644
index 0000000000000000000000000000000000000000..ca41d67b9bd0334a8007f48da6054b0c71418375
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/breath_of_eyal.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/cinderfeet.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/cinderfeet.png
new file mode 100644
index 0000000000000000000000000000000000000000..a8b2568cd9debf604f9ed561ad7a96114dea8a5a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/cinderfeet.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/cloak_threads_of_fate_behind.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/cloak_threads_of_fate_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..093d8e5be9253a6260d66aef4830b401cbc6698d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/cloak_threads_of_fate_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/cloak_threads_of_fate_hood.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/cloak_threads_of_fate_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..630300bdde8437656db445429ae767acd6cae5d7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/cloak_threads_of_fate_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/cloak_threads_of_fate_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/cloak_threads_of_fate_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..b7a37de7537eea7b0aa94f83e46ce41bd133c344
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/cloak_threads_of_fate_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/cloak_winds_whisper_behind.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/cloak_winds_whisper_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..06437700da548d0cccb396a5c2f82d70ca327b55
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/cloak_winds_whisper_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/cloak_winds_whisper_hood.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/cloak_winds_whisper_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..36cfbe297b8449f8da8d61b9df5d5605b9ed558f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/cloak_winds_whisper_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/cloak_winds_whisper_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/cloak_winds_whisper_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..60d69dd3573c9213fd547622b788ca62f5b6f4f4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/cloak_winds_whisper_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/cloth_armour_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/cloth_armour_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..bd81d3b65c1d7e64c7e82b60b5883fd223ca0112
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/cloth_armour_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/cloth_of_dreams_behind.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/cloth_of_dreams_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..d76bde36c095bcc8e749949befc4a067cb0b57e3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/cloth_of_dreams_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/cloth_of_dreams_hood.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/cloth_of_dreams_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..7d8347bff31f618d2f02d461f02c813af947ded7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/cloth_of_dreams_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/cloth_of_dreams_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/cloth_of_dreams_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..c0f493b26d99ae53ac9db1a1a20f229be7dc9393
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/cloth_of_dreams_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/corrupted_gaze.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/corrupted_gaze.png
new file mode 100644
index 0000000000000000000000000000000000000000..0af884778b71854fd71d6293d9f47b1b4731901e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/corrupted_gaze.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/crimson_robe.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/crimson_robe.png
new file mode 100644
index 0000000000000000000000000000000000000000..9dba6a5cf9c402726a27c384aaa2517d339d797c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/crimson_robe.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/crown_of_burning_pain.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/crown_of_burning_pain.png
new file mode 100644
index 0000000000000000000000000000000000000000..77a15b70fb736523ff2b2ded7a332d6ca8f80213
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/crown_of_burning_pain.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/crown_of_command.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/crown_of_command.png
new file mode 100644
index 0000000000000000000000000000000000000000..69a1b4c031066f47a3b273a9f35789ec6a29a48a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/crown_of_command.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/crown_of_eternal_night.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/crown_of_eternal_night.png
new file mode 100644
index 0000000000000000000000000000000000000000..2d91f5dc00d26e22f4ad3191d66e22c49aaa5276
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/crown_of_eternal_night.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/crown_of_the_elements.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/crown_of_the_elements.png
new file mode 100644
index 0000000000000000000000000000000000000000..cee951b993100f3b2e14923ca99a747996de5788
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/crown_of_the_elements.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/crystles_astral_bindings.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/crystles_astral_bindings.png
new file mode 100644
index 0000000000000000000000000000000000000000..43b3398e65260f49983b955116881a656b4debd0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/crystles_astral_bindings.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/dakhtuns_gauntlets.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/dakhtuns_gauntlets.png
new file mode 100644
index 0000000000000000000000000000000000000000..f17f50cd1b128c1c823f4956bb339e5c6092422d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/dakhtuns_gauntlets.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/deaths_embrace.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/deaths_embrace.png
new file mode 100644
index 0000000000000000000000000000000000000000..39619505f99fe6b487713761fdd7e6037170ddbc
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/deaths_embrace.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/decayed_visage.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/decayed_visage.png
new file mode 100644
index 0000000000000000000000000000000000000000..adfc4bdc78abc3495452554dc09cc991c02b25bc
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/decayed_visage.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/destalas_scales_behind.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/destalas_scales_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..077655ec30ac100cbd46a41d1d1ae3c591c77f34
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/destalas_scales_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/destalas_scales_whisper_hood.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/destalas_scales_whisper_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..414a174b3408895f42d93c762ce44fbeb81f5751
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/destalas_scales_whisper_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/destalas_scales_whisper_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/destalas_scales_whisper_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..bd3ce441964f12006c9e9bc896e1974bb6c44041
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/destalas_scales_whisper_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/diadem_alettas_diadem.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/diadem_alettas_diadem.png
new file mode 100644
index 0000000000000000000000000000000000000000..4ef686c694fa57803bb1673e5f6bb992d6d61dab
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/diadem_alettas_diadem.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/dragon_helm_of_kroltar.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/dragon_helm_of_kroltar.png
new file mode 100644
index 0000000000000000000000000000000000000000..e7ecdd554af5742165f76a65ef7935a5a170ac2f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/dragon_helm_of_kroltar.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/dragonskull_helmet.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/dragonskull_helmet.png
new file mode 100644
index 0000000000000000000000000000000000000000..3e17bd313fbe4f7270aa464f315f739e091648a4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/dragonskull_helmet.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/eel_skin_armor.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/eel_skin_armor.png
new file mode 100644
index 0000000000000000000000000000000000000000..ff05c18f8bb0c980f96bb83401776d3d10a92c50
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/eel_skin_armor.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/ethereal_embrace_behind.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/ethereal_embrace_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..076595216fa91d61c389358ed1709bb57e87d3e2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/ethereal_embrace_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/ethereal_embrace_hood.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/ethereal_embrace_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..a441848f7935a090d821466e53b1978fae7e55d9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/ethereal_embrace_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/ethereal_embrace_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/ethereal_embrace_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..4da1ccb3c20be73e6eab2f12e8d9e2afbf33f4db
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/ethereal_embrace_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/evermoss_robe.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/evermoss_robe.png
new file mode 100644
index 0000000000000000000000000000000000000000..3e25241a61f4f5f9db03d50175d182554393fcb9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/evermoss_robe.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/eye_of_the_forest.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/eye_of_the_forest.png
new file mode 100644
index 0000000000000000000000000000000000000000..eac8be067139accfbcf3356cb3fd696f7ff33103
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/eye_of_the_forest.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/fist_of_the_destroyer.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/fist_of_the_destroyer.png
new file mode 100644
index 0000000000000000000000000000000000000000..484ee822b222851ab2fe872e31a038cc42769708
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/fist_of_the_destroyer.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/frost_treads.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/frost_treads.png
new file mode 100644
index 0000000000000000000000000000000000000000..9fa1a737afaccc2555fdca87e479f5358bd64f2a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/frost_treads.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/frozen_shards.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/frozen_shards.png
new file mode 100644
index 0000000000000000000000000000000000000000..d3112c64fe11755026c0912887b62a3289d349fc
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/frozen_shards.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/frozen_shroud_behind.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/frozen_shroud_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..fdcf41b232c41a0225c5e2588d13964987bd79a7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/frozen_shroud_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/frozen_shroud_hood.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/frozen_shroud_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..73feb33f748fabbd8efe7ef498df8f2542c89f1d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/frozen_shroud_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/frozen_shroud_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/frozen_shroud_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..c75f8ee050c38da6c6c4ec82e3e4f389db8599ac
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/frozen_shroud_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/gauntlets_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/gauntlets_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..4f9d27a66187cc0d445d07151e830f130260fade
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/gauntlets_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/gloves_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/gloves_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..cd997e1ac0652f594d251305b9a9f3d2629b8ab3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/gloves_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/gloves_flamewrought.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/gloves_flamewrought.png
new file mode 100644
index 0000000000000000000000000000000000000000..9b052ba320ba7ec72f13b0114fdd17b183e58b60
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/gloves_flamewrought.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/gloves_of_the_firm_hand.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/gloves_of_the_firm_hand.png
new file mode 100644
index 0000000000000000000000000000000000000000..d12c4913767b11bef3f614a68e4848ebedcd465c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/gloves_of_the_firm_hand.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/grip_of_death.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/grip_of_death.png
index 7cbc3671600b38766b1bd5a239f88fd20f8941f2..2b87ed607b0df6e2a12a0ab55b9125101e39bf28 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/grip_of_death.png and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/grip_of_death.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/guise_of_the_hated_behind.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/guise_of_the_hated_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..f0cc672969a13a795e3cbfafc372bb3e9562d03f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/guise_of_the_hated_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/guise_of_the_hated_hood.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/guise_of_the_hated_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..32da211e44709906f52bf4d8d2b80913ce040d99
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/guise_of_the_hated_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/guise_of_the_hated_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/guise_of_the_hated_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..24e0e0b3b7baaca1865f77277f46e3f3e2ba2646
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/guise_of_the_hated_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/hand_of_the_worldshaper.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/hand_of_the_worldshaper.png
new file mode 100644
index 0000000000000000000000000000000000000000..8d3c2a12e316208514825bf63b6fc2d6d53c3d25
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/hand_of_the_worldshaper.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/harkor_zun_gauntlets.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/harkor_zun_gauntlets.png
new file mode 100644
index 0000000000000000000000000000000000000000..49381cbe449da0d4761be5d30589e62269902754
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/harkor_zun_gauntlets.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/heavy_armour_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/heavy_armour_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..66e1fb3bef66185f1d69efd0df819c74578bbbb3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/heavy_armour_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/helm_of_garkul.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/helm_of_garkul.png
new file mode 100644
index 0000000000000000000000000000000000000000..a71f36481bdb8c702a152b4bf1ac6c0265c02f77
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/helm_of_garkul.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/helm_of_the_dwarven_emperors.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/helm_of_the_dwarven_emperors.png
new file mode 100644
index 0000000000000000000000000000000000000000..c802b4d80bc1231a9a9e169c8c173fd34df28aac
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/helm_of_the_dwarven_emperors.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/hornet_stingers.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/hornet_stingers.png
new file mode 100644
index 0000000000000000000000000000000000000000..468923d6c00bd604fdbd934cf8082520ef85a901
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/hornet_stingers.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/iron_mail_of_bloodletting.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/iron_mail_of_bloodletting.png
new file mode 100644
index 0000000000000000000000000000000000000000..2461bda0a8e600ff26b509bb3a07a84ec1e8e4d7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/iron_mail_of_bloodletting.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_1Haxe_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_1Haxe_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..03f61b54c058cab6b7b1ef45dfedbef757a38dc1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_1Haxe_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_1Hmace_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_1Hmace_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..83e2daf75afe8b58f976bea84a8d4bef8d12d744
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_1Hmace_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_1Hsword_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_1Hsword_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..9eb8760a010310c83142527e33a78abe59baa48a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_1Hsword_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_2Haxe_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_2Haxe_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..43ee0f21c35345a44dcf4ff234d1f4c62d26e2dd
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_2Haxe_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_2Hmace_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_2Hmace_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..f2b418bfb7f67576245f455de2725f9a478a7a23
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_2Hmace_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_2Hsword_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_2Hsword_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..c7233bf4ac49873541a602024d6b329d17c6312f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_2Hsword_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_amethyst_of_sanctuary.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_amethyst_of_sanctuary.png
new file mode 100644
index 0000000000000000000000000000000000000000..d1718df03297930e924135be6eb1fe4cdf2aba21
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_amethyst_of_sanctuary.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_awaken_staff_of_absorbtion.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_awaken_staff_of_absorbtion.png
new file mode 100644
index 0000000000000000000000000000000000000000..b64c803b8897157815de20b0b52e719bf70231ea
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_awaken_staff_of_absorbtion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_blighted_maul.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_blighted_maul.png
new file mode 100644
index 0000000000000000000000000000000000000000..0def0738f6f4cb38838b8c8c954d5636569b2081
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_blighted_maul.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_bloomsoul.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_bloomsoul.png
new file mode 100644
index 0000000000000000000000000000000000000000..264b7ced210450ce5e2163279812b333a0cce5f3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_bloomsoul.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_borosks_hate.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_borosks_hate.png
new file mode 100644
index 0000000000000000000000000000000000000000..0718dcb74d0503d092861b2805fb7b0a3ffaf245
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_borosks_hate.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_bow_corpsebow.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_bow_corpsebow.png
new file mode 100644
index 0000000000000000000000000000000000000000..9baeef46d8c8c1d1bc4f17d820b330b411d9a873
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_bow_corpsebow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_bow_epochs_curve.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_bow_epochs_curve.png
new file mode 100644
index 0000000000000000000000000000000000000000..16dc2a1b379851e97b389516f038cdfef298cb0b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_bow_epochs_curve.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_champions_will.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_champions_will.png
new file mode 100644
index 0000000000000000000000000000000000000000..a7c7d1a1bb7c2ba820ac60f123e3fbdaa7ff1d82
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_champions_will.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_colaryem.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_colaryem.png
new file mode 100644
index 0000000000000000000000000000000000000000..1eff0695f0e2953d3ae4a30e5d2b87d4ac2facc3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_colaryem.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_core_of_the_forge.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_core_of_the_forge.png
new file mode 100644
index 0000000000000000000000000000000000000000..455b9a6a3791bb9effca697788b1172ff0c2969a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_core_of_the_forge.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_corpus_2.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_corpus_2.png
new file mode 100644
index 0000000000000000000000000000000000000000..88ab55fdb6d0099bdf74d8da429daaddc67c2976
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_corpus_2.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_crystal_shard.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_crystal_shard.png
new file mode 100644
index 0000000000000000000000000000000000000000..874d1c5beadda2a24f3bb6bdca06f68ca22e6a58
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_crystal_shard.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_dagger_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_dagger_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..147c66c4ffa366a10d8075a7653565a62b5736a3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_dagger_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_dream_malleus.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_dream_malleus.png
new file mode 100644
index 0000000000000000000000000000000000000000..32d44130d847cdf96571830c1ef0cb13fb921add
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_dream_malleus.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_eclipse.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_eclipse.png
new file mode 100644
index 0000000000000000000000000000000000000000..2ae6613a1318a505fc120fdad223248dc8feb6c8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_eclipse.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_eyals_will.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_eyals_will.png
new file mode 100644
index 0000000000000000000000000000000000000000..0871709ed3c46d7d763fc5620718a981313af7c8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_eyals_will.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_eye_of_the_wyrm.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_eye_of_the_wyrm.png
new file mode 100644
index 0000000000000000000000000000000000000000..787a39a4101c9901f92792f9d79c599dc5f4b7b9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_eye_of_the_wyrm.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_focus_whip.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_focus_whip.png
new file mode 100644
index 0000000000000000000000000000000000000000..66050e82e8a46e88a4daf9227b36ffe8b31d8bba
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_focus_whip.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_genocide.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_genocide.png
new file mode 100644
index 0000000000000000000000000000000000000000..fdc1dd7a3c4c0d1f30f09e7765ab1da8d0b38c84
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_genocide.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_gravitational_staff.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_gravitational_staff.png
new file mode 100644
index 0000000000000000000000000000000000000000..8d856188d6d1d4cb350ad718c835501a65afcecd
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_gravitational_staff.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_great_caller.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_great_caller.png
new file mode 100644
index 0000000000000000000000000000000000000000..44390f2c6abf60f9be8bcd4237ca0e0b30809b15
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_great_caller.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_guidance.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_guidance.png
new file mode 100644
index 0000000000000000000000000000000000000000..78a8b83c9c1802c14b94c2fc3c2b7cf7fc98e79b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_guidance.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_hareskin_sling.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_hareskin_sling.png
new file mode 100644
index 0000000000000000000000000000000000000000..242385589d05d059f12ae6a9453245f9f425a9b4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_hareskin_sling.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_hydras_bite.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_hydras_bite.png
new file mode 100644
index 0000000000000000000000000000000000000000..b9b80cb94d8b309c4b497b997ba4f8bae8c890c3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_hydras_bite.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_latafayn.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_latafayn.png
new file mode 100644
index 0000000000000000000000000000000000000000..ffdb4e7918fdaeee6c31d50e667d6ef873cbaba1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_latafayn.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_merkuls_second_eye.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_merkuls_second_eye.png
new file mode 100644
index 0000000000000000000000000000000000000000..ceff56006da72be62dc5c5ba739ed0ee5fd76350
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_merkuls_second_eye.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_nexus_of_the_way.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_nexus_of_the_way.png
new file mode 100644
index 0000000000000000000000000000000000000000..f76339d5d59d770f893a247d86eb9eca47113725
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_nexus_of_the_way.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_nithans_force.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_nithans_force.png
new file mode 100644
index 0000000000000000000000000000000000000000..5e6a2249dc31eebaa06f8ab173cce1d9bfb06166
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_nithans_force.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_obliterator.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_obliterator.png
new file mode 100644
index 0000000000000000000000000000000000000000..8283b417225da124aafc011e8bf7d5802d0fffce
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_obliterator.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_oozing_heart.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_oozing_heart.png
new file mode 100644
index 0000000000000000000000000000000000000000..c99172405e62e910395846e9f21e9ecd2689c2fe
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_oozing_heart.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_psionic_fury.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_psionic_fury.png
new file mode 100644
index 0000000000000000000000000000000000000000..bf92aef560b583ce19be750c15a8ddfc95ae0320
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_psionic_fury.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_rod_of_sarrilon.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_rod_of_sarrilon.png
new file mode 100644
index 0000000000000000000000000000000000000000..9e8d71d56d8a515050f2a9dfe222a2b4e0797dcf
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_rod_of_sarrilon.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_sceptre_of_the_archlich.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_sceptre_of_the_archlich.png
new file mode 100644
index 0000000000000000000000000000000000000000..311b0925a62092190fbc0d505e641fd193a7455e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_sceptre_of_the_archlich.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_serpents_glare.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_serpents_glare.png
new file mode 100644
index 0000000000000000000000000000000000000000..30929af23e6e7201bfd360f6e13122739db4a026
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_serpents_glare.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_shield_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_shield_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..1f14e1f08eefee3bba3af25e87290da2c43b8e0a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_shield_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_skeletal_claw.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_skeletal_claw.png
new file mode 100644
index 0000000000000000000000000000000000000000..64b165e040c97e914780b43744527feb2634207d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_skeletal_claw.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_sling_eldoral_last_resort.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_sling_eldoral_last_resort.png
new file mode 100644
index 0000000000000000000000000000000000000000..be2abaf0915c5f583447dcf48e40d45228b6c858
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_sling_eldoral_last_resort.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_spectral_blade.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_spectral_blade.png
new file mode 100644
index 0000000000000000000000000000000000000000..8e71294bd9290f519883db2768148b2cbec03d6f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_spectral_blade.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_spellcrusher.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_spellcrusher.png
new file mode 100644
index 0000000000000000000000000000000000000000..dfbeaf28d938bf002f55792e2c1e930127c10149
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_spellcrusher.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_staff_bolbums_big_knocker.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_staff_bolbums_big_knocker.png
new file mode 100644
index 0000000000000000000000000000000000000000..d56f32d37c080171f88b34be35a07e3220981ddc
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_staff_bolbums_big_knocker.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_staff_broken_bottom_telos.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_staff_broken_bottom_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..530c2f816834519e2a3805d7b3def5c9447a9b0b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_staff_broken_bottom_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_staff_broken_top_telos.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_staff_broken_top_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..df88ef55cf0cf8c2fda3b6ed8c72c9bc031ec4d9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_staff_broken_top_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_staff_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_staff_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..6da3fec2fc71335be05442cb6c2d3c1a97eb652e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_staff_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_staff_kors_fall.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_staff_kors_fall.png
new file mode 100644
index 0000000000000000000000000000000000000000..34e6b1117e8ccf3f574eebf6ab5cb40a9cbf5c0f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_staff_kors_fall.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_staff_lost_staff_archmage_tarelion.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_staff_lost_staff_archmage_tarelion.png
new file mode 100644
index 0000000000000000000000000000000000000000..232a89722ddc7e11b74f9fe4d823e30f109433ab
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_staff_lost_staff_archmage_tarelion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_staff_of_absorbtion.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_staff_of_absorbtion.png
new file mode 100644
index 0000000000000000000000000000000000000000..9eedb7ed8047e8017184408e280d926aff46c255
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_staff_of_absorbtion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_staff_of_arcane_supremacy.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_staff_of_arcane_supremacy.png
new file mode 100644
index 0000000000000000000000000000000000000000..a890d93d6de6f5ae6b5b6827ae1b0b56c9d162c5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_staff_of_arcane_supremacy.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_staff_of_destruction.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_staff_of_destruction.png
new file mode 100644
index 0000000000000000000000000000000000000000..d53d0e2ce9c20d891e34c33605ef08bea6db4f23
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_staff_of_destruction.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_staff_penitence.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_staff_penitence.png
new file mode 100644
index 0000000000000000000000000000000000000000..15e3d7409ff801dc2c0f149dc84b5dc92e7aab48
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_staff_penitence.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_staff_voice_of_telos.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_staff_voice_of_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..510401cdb3383d5cf8c86068dc23bd7a2ae1f82e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_staff_voice_of_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_storm_fury.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_storm_fury.png
new file mode 100644
index 0000000000000000000000000000000000000000..a07e12d2f75a94cb1c31f3a0c99f50dad596fbc5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_storm_fury.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_stormlash.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_stormlash.png
new file mode 100644
index 0000000000000000000000000000000000000000..2df927918a44add3f1f6bf4b23f4c5e81a5ab25a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_stormlash.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_surefire.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_surefire.png
new file mode 100644
index 0000000000000000000000000000000000000000..096d1db46cd7496ec11f8e9b59e6c911eb8f5549
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_surefire.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_telos_spire_of_power.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_telos_spire_of_power.png
new file mode 100644
index 0000000000000000000000000000000000000000..842d4cb183b33a110d9ad04ea6c1ac398183ef27
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_telos_spire_of_power.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_thaloren_tree_longbow.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_thaloren_tree_longbow.png
new file mode 100644
index 0000000000000000000000000000000000000000..ef9ad707d32017b56c9936022148b57fb1f31abd
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_thaloren_tree_longbow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_trident_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_trident_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..76a9d10922b2c0f86a995d2b7c0183bc3ed44ef3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_trident_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_umbral_razor.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_umbral_razor.png
new file mode 100644
index 0000000000000000000000000000000000000000..d557de63795035ba8de0846e4e2ab4deef566c90
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_umbral_razor.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_unstoppable_mauler.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_unstoppable_mauler.png
new file mode 100644
index 0000000000000000000000000000000000000000..35e5c9b19ee1726e5d1ffff69262e9a8df980212
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_unstoppable_mauler.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_voratun_hammer_of_the_deep_bellow.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_voratun_hammer_of_the_deep_bellow.png
new file mode 100644
index 0000000000000000000000000000000000000000..4c33d4e72e0e515c11915b2d623c15178c494f28
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_voratun_hammer_of_the_deep_bellow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_warmaster_gnargs_murderblade.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_warmaster_gnargs_murderblade.png
new file mode 100644
index 0000000000000000000000000000000000000000..2c72558abb04f4f5bd23640b010906b341977a57
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_warmaster_gnargs_murderblade.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_whip_of_urh_rok.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_whip_of_urh_rok.png
new file mode 100644
index 0000000000000000000000000000000000000000..8d679f85dfc817c349787a2f9453ddb741458bcd
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_whip_of_urh_rok.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_whip_scorpions_tail.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_whip_scorpions_tail.png
new file mode 100644
index 0000000000000000000000000000000000000000..66fdd6808978c3644a4f2a70a7b137a202dd5b32
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_whip_scorpions_tail.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_writhing_essence_of_nightmares.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_writhing_essence_of_nightmares.png
new file mode 100644
index 0000000000000000000000000000000000000000..5a9846b3c1767a90b88dc26bc2a5583c09e675fb
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/left_writhing_essence_of_nightmares.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/light_armour_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/light_armour_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..c4ee48914b8e1698ef8a56aca7435abc844b9c22
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/light_armour_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/malslek_the_accursed_hat.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/malslek_the_accursed_hat.png
new file mode 100644
index 0000000000000000000000000000000000000000..c171e2d8a8c1ae8424da80794d7c48be3b8fd684
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/malslek_the_accursed_hat.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/masochism.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/masochism.png
new file mode 100644
index 0000000000000000000000000000000000000000..cc2cb8d6a5af0e8009555e0a9c04f45ab6da6f5e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/masochism.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/massive_armour_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/massive_armour_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..8c2e781d70639fd44e10e1496f9c50be40fcf25a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/massive_armour_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/omniscience.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/omniscience.png
new file mode 100644
index 0000000000000000000000000000000000000000..45ed19d161994ab2b187aca326d0b362145bd347
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/omniscience.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/plate_armor_of_the_king.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/plate_armor_of_the_king.png
new file mode 100644
index 0000000000000000000000000000000000000000..007bed3b03a46fa78a084db4e989e607b8ae7ede
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/plate_armor_of_the_king.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/plate_of_the_blackened_mind.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/plate_of_the_blackened_mind.png
new file mode 100644
index 0000000000000000000000000000000000000000..27fa95e28f2342b77b49205c47524f8cd0790c54
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/plate_of_the_blackened_mind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/pouch_of_the_subconscious.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/pouch_of_the_subconscious.png
new file mode 100644
index 0000000000000000000000000000000000000000..5517b5111e94a857a1316fc05e1b3499782f3dfc
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/pouch_of_the_subconscious.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/quiver_of_domination.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/quiver_of_domination.png
new file mode 100644
index 0000000000000000000000000000000000000000..8ba30025c59f5686956b54dc62683423a7324812
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/quiver_of_domination.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/quiver_of_the_sun.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/quiver_of_the_sun.png
new file mode 100644
index 0000000000000000000000000000000000000000..a49bdfaa0664b290335a01e07228f96458002167
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/quiver_of_the_sun.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/radiance_behind.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/radiance_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..05690ab9ddc3db29d6176e340ac499293beb14e0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/radiance_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/radiance_hood.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/radiance_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..af4a723715f27b42a0339e29ef65501249976e49
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/radiance_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/radiance_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/radiance_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..17747599e1101f9775ada361bf7febb5afe8500e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/radiance_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_1Haxe_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_1Haxe_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..12b7d34f66be57945ebe2b2526cd2e4484edc5be
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_1Haxe_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_1Hmace_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_1Hmace_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..f9842a6d05acb7cf6d639795d8cee2800eff0aae
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_1Hmace_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_1Hsword_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_1Hsword_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..0b3aef5916e7e47dc446014a82e190fa6e272b9e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_1Hsword_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_2Haxe_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_2Haxe_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..64c6418327e2a746a3291a23bea2bfe3fcd3bbc9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_2Haxe_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_2Hmace_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_2Hmace_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..790206ba8f7f088c86801cea52306ae9b4094fd1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_2Hmace_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_2Hsword_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_2Hsword_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..0abe07d186a4d35f6becb7be80648679208ebd29
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_2Hsword_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_amethyst_of_sanctuary.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_amethyst_of_sanctuary.png
new file mode 100644
index 0000000000000000000000000000000000000000..5b4935649189dfec553dcad2c2fe687a89756741
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_amethyst_of_sanctuary.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_awaken_staff_of_absorbtion.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_awaken_staff_of_absorbtion.png
new file mode 100644
index 0000000000000000000000000000000000000000..fd86673c3a60d4af8dc4a534094c09754e8a8b44
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_awaken_staff_of_absorbtion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_blighted_maul.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_blighted_maul.png
new file mode 100644
index 0000000000000000000000000000000000000000..9a8b308e060c91e833aa96d0d1ae1ea82b2c085b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_blighted_maul.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_bloomsoul.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_bloomsoul.png
new file mode 100644
index 0000000000000000000000000000000000000000..2be2ed3ec5cfe70a4639f0ee9f14a6293dedeb7e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_bloomsoul.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_borosks_hate.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_borosks_hate.png
new file mode 100644
index 0000000000000000000000000000000000000000..f302f80a15a8348f12228ba7c0006ec98b453efe
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_borosks_hate.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_bow_corpsebow.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_bow_corpsebow.png
new file mode 100644
index 0000000000000000000000000000000000000000..592006766c18e9271f2f8f1605aea8c43e3be135
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_bow_corpsebow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_bow_epochs_curve.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_bow_epochs_curve.png
new file mode 100644
index 0000000000000000000000000000000000000000..476a4d48e92197e6a616f749e0c53b9dcfdf9967
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_bow_epochs_curve.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_champions_will.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_champions_will.png
new file mode 100644
index 0000000000000000000000000000000000000000..d5b0864848310066e42f1734c634835b556ad16e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_champions_will.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_colaryem.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_colaryem.png
new file mode 100644
index 0000000000000000000000000000000000000000..ce3aaeb798e3a6f184fd51d9cddda536fcc5a1b6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_colaryem.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_core_of_the_forge.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_core_of_the_forge.png
new file mode 100644
index 0000000000000000000000000000000000000000..4adb07093d3cadbba21f8826934723782cb7292f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_core_of_the_forge.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_corpus_2.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_corpus_2.png
new file mode 100644
index 0000000000000000000000000000000000000000..c87c42c31281e9ac71039f06d0129571cd79507f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_corpus_2.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_crystal_shard.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_crystal_shard.png
new file mode 100644
index 0000000000000000000000000000000000000000..fb4dbb6ed65231ddc76a2d5f11ee45706cfbec4f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_crystal_shard.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_dagger_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_dagger_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..687eb9f74c8efde9353661f6232506c19c5172d3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_dagger_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_dream_malleus.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_dream_malleus.png
new file mode 100644
index 0000000000000000000000000000000000000000..33cfe5d81261e1e050213538b39ba126c837b4b6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_dream_malleus.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_eclipse.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_eclipse.png
new file mode 100644
index 0000000000000000000000000000000000000000..ed5ad5d567caa5cb893fa09ec78d3157375f6294
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_eclipse.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_eyals_will.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_eyals_will.png
new file mode 100644
index 0000000000000000000000000000000000000000..66a478df10d86189aec18784ffb7076684c2d5dd
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_eyals_will.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_eye_of_the_wyrm.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_eye_of_the_wyrm.png
new file mode 100644
index 0000000000000000000000000000000000000000..1cba5afd4038ed7ba0438d332412d931a8abe7bc
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_eye_of_the_wyrm.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_focus_whip.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_focus_whip.png
new file mode 100644
index 0000000000000000000000000000000000000000..70587242f11a5e7cfbaa932d898c9cd1522fb451
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_focus_whip.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_genocide.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_genocide.png
new file mode 100644
index 0000000000000000000000000000000000000000..6339343bc09b13d3f3ef92037c06551e3a2cbc9d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_genocide.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_gravitational_staff.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_gravitational_staff.png
new file mode 100644
index 0000000000000000000000000000000000000000..509e335785d655fe1596b1227e3dd3c05ff5d255
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_gravitational_staff.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_great_caller.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_great_caller.png
new file mode 100644
index 0000000000000000000000000000000000000000..6b5398c0eb7404b3e7a24f2f53a10d918f98da0a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_great_caller.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_guidance.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_guidance.png
new file mode 100644
index 0000000000000000000000000000000000000000..1c4af14879d444e9fad02a96638a7a5951d9f937
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_guidance.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_hareskin_sling.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_hareskin_sling.png
new file mode 100644
index 0000000000000000000000000000000000000000..7e1433e84daf6e6d75c7fa665a37997234eb0e02
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_hareskin_sling.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_hydras_bite.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_hydras_bite.png
new file mode 100644
index 0000000000000000000000000000000000000000..4d07eb510e5814a2b62c91a7f2c79142059cdde4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_hydras_bite.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_latafayn.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_latafayn.png
new file mode 100644
index 0000000000000000000000000000000000000000..27b2e54dbc0923c559e47d08b4e67eb31b35fd43
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_latafayn.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_merkuls_second_eye.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_merkuls_second_eye.png
new file mode 100644
index 0000000000000000000000000000000000000000..04d188d73cf40c64cfc1f5799e74ae16504dd25a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_merkuls_second_eye.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_nexus_of_the_way.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_nexus_of_the_way.png
new file mode 100644
index 0000000000000000000000000000000000000000..616fa9eff61ec9668cf6aaf58b91d55e94c67348
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_nexus_of_the_way.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_nithans_force.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_nithans_force.png
new file mode 100644
index 0000000000000000000000000000000000000000..7edbb8f44e873c96a225be6ecd271295514b7798
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_nithans_force.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_obliterator.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_obliterator.png
new file mode 100644
index 0000000000000000000000000000000000000000..c3b49e138e41b6f6d65c2c9d04462876039938d6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_obliterator.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_oozing_heart.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_oozing_heart.png
new file mode 100644
index 0000000000000000000000000000000000000000..94be3d768e38061893da809844a4612f47221848
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_oozing_heart.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_psionic_fury.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_psionic_fury.png
new file mode 100644
index 0000000000000000000000000000000000000000..c5cdba4d36e1644e3135e61c22d55e2ddec1fc6c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_psionic_fury.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_rod_of_sarrilon.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_rod_of_sarrilon.png
new file mode 100644
index 0000000000000000000000000000000000000000..504382b4f18172e3b29a0ca826aa39b8b5713e31
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_rod_of_sarrilon.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_sceptre_of_the_archlich.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_sceptre_of_the_archlich.png
new file mode 100644
index 0000000000000000000000000000000000000000..51d3612af59fc0b15740286ec19feb0eb43a9b77
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_sceptre_of_the_archlich.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_serpents_glare.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_serpents_glare.png
new file mode 100644
index 0000000000000000000000000000000000000000..c004fb269d58f57377b63fb82b0d72cbd5836619
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_serpents_glare.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_shield_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_shield_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..7e1e77cc585a1597aa08b7ede5772e111c146c88
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_shield_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_skeletal_claw.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_skeletal_claw.png
new file mode 100644
index 0000000000000000000000000000000000000000..466f247477875c826bf084fb2ce2461d54fc3826
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_skeletal_claw.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_sling_eldoral_last_resort.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_sling_eldoral_last_resort.png
new file mode 100644
index 0000000000000000000000000000000000000000..ed1ff63660c60c6e72fc6d811fee9f2785527708
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_sling_eldoral_last_resort.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_spectral_blade.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_spectral_blade.png
new file mode 100644
index 0000000000000000000000000000000000000000..226e307c378cff7170dc266dde61eacd2e6acf0d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_spectral_blade.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_spellcrusher.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_spellcrusher.png
new file mode 100644
index 0000000000000000000000000000000000000000..8347ec3a6d93559a5387a157dc6bbca04ba11193
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_spellcrusher.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_staff_bolbums_big_knocker.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_staff_bolbums_big_knocker.png
new file mode 100644
index 0000000000000000000000000000000000000000..bda42fd71f68acb1841c6414f6c0cc8e5703d8b3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_staff_bolbums_big_knocker.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_staff_broken_bottom_telos.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_staff_broken_bottom_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..f6f3e69caabe55f9cd4d6be9588dc18bb65e0b4b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_staff_broken_bottom_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_staff_broken_top_telos.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_staff_broken_top_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..65178442ec9528b1e88b749aaaa8b174a612f8fb
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_staff_broken_top_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_staff_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_staff_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..813ff299797dab0ac29c7d706b8cf03de48a1374
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_staff_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_staff_kors_fall.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_staff_kors_fall.png
new file mode 100644
index 0000000000000000000000000000000000000000..756071cb8d92d3de55807bd92326ab21db6b2055
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_staff_kors_fall.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_staff_lost_staff_archmage_tarelion.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_staff_lost_staff_archmage_tarelion.png
new file mode 100644
index 0000000000000000000000000000000000000000..7b3d80fb9a239539e5b098de6bd8cd43b4447462
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_staff_lost_staff_archmage_tarelion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_staff_of_absorbtion.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_staff_of_absorbtion.png
new file mode 100644
index 0000000000000000000000000000000000000000..fe6b4d388e97e0c80179c7c689192ab33279c374
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_staff_of_absorbtion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_staff_of_arcane_supremacy.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_staff_of_arcane_supremacy.png
new file mode 100644
index 0000000000000000000000000000000000000000..ea7716486faa3df45f3aab986f457830914e02e8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_staff_of_arcane_supremacy.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_staff_of_destruction.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_staff_of_destruction.png
new file mode 100644
index 0000000000000000000000000000000000000000..ac49f86b1e317a5a132a9c90d59b5985630fdbc1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_staff_of_destruction.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_staff_penitence.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_staff_penitence.png
new file mode 100644
index 0000000000000000000000000000000000000000..cb8218ec0989d63ea5b8a95f637bd539da7936d0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_staff_penitence.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_staff_voice_of_telos.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_staff_voice_of_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..758d17d89904d0e8e46f3d9667b8c48ec8f19cea
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_staff_voice_of_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_storm_fury.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_storm_fury.png
new file mode 100644
index 0000000000000000000000000000000000000000..88081bfc360d4d908a95f50453338aa7f268bc08
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_storm_fury.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_stormlash.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_stormlash.png
new file mode 100644
index 0000000000000000000000000000000000000000..63583c7063a229b506d9f629cd56bbe3596cdfb0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_stormlash.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_surefire.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_surefire.png
new file mode 100644
index 0000000000000000000000000000000000000000..4ee0d06569c47d50fb98ec0ef4eee78a0f78dd1a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_surefire.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_telos_spire_of_power.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_telos_spire_of_power.png
new file mode 100644
index 0000000000000000000000000000000000000000..91c3bb002bac16a089d74967bea376effa22a0f7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_telos_spire_of_power.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_thaloren_tree_longbow.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_thaloren_tree_longbow.png
new file mode 100644
index 0000000000000000000000000000000000000000..999a003e973b2060b08f5dd43ba64205147a89de
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_thaloren_tree_longbow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_trident_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_trident_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..2605b76f9533f2f1f5782d1884ce8ad209eb2f14
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_trident_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_umbral_razor.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_umbral_razor.png
new file mode 100644
index 0000000000000000000000000000000000000000..b9fcce739abcf2b0ec5eef1d9890d42b74d0927d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_umbral_razor.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_unstoppable_mauler.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_unstoppable_mauler.png
new file mode 100644
index 0000000000000000000000000000000000000000..6cb5bf04684bd968e6e6f8a6f241fd7348890819
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_unstoppable_mauler.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_voratun_hammer_of_the_deep_bellow.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_voratun_hammer_of_the_deep_bellow.png
new file mode 100644
index 0000000000000000000000000000000000000000..42eff6430255854a45af773257fe289d9f1f74a0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_voratun_hammer_of_the_deep_bellow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_warmaster_gnargs_murderblade.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_warmaster_gnargs_murderblade.png
new file mode 100644
index 0000000000000000000000000000000000000000..d2a1994f39b5df49de9aecadde4d152e77aa0653
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_warmaster_gnargs_murderblade.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_whip_of_urh_rok.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_whip_of_urh_rok.png
new file mode 100644
index 0000000000000000000000000000000000000000..c971289a5162efe776ba0107c16232e989c773d4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_whip_of_urh_rok.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_whip_scorpions_tail.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_whip_scorpions_tail.png
new file mode 100644
index 0000000000000000000000000000000000000000..befb42bbafaed58e1fcad685d425d5a52ed8f02c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_whip_scorpions_tail.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_writhing_essence_of_nightmares.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_writhing_essence_of_nightmares.png
new file mode 100644
index 0000000000000000000000000000000000000000..9f27b91bfb692c1c85f6fcc1601fa275d53702bb
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/right_writhing_essence_of_nightmares.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/robe_black_robe.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/robe_black_robe.png
new file mode 100644
index 0000000000000000000000000000000000000000..b7abb1a2436bd1116bd47449405ca854b3315594
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/robe_black_robe.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/robe_firewalker.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/robe_firewalker.png
new file mode 100644
index 0000000000000000000000000000000000000000..5f1a5377750353f586488c0727a477636f30f956
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/robe_firewalker.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/robe_of_force.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/robe_of_force.png
new file mode 100644
index 0000000000000000000000000000000000000000..10c951eaf1f8f3428017ee8802f49395ac5b1631
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/robe_of_force.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/robe_spider_silk_robe_spydre.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/robe_spider_silk_robe_spydre.png
new file mode 100644
index 0000000000000000000000000000000000000000..18eb21bbfa0e4a40912de64ce68efa2064b6a224
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/robe_spider_silk_robe_spydre.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/robe_temporal_augmentation_robe.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/robe_temporal_augmentation_robe.png
new file mode 100644
index 0000000000000000000000000000000000000000..14794907275fa77056f2360d10903cd5ce445631
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/robe_temporal_augmentation_robe.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/robe_vestments_of_the_conclave.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/robe_vestments_of_the_conclave.png
new file mode 100644
index 0000000000000000000000000000000000000000..1e625f610093ef873bac9beabb4985685abae6f1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/robe_vestments_of_the_conclave.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/robes_of_deflection.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/robes_of_deflection.png
new file mode 100644
index 0000000000000000000000000000000000000000..eee0b13213f605599fe0c007602f10283ae24b09
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/robes_of_deflection.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/scale_mail_of_kroltar.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/scale_mail_of_kroltar.png
new file mode 100644
index 0000000000000000000000000000000000000000..1587c4d45da52022c2df2cecded020a1dd3279d6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/scale_mail_of_kroltar.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/scorched_boots.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/scorched_boots.png
new file mode 100644
index 0000000000000000000000000000000000000000..b0a305e40689830190b7810501d80455541d866e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/scorched_boots.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/scorpion_gauntlets.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/scorpion_gauntlets.png
new file mode 100644
index 0000000000000000000000000000000000000000..54a05aea6428a732489097d6bfda15596d5ac863
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/scorpion_gauntlets.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/serpentine_cloak_behind.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/serpentine_cloak_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..96de7a2f5dda4759df3243e035523d2af0f19845
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/serpentine_cloak_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/serpentine_cloak_hood.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/serpentine_cloak_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..ed834892c60e63c9dfbaedf7ea337dfb45226050
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/serpentine_cloak_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/serpentine_cloak_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/serpentine_cloak_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..a55d0362dbb50776ccfbd8d187ed15fc6aef023a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/serpentine_cloak_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/shifting_boots.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/shifting_boots.png
new file mode 100644
index 0000000000000000000000000000000000000000..e336ea6489d9aa23ac5eca164b75994d0efb7002
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/shifting_boots.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/silk_current.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/silk_current.png
new file mode 100644
index 0000000000000000000000000000000000000000..4beb2f0c261a37492262ab6e9fbd014bb1900c8a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/silk_current.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/sludgegrip.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/sludgegrip.png
new file mode 100644
index 0000000000000000000000000000000000000000..4dfd0a4a2083b01279f81496139f4d938f8553a1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/sludgegrip.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/snow_giant_arm_wraps.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/snow_giant_arm_wraps.png
new file mode 100644
index 0000000000000000000000000000000000000000..99b55998762f88f2541d29b9ba83624f44070896
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/snow_giant_arm_wraps.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/spellhunt_remnants.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/spellhunt_remnants.png
new file mode 100644
index 0000000000000000000000000000000000000000..82741e4bb2c5948dd48ff4faf0717aba6d13da35
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/spellhunt_remnants.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/star_shot.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/star_shot.png
new file mode 100644
index 0000000000000000000000000000000000000000..b36058917bd77be1fae286059b48b20774d98a35
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/star_shot.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/storm_bringers_gauntlets.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/storm_bringers_gauntlets.png
new file mode 100644
index 0000000000000000000000000000000000000000..1ab0b251bb3a93b6b4599e6908c29f4c476420b0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/storm_bringers_gauntlets.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/terrasca.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/terrasca.png
new file mode 100644
index 0000000000000000000000000000000000000000..d7bfa4e195df4b272163bc32bf4bf109d64b41c0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/terrasca.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/the_calm.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/the_calm.png
new file mode 100644
index 0000000000000000000000000000000000000000..6ab515be9676a424f56c99f327213c5de53a2558
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/the_calm.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/the_inner_eye.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/the_inner_eye.png
new file mode 100644
index 0000000000000000000000000000000000000000..dcf328db5089de3db14fd766a271b04e007a3997
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/the_inner_eye.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/the_titans_quiver.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/the_titans_quiver.png
new file mode 100644
index 0000000000000000000000000000000000000000..ac3296b29b5b25b1590dbec15d7ea7dc1c313a63
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/the_titans_quiver.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/the_untouchable.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/the_untouchable.png
new file mode 100644
index 0000000000000000000000000000000000000000..f0ed046b669b4ff98f656592a6faa2c5b64aea2f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/the_untouchable.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/the_warped_boots.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/the_warped_boots.png
new file mode 100644
index 0000000000000000000000000000000000000000..d23e35e1372aeff7d7850289908e952f1641a1e2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/the_warped_boots.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/unbreakable_greaves.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/unbreakable_greaves.png
new file mode 100644
index 0000000000000000000000000000000000000000..e261198875de5214898f9d3498e4c36711b5ab61
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/unbreakable_greaves.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/ureslaks_molted_scales_behind.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/ureslaks_molted_scales_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..1dfbfab1b726c649eb255e05f9283d203bae3539
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/ureslaks_molted_scales_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/ureslaks_molted_scales_hood.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/ureslaks_molted_scales_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..53c80a8b69f146dae03615a5e743c795997f4862
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/ureslaks_molted_scales_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/ureslaks_molted_scales_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/ureslaks_molted_scales_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..13e4c8b682e9927493c32ccd58fa56c30bf6c32f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/ureslaks_molted_scales_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/void_quiver.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/void_quiver.png
new file mode 100644
index 0000000000000000000000000000000000000000..2ae6690e66c0163729137a7fe73efb4cd2caab6e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/void_quiver.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/wanderers_rest.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/wanderers_rest.png
new file mode 100644
index 0000000000000000000000000000000000000000..3fd0987ca554a20d8c403499bbb69692f9d258f8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/wanderers_rest.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/wind_worn_shot.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/wind_worn_shot.png
new file mode 100644
index 0000000000000000000000000000000000000000..0ca404e5da1e99f284d085ffad5fc2c996fdc237
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/wind_worn_shot.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/wizard_hat_of_arcane_understanding.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/wizard_hat_of_arcane_understanding.png
new file mode 100644
index 0000000000000000000000000000000000000000..f8bf15a6ab34dd92c6c114c356826b9642a0ee35
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/wizard_hat_of_arcane_understanding.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/wooden_cuirass.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/wooden_cuirass.png
index 76477fcf4938d5fe5708f0c6e62ed9f37f57164c..9e7ccbb404559d34caef8efe0510aa0368731856 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/wooden_cuirass.png and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/wooden_cuirass.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/wrap_of_stone_behind.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/wrap_of_stone_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..c384edc4ce2193225210c3061218aafb7cc193c7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/wrap_of_stone_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/wrap_of_stone_hood.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/wrap_of_stone_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..40660c4b23bd04636f3d6dd36b29dc29c7f63299
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/wrap_of_stone_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/wrap_of_stone_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/wrap_of_stone_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..4797780c3ff8cf83a8a134446b2376aceeb5a8c2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/wrap_of_stone_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/wyrmbreath.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/wyrmbreath.png
new file mode 100644
index 0000000000000000000000000000000000000000..0e29fd8e385dc7c8b06d62551deb2d9e6253a281
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/wyrmbreath.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/yaldan_baoth.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/yaldan_baoth.png
new file mode 100644
index 0000000000000000000000000000000000000000..1cda157b3e068b4ac70937a9445f2c6f5aeaecf4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/yaldan_baoth.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/yeek_fur_robe.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/yeek_fur_robe.png
new file mode 100644
index 0000000000000000000000000000000000000000..c4ba295369bfc98948ce1be94aa0fc003c87d2f6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/special/yeek_fur_robe.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/upper_body_25.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/upper_body_25.png
index a7e01a169fc34a2e386d90fde448ff03a40194fa..5400ee96c600fe23da3155208f5dc17f490340a9 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/skeleton/upper_body_25.png and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/upper_body_25.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/upper_body_29.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/upper_body_29.png
new file mode 100644
index 0000000000000000000000000000000000000000..a25e43d3d8475810c8da2c12a5e72a6b47a9aa6d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/upper_body_29.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/upper_body_30.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/upper_body_30.png
new file mode 100644
index 0000000000000000000000000000000000000000..ca95b53a9704e2ffb38e089df9acdd40cd81bc21
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/upper_body_30.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/upper_body_31.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/upper_body_31.png
new file mode 100644
index 0000000000000000000000000000000000000000..968c5f486593cc69e38604f40ed4fa44a2acc3ce
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/upper_body_31.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/upper_body_32.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/upper_body_32.png
new file mode 100644
index 0000000000000000000000000000000000000000..1039f6082928b8aac5ba0cbf613b67426a38565d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/upper_body_32.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/upper_body_33.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/upper_body_33.png
new file mode 100644
index 0000000000000000000000000000000000000000..559b60068b58d563b0c3a7c4b175efb73669be94
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/upper_body_33.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/upper_body_34.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/upper_body_34.png
new file mode 100644
index 0000000000000000000000000000000000000000..d816f110acdd1b4cb79dd6673d9c707e17a28dd8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/upper_body_34.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/upper_body_35.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/upper_body_35.png
new file mode 100644
index 0000000000000000000000000000000000000000..883ac7759de260239af7e9290266715e5209191a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/upper_body_35.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/upper_body_36.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/upper_body_36.png
new file mode 100644
index 0000000000000000000000000000000000000000..26c7f8bf7e386486455118f27eb075f6e0dc1bdc
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/upper_body_36.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/upper_body_37.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/upper_body_37.png
new file mode 100644
index 0000000000000000000000000000000000000000..4e3377070fda6bdc9c2680b4df4113d9ce773282
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/upper_body_37.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/skeleton/upper_body_38.png b/game/modules/tome/data/gfx/shockbolt/player/skeleton/upper_body_38.png
new file mode 100644
index 0000000000000000000000000000000000000000..cbe0abc3a4728a4a693908f88f2af7244b2a2762
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/skeleton/upper_body_38.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/cloak_behind_07.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/cloak_behind_07.png
new file mode 100644
index 0000000000000000000000000000000000000000..ae66f83b8848f61d154bac02d0a13d4e4e3a7c74
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/cloak_behind_07.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/cloak_behind_08.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/cloak_behind_08.png
new file mode 100644
index 0000000000000000000000000000000000000000..94c64c9a3189c85d8253d6930a8acfd64a15c5da
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/cloak_behind_08.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/cloak_behind_09.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/cloak_behind_09.png
new file mode 100644
index 0000000000000000000000000000000000000000..a96bf972b6c5cca8e33fc6e14e06ac527d7969da
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/cloak_behind_09.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/cloak_hood_07.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/cloak_hood_07.png
new file mode 100644
index 0000000000000000000000000000000000000000..725c7ab2076402b2fb8627fdeee7c62f63f1d6c4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/cloak_hood_07.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/cloak_hood_08.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/cloak_hood_08.png
new file mode 100644
index 0000000000000000000000000000000000000000..d462f6f67a478edfe864b170c66c807f6dd2c62f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/cloak_hood_08.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/cloak_hood_09.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/cloak_hood_09.png
new file mode 100644
index 0000000000000000000000000000000000000000..f381db1c007d1dd1a67628d297301baec197b92d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/cloak_hood_09.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/cloak_shoulder_07.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/cloak_shoulder_07.png
new file mode 100644
index 0000000000000000000000000000000000000000..5e46164de068f6d2668fcd3f28b0597d13013765
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/cloak_shoulder_07.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/cloak_shoulder_08.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/cloak_shoulder_08.png
new file mode 100644
index 0000000000000000000000000000000000000000..e387bc839069a70387d21ecc1619bffecda89e83
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/cloak_shoulder_08.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/cloak_shoulder_09.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/cloak_shoulder_09.png
new file mode 100644
index 0000000000000000000000000000000000000000..c23d0c39b7e8a00a07274513ed44f03bac8ca397
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/cloak_shoulder_09.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/feet_10.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/feet_10.png
new file mode 100644
index 0000000000000000000000000000000000000000..6e5dc5023ac82aa3b6ea206dc7e0be551d104350
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/feet_10.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/feet_11.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/feet_11.png
new file mode 100644
index 0000000000000000000000000000000000000000..8c14cdc6c7077dabb6b74ce8ca62f1570c1c14d1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/feet_11.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/gembag_01.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/gembag_01.png
new file mode 100644
index 0000000000000000000000000000000000000000..39e82da67016c9c614830bbecba3e6064762c8cc
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/gembag_01.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/gembag_02.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/gembag_02.png
new file mode 100644
index 0000000000000000000000000000000000000000..f1c0390dad137df73d8f2894e59e258a65588039
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/gembag_02.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/gembag_03.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/gembag_03.png
new file mode 100644
index 0000000000000000000000000000000000000000..b2aa86e8f81d9c15cfe843c10074c9574d4ece52
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/gembag_03.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/gembag_04.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/gembag_04.png
new file mode 100644
index 0000000000000000000000000000000000000000..978b66532578766d2fadaee487fb2ff1052d8c99
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/gembag_04.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/gembag_05.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/gembag_05.png
new file mode 100644
index 0000000000000000000000000000000000000000..dcff9d15d89c1f1e051d59d99cc5f5b33808abe8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/gembag_05.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/hands_08.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/hands_08.png
new file mode 100644
index 0000000000000000000000000000000000000000..9db3f2da69e293c00f69c856c1a45c862bf46626
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/hands_08.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/hands_09.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/hands_09.png
new file mode 100644
index 0000000000000000000000000000000000000000..8cf9512e0f1990dd6933cdd4739619016d39265d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/hands_09.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/head_19.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/head_19.png
new file mode 100644
index 0000000000000000000000000000000000000000..b48c7de20b008fd35e9cedeaaa25398114385e8a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/head_19.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/head_20.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/head_20.png
new file mode 100644
index 0000000000000000000000000000000000000000..77645aa61fcd8dc8af9e34d12a5d77961dc1fe13
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/head_20.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/head_21.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/head_21.png
new file mode 100644
index 0000000000000000000000000000000000000000..af60b00e19cab3d02401f00b37930232febb9bf2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/head_21.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/head_22.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/head_22.png
new file mode 100644
index 0000000000000000000000000000000000000000..fededd4b6acbcfef50b4055eb1e1ceaf0e811f9f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/head_22.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/head_23.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/head_23.png
new file mode 100644
index 0000000000000000000000000000000000000000..40cdbae6d7c1dd58eafb27f3e9d050e2f171705e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/head_23.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/lower_body_14.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/lower_body_14.png
new file mode 100644
index 0000000000000000000000000000000000000000..d281192a6ab6ba9332e44514124362c4668fc39c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/lower_body_14.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/lower_body_15.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/lower_body_15.png
new file mode 100644
index 0000000000000000000000000000000000000000..dbbf78db095e18265c59c857ba0ab543159c2914
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/lower_body_15.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/lower_body_16.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/lower_body_16.png
new file mode 100644
index 0000000000000000000000000000000000000000..ab2ef30519c598195c0ff3e0b42cf44e2454c296
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/lower_body_16.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/lower_body_17.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/lower_body_17.png
new file mode 100644
index 0000000000000000000000000000000000000000..8825eb13747fabb941a9844bc19b81830f58cd37
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/lower_body_17.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/lower_body_18.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/lower_body_18.png
new file mode 100644
index 0000000000000000000000000000000000000000..a2db381ea703436427719b6b3f91a8dd9eee3652
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/lower_body_18.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/lower_body_19.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/lower_body_19.png
new file mode 100644
index 0000000000000000000000000000000000000000..5c2f1472e393df34c378699c3a52f0ce651a88a1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/lower_body_19.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/quiver_01.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/quiver_01.png
new file mode 100644
index 0000000000000000000000000000000000000000..575d7b65af15bcee3d8f521ef3f9bb15264fde91
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/quiver_01.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/quiver_02.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/quiver_02.png
new file mode 100644
index 0000000000000000000000000000000000000000..ef42a9ba8d8fcd016c84f42bd1e19e11c55806eb
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/quiver_02.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/quiver_03.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/quiver_03.png
new file mode 100644
index 0000000000000000000000000000000000000000..a54d7fed76fb86f4b9dfb0e13ebd6916c779ee98
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/quiver_03.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/quiver_04.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/quiver_04.png
new file mode 100644
index 0000000000000000000000000000000000000000..0a852e4e44c96b9db7708a49bc2cdb970cf06092
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/quiver_04.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/quiver_05.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/quiver_05.png
new file mode 100644
index 0000000000000000000000000000000000000000..d51957eaf0362427dc513cbed40889547cbe661f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/quiver_05.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/shotbag_01.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/shotbag_01.png
new file mode 100644
index 0000000000000000000000000000000000000000..1ba3e325110725823f04bc99abe0bbf0177d41a7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/shotbag_01.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/shotbag_02.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/shotbag_02.png
new file mode 100644
index 0000000000000000000000000000000000000000..f14d8954f93b30833ee54890295c400be8521526
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/shotbag_02.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/shotbag_03.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/shotbag_03.png
new file mode 100644
index 0000000000000000000000000000000000000000..d9a5ed241ea1584eda46cba6c3071331b6631ce5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/shotbag_03.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/shotbag_04.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/shotbag_04.png
new file mode 100644
index 0000000000000000000000000000000000000000..7c9836330c37c1c486e5a35405a53c5f2b8c32f7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/shotbag_04.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/shotbag_05.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/shotbag_05.png
new file mode 100644
index 0000000000000000000000000000000000000000..301f1883cd7cfa7aad091a0c24f78e9d794d9b9f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/shotbag_05.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/aether_walk.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/aether_walk.png
new file mode 100644
index 0000000000000000000000000000000000000000..31bbc18c4e7ea40eb7420a6c5face1db8d7fec99
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/aether_walk.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/arkuls_seige_arrows.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/arkuls_seige_arrows.png
new file mode 100644
index 0000000000000000000000000000000000000000..4e63cd5a0efc4eb0a4fdb9ad5a516381c83493a2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/arkuls_seige_arrows.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/armor_chromatic_harness.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/armor_chromatic_harness.png
new file mode 100644
index 0000000000000000000000000000000000000000..8ca5815b9b9174ba17939ffb06bfcbd1e5288b77
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/armor_chromatic_harness.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/armor_cuirass_of_the_thronesmen.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/armor_cuirass_of_the_thronesmen.png
new file mode 100644
index 0000000000000000000000000000000000000000..c08cc1352fdd0175e975cdb5ad5953d1ff846452
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/armor_cuirass_of_the_thronesmen.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/armor_natures_blessing.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/armor_natures_blessing.png
new file mode 100644
index 0000000000000000000000000000000000000000..753a64b52ce4283f0f50123ed0279d50aca20e4e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/armor_natures_blessing.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/armor_plate_borfasts_cage.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/armor_plate_borfasts_cage.png
new file mode 100644
index 0000000000000000000000000000000000000000..0af210730342eb6ee32865bcbb195e2cde192e0f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/armor_plate_borfasts_cage.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/armor_rogue_plight.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/armor_rogue_plight.png
new file mode 100644
index 0000000000000000000000000000000000000000..50e58d9ed98b435ba3209e6f915a817732265679
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/armor_rogue_plight.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/behemoth_skin.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/behemoth_skin.png
new file mode 100644
index 0000000000000000000000000000000000000000..39ac9db72eac976a1b8a3cb5abd2ddad18bdf9d0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/behemoth_skin.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/black_cloak_behind.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/black_cloak_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..2889ab3a9f2c1a8ea5aec55a097f531de0eaafb8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/black_cloak_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/black_cloak_hood.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/black_cloak_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..6d5c79df78df1a41281ea53030b92ddf368206b3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/black_cloak_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/black_cloak_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/black_cloak_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..f00326bedd81938589a6be3fda4bcc5826460ff9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/black_cloak_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/boots_edens_guile.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/boots_edens_guile.png
new file mode 100644
index 0000000000000000000000000000000000000000..3019aba46069edb82bf1c198e1ad32b447ae77a9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/boots_edens_guile.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/boots_of_the_hunter.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/boots_of_the_hunter.png
new file mode 100644
index 0000000000000000000000000000000000000000..d9fa9a8ab779a636d08fbec5f192b1fee5abfbf6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/boots_of_the_hunter.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/breath_of_eyal.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/breath_of_eyal.png
new file mode 100644
index 0000000000000000000000000000000000000000..3bfe0ed1b37203abdd95472cef0ca181514426d7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/breath_of_eyal.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/cinderfeet.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/cinderfeet.png
new file mode 100644
index 0000000000000000000000000000000000000000..5f280781cd5f7ea31ccf7705771fb3f644363d9e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/cinderfeet.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/cloak_threads_of_fate_behind.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/cloak_threads_of_fate_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..a6b704fba848d2e55f3f340d1344d3aa43df703b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/cloak_threads_of_fate_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/cloak_threads_of_fate_hood.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/cloak_threads_of_fate_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..f79c046e0bd289e805d0ff319ba97383eae55e7e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/cloak_threads_of_fate_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/cloak_threads_of_fate_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/cloak_threads_of_fate_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..490bc46a20812019de7729615555716e755a4754
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/cloak_threads_of_fate_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/cloak_winds_whisper_behind.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/cloak_winds_whisper_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..55cf8f8698cc2b3852233fc3b12ed2b3a7301d69
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/cloak_winds_whisper_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/cloak_winds_whisper_hood.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/cloak_winds_whisper_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..758aee2de7f74d1b702c1cc04b70a8f1880ffd09
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/cloak_winds_whisper_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/cloak_winds_whisper_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/cloak_winds_whisper_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..81e2a43b7787c0726a7a3271ec727a4867b2c9a5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/cloak_winds_whisper_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/cloth_armour_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/cloth_armour_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..7a259c8d7a2de49f1fc65ab99173dec6aa73dfe1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/cloth_armour_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/cloth_of_dreams_behind.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/cloth_of_dreams_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..dc316496944718c77e8c64ba70f54d0dd18f66fd
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/cloth_of_dreams_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/cloth_of_dreams_hood.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/cloth_of_dreams_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..233866ebd41647d969a879af4a8fef022c41693e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/cloth_of_dreams_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/cloth_of_dreams_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/cloth_of_dreams_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..93a5d4557de1ac6b91c53dd7cac318f412fe3515
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/cloth_of_dreams_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/corrupted_gaze.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/corrupted_gaze.png
new file mode 100644
index 0000000000000000000000000000000000000000..a5f859926a861ef7e0d1924ea53941c6eb4c8af6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/corrupted_gaze.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/crimson_robe.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/crimson_robe.png
new file mode 100644
index 0000000000000000000000000000000000000000..b48b97905c133bfe8d74bd75e3af2480b6046c84
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/crimson_robe.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/crown_of_burning_pain.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/crown_of_burning_pain.png
new file mode 100644
index 0000000000000000000000000000000000000000..d6a79b95c6dd9aa1778a5ca0198aecbb9935a7bb
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/crown_of_burning_pain.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/crown_of_command.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/crown_of_command.png
new file mode 100644
index 0000000000000000000000000000000000000000..c15eab6f81e2d2e01a782d3e55d098ea63c518bb
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/crown_of_command.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/crown_of_eternal_night.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/crown_of_eternal_night.png
new file mode 100644
index 0000000000000000000000000000000000000000..9e11d32d3602185af8767ae939e9641a3ff9504b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/crown_of_eternal_night.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/crown_of_the_elements.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/crown_of_the_elements.png
new file mode 100644
index 0000000000000000000000000000000000000000..c3dec2e7f43a7829d4480a10b721879b0ffed8f2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/crown_of_the_elements.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/crystles_astral_bindings.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/crystles_astral_bindings.png
new file mode 100644
index 0000000000000000000000000000000000000000..232a8457be5710132eff9e94c79bfc6b8366e80b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/crystles_astral_bindings.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/dakhtuns_gauntlets.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/dakhtuns_gauntlets.png
new file mode 100644
index 0000000000000000000000000000000000000000..d18ca6d03f546d41da58de1d6a5c571c0cf7bf55
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/dakhtuns_gauntlets.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/deaths_embrace.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/deaths_embrace.png
new file mode 100644
index 0000000000000000000000000000000000000000..ecd8514d83c05130766e69f05288b3886e63975e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/deaths_embrace.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/decayed_visage.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/decayed_visage.png
new file mode 100644
index 0000000000000000000000000000000000000000..e49929d753a35ca702a94049aa84c66ed2103ff3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/decayed_visage.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/destalas_scales_behind.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/destalas_scales_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..9c4eef99fe4ef59c254eb69889d06dbbecd0813e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/destalas_scales_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/destalas_scales_whisper_hood.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/destalas_scales_whisper_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..bb6a17627e20ef14fd2225f0f3405e8ecbbfd130
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/destalas_scales_whisper_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/destalas_scales_whisper_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/destalas_scales_whisper_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..16e3966e85be6d3e86bdd61fe0f626bc6fd59700
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/destalas_scales_whisper_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/diadem_alettas_diadem.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/diadem_alettas_diadem.png
new file mode 100644
index 0000000000000000000000000000000000000000..0a7fcb6a91d10079611f0bc151954278dc44a597
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/diadem_alettas_diadem.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/dragon_helm_of_kroltar.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/dragon_helm_of_kroltar.png
new file mode 100644
index 0000000000000000000000000000000000000000..e29f4590e713b14efa7cc9e03615c153a54b2026
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/dragon_helm_of_kroltar.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/dragonskull_helmet.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/dragonskull_helmet.png
new file mode 100644
index 0000000000000000000000000000000000000000..f48bda511a714bc97a3a4f97e1d817801e5d8ad1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/dragonskull_helmet.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/eel_skin_armor.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/eel_skin_armor.png
new file mode 100644
index 0000000000000000000000000000000000000000..f885c1cc06a6ee7d81b8618d6ec43aad3d782a26
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/eel_skin_armor.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/ethereal_embrace_behind.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/ethereal_embrace_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..e84df28d1ac4e2c6b17756f6ab0f0001e157b6d5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/ethereal_embrace_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/ethereal_embrace_hood.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/ethereal_embrace_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..ef320ffe4567dfdf5e3a2e149d729fd2cd241f3a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/ethereal_embrace_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/ethereal_embrace_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/ethereal_embrace_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..4765a7ab5a782d3ae214c667cc49668f25197a26
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/ethereal_embrace_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/evermoss_robe.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/evermoss_robe.png
new file mode 100644
index 0000000000000000000000000000000000000000..08d569c4cd0ce95a1bff6bae53b1d02031590796
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/evermoss_robe.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/eye_of_the_forest.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/eye_of_the_forest.png
new file mode 100644
index 0000000000000000000000000000000000000000..bef59bc202e3f32a97386c9632efd2f0a3093633
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/eye_of_the_forest.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/fist_of_the_destroyer.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/fist_of_the_destroyer.png
new file mode 100644
index 0000000000000000000000000000000000000000..3a7e20752fd937d6f0ac4ce7e7c167ad478bc7e1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/fist_of_the_destroyer.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/frost_treads.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/frost_treads.png
new file mode 100644
index 0000000000000000000000000000000000000000..72f0881c808ebd8d1a8eef25e6e73ba98d9c7a6e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/frost_treads.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/frozen_shards.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/frozen_shards.png
new file mode 100644
index 0000000000000000000000000000000000000000..1d7914286e5f3c53cd753c22761c1aa7d068027f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/frozen_shards.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/frozen_shroud_behind.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/frozen_shroud_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..921d630a861d3b0a227602aad459fb608642df5f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/frozen_shroud_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/frozen_shroud_hood.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/frozen_shroud_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..da0caa6d7cab75ce748b5091c7f72be8e7a047b1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/frozen_shroud_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/frozen_shroud_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/frozen_shroud_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..61ef324df615592580d2a5040108ca3462cb4713
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/frozen_shroud_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/gauntlets_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/gauntlets_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..2d2ac473848c56a117eee5a5f13e3bc1a2ea5572
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/gauntlets_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/gloves_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/gloves_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..6fa954210adabe4531264949e2fa18f56f6ebbc6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/gloves_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/gloves_flamewrought.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/gloves_flamewrought.png
new file mode 100644
index 0000000000000000000000000000000000000000..95e742a14e904058ae900448c29c9d903e19fc6f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/gloves_flamewrought.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/gloves_of_the_firm_hand.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/gloves_of_the_firm_hand.png
new file mode 100644
index 0000000000000000000000000000000000000000..9bcef7d20b86d342a36ea73ae957f920c0554d2b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/gloves_of_the_firm_hand.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/grip_of_death.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/grip_of_death.png
index b61252639aadcf73c4e77d42b28b6af47a13480a..7ae8e7ef4af255df8b994c62d7fb1e13f17c82e7 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/grip_of_death.png and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/grip_of_death.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/guise_of_the_hated_behind.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/guise_of_the_hated_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..fe485578e1faddfc4af3f5d405c38d4bdffaf3f0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/guise_of_the_hated_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/guise_of_the_hated_hood.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/guise_of_the_hated_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..2c4416b0f17bf4b6bfeb470ca0fb4da674dcc2de
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/guise_of_the_hated_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/guise_of_the_hated_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/guise_of_the_hated_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..1afd4b5c3838ec32f2571642134687b8ae91bb51
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/guise_of_the_hated_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/hand_of_the_worldshaper.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/hand_of_the_worldshaper.png
new file mode 100644
index 0000000000000000000000000000000000000000..75b5909bc669aa17e123085977cb8b8860008219
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/hand_of_the_worldshaper.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/harkor_zun_gauntlets.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/harkor_zun_gauntlets.png
new file mode 100644
index 0000000000000000000000000000000000000000..99133d3382e0028b563d38ca0d6ffd30358b44c4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/harkor_zun_gauntlets.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/heavy_armour_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/heavy_armour_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..e567cc52f8c6837b46772afb8d37704d5f609c0a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/heavy_armour_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/helm_of_garkul.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/helm_of_garkul.png
new file mode 100644
index 0000000000000000000000000000000000000000..0ce5f8ec343442b6126bebd20d192693789d3ab4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/helm_of_garkul.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/helm_of_the_dwarven_emperors.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/helm_of_the_dwarven_emperors.png
new file mode 100644
index 0000000000000000000000000000000000000000..e0ec9f18ed7f2ce3e5c0a1e4c2b0e89acde4112b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/helm_of_the_dwarven_emperors.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/hornet_stingers.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/hornet_stingers.png
new file mode 100644
index 0000000000000000000000000000000000000000..e1609b20b8ff700ad8e3b1a642d4978d498788c3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/hornet_stingers.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/iron_mail_of_bloodletting.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/iron_mail_of_bloodletting.png
new file mode 100644
index 0000000000000000000000000000000000000000..451ce98e6c0fa3d6a17ca300709bcd17800022ed
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/iron_mail_of_bloodletting.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_1Haxe_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_1Haxe_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..065e71fb7a540c6d6c8991642499469c96e55290
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_1Haxe_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_1Hmace_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_1Hmace_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..b38d376aa623e25f5b3c47c1cbdf94babc63b168
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_1Hmace_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_1Hsword_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_1Hsword_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..be67ab3893458a16237dfe272d7878dccf38ca1e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_1Hsword_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_2Haxe_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_2Haxe_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..aca70689eee77e07ca1c5957e15823567e3572bb
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_2Haxe_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_2Hmace_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_2Hmace_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..ead1d31a15404c1f04a691440fefa044ab657d8b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_2Hmace_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_2Hsword_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_2Hsword_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..a9f42afcc9e207924a20019734e06c25b0480685
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_2Hsword_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_amethyst_of_sanctuary.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_amethyst_of_sanctuary.png
new file mode 100644
index 0000000000000000000000000000000000000000..f16a0c269aeb058f7e01f331690cb3b995f6d4dc
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_amethyst_of_sanctuary.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_awaken_staff_of_absorbtion.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_awaken_staff_of_absorbtion.png
new file mode 100644
index 0000000000000000000000000000000000000000..612d176a2dc14a98fdb82e706a6f7fc1b7ecd64f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_awaken_staff_of_absorbtion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_blighted_maul.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_blighted_maul.png
new file mode 100644
index 0000000000000000000000000000000000000000..fbd2b01833dab84dec801ee8dcdf2bae00f94c9b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_blighted_maul.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_bloomsoul.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_bloomsoul.png
new file mode 100644
index 0000000000000000000000000000000000000000..7498d41004e4c9982563a9bfbd9c6c3e9ffa583f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_bloomsoul.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_borosks_hate.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_borosks_hate.png
new file mode 100644
index 0000000000000000000000000000000000000000..2783d82e40ddd680f0f44b8143c863aab3f269e3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_borosks_hate.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_bow_corpsebow.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_bow_corpsebow.png
new file mode 100644
index 0000000000000000000000000000000000000000..d38eee3fc7f6b3bd4e0cc9edf90eb6766b210f67
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_bow_corpsebow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_bow_epochs_curve.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_bow_epochs_curve.png
new file mode 100644
index 0000000000000000000000000000000000000000..69789552e6dc81339dfe1bfa3851a8ed53c9b870
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_bow_epochs_curve.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_champions_will.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_champions_will.png
new file mode 100644
index 0000000000000000000000000000000000000000..421e5ae45dadf4fec13acbd11eeaeb3111665f26
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_champions_will.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_colaryem.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_colaryem.png
new file mode 100644
index 0000000000000000000000000000000000000000..94ee71180e764eaafa69a177867d5ea4a53cffff
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_colaryem.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_core_of_the_forge.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_core_of_the_forge.png
new file mode 100644
index 0000000000000000000000000000000000000000..f3d8905845d128f60b330c6305636b0ca287f9f0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_core_of_the_forge.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_corpus_2.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_corpus_2.png
new file mode 100644
index 0000000000000000000000000000000000000000..396c723cecc819298f502d256ad15873cc0b4924
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_corpus_2.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_crystal_shard.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_crystal_shard.png
new file mode 100644
index 0000000000000000000000000000000000000000..8d1e8b6ce632abb5c8c1873bbb4e0005dd5aff4e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_crystal_shard.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_dagger_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_dagger_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..c62db95a808680a0a515a1734820517a7570c7cf
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_dagger_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_dream_malleus.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_dream_malleus.png
new file mode 100644
index 0000000000000000000000000000000000000000..5bfcf95c0933516df4a72d4f1cdf7c9866d7db2d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_dream_malleus.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_eclipse.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_eclipse.png
new file mode 100644
index 0000000000000000000000000000000000000000..b52d289be04389a4ef7ed6a4432e600ed73341d1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_eclipse.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_eyals_will.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_eyals_will.png
new file mode 100644
index 0000000000000000000000000000000000000000..712ffd21b5f3d117c75bc5a1895385ce0fa13fd4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_eyals_will.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_eye_of_the_wyrm.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_eye_of_the_wyrm.png
new file mode 100644
index 0000000000000000000000000000000000000000..a25f1bfd07ab92f6113608755a84fd2a435a9e06
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_eye_of_the_wyrm.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_focus_whip.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_focus_whip.png
new file mode 100644
index 0000000000000000000000000000000000000000..f9983dfbc6082aeebd23006d3cf0b14c65379222
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_focus_whip.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_genocide.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_genocide.png
new file mode 100644
index 0000000000000000000000000000000000000000..98055cc42426adf44b985a22b6b55fd9aab43088
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_genocide.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_gravitational_staff.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_gravitational_staff.png
new file mode 100644
index 0000000000000000000000000000000000000000..9645fe61aa3778aa3bc1e0c129a0e4de76f57035
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_gravitational_staff.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_great_caller.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_great_caller.png
new file mode 100644
index 0000000000000000000000000000000000000000..977174b1d409d1ad77d9051263db306bcbdd22c6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_great_caller.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_guidance.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_guidance.png
new file mode 100644
index 0000000000000000000000000000000000000000..d4dd0d04070477464f3360e12173d2a1426549a0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_guidance.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_hareskin_sling.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_hareskin_sling.png
new file mode 100644
index 0000000000000000000000000000000000000000..609f67821c804cfc0f0c996b5458958129c04985
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_hareskin_sling.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_hydras_bite.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_hydras_bite.png
new file mode 100644
index 0000000000000000000000000000000000000000..b4e402560252c11b628b100fc87137fd938ddf59
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_hydras_bite.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_latafayn.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_latafayn.png
new file mode 100644
index 0000000000000000000000000000000000000000..de3e12b52f6d44130445f7d3c1c6b24f79f549c2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_latafayn.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_merkuls_second_eye.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_merkuls_second_eye.png
new file mode 100644
index 0000000000000000000000000000000000000000..9bb045e88f0f797bd6532d5f624587714c14d368
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_merkuls_second_eye.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_nexus_of_the_way.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_nexus_of_the_way.png
new file mode 100644
index 0000000000000000000000000000000000000000..ebfd0b8a20e5b2939d0a0539b38e6f24457ecded
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_nexus_of_the_way.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_nithans_force.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_nithans_force.png
new file mode 100644
index 0000000000000000000000000000000000000000..0635fea4e6e22287e130b25687a181d474078815
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_nithans_force.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_obliterator.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_obliterator.png
new file mode 100644
index 0000000000000000000000000000000000000000..24416105e1c5fe5d3e867d05ade3a4c0dde754cb
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_obliterator.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_oozing_heart.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_oozing_heart.png
new file mode 100644
index 0000000000000000000000000000000000000000..746839241254f253317e9aefd03e2fd04f3988db
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_oozing_heart.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_psionic_fury.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_psionic_fury.png
new file mode 100644
index 0000000000000000000000000000000000000000..0ac07925eebbf543f853a74fca3e919f6324df72
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_psionic_fury.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_rod_of_sarrilon.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_rod_of_sarrilon.png
new file mode 100644
index 0000000000000000000000000000000000000000..93f2e1407c515dcd5a134fe38623692b5d777bec
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_rod_of_sarrilon.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_sceptre_of_the_archlich.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_sceptre_of_the_archlich.png
new file mode 100644
index 0000000000000000000000000000000000000000..20fdd80f5ed5e2d0a03ef8e7584d82861eb1e122
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_sceptre_of_the_archlich.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_serpents_glare.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_serpents_glare.png
new file mode 100644
index 0000000000000000000000000000000000000000..6b3c77ec07f1b71177c817b0fd8ba9be1b5a1633
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_serpents_glare.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_shield_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_shield_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..8b33c32e7b6d2f8c04d246ec5b417eeb38191a5f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_shield_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_skeletal_claw.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_skeletal_claw.png
new file mode 100644
index 0000000000000000000000000000000000000000..b3ece7123c90a3dd8f3e7cf81faf1a12a23a4b2b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_skeletal_claw.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_sling_eldoral_last_resort.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_sling_eldoral_last_resort.png
new file mode 100644
index 0000000000000000000000000000000000000000..7936a8e00b53ed2eef71cc11b6c0e15f84706670
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_sling_eldoral_last_resort.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_spectral_blade.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_spectral_blade.png
new file mode 100644
index 0000000000000000000000000000000000000000..a96820093ba196e1656bf763b093fb07597b520c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_spectral_blade.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_spellcrusher.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_spellcrusher.png
new file mode 100644
index 0000000000000000000000000000000000000000..1117d0146b3755146942e917bf7385f9a654bb6f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_spellcrusher.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_staff_bolbums_big_knocker.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_staff_bolbums_big_knocker.png
new file mode 100644
index 0000000000000000000000000000000000000000..db1e7adf6bda656695d3c417650280ed86a3669b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_staff_bolbums_big_knocker.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_staff_broken_bottom_telos.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_staff_broken_bottom_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..ead6d038ecc19c17382a34a99a96bd03d277b763
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_staff_broken_bottom_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_staff_broken_top_telos.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_staff_broken_top_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..76e07d6f5bd5e48a442d77a729abefba066c0644
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_staff_broken_top_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_staff_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_staff_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..455d04b39d184f847b670ba70c19ff5035482b97
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_staff_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_staff_kors_fall.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_staff_kors_fall.png
new file mode 100644
index 0000000000000000000000000000000000000000..ac3c168c44bb4c9c9c74540b39b39f19310bd45a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_staff_kors_fall.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_staff_lost_staff_archmage_tarelion.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_staff_lost_staff_archmage_tarelion.png
new file mode 100644
index 0000000000000000000000000000000000000000..77db9b9b23e439abd71f0c697ea63d946fcd0559
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_staff_lost_staff_archmage_tarelion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_staff_of_absorbtion.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_staff_of_absorbtion.png
new file mode 100644
index 0000000000000000000000000000000000000000..b8027ed9c9eb67f9f7ac8ed2dfc58f538df5a9e5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_staff_of_absorbtion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_staff_of_arcane_supremacy.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_staff_of_arcane_supremacy.png
new file mode 100644
index 0000000000000000000000000000000000000000..14eecaf18724045bab0020dc12b902d2633e8cd8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_staff_of_arcane_supremacy.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_staff_of_destruction.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_staff_of_destruction.png
new file mode 100644
index 0000000000000000000000000000000000000000..7789be7e37a3c7475faeb3c670fcd83384dc7db1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_staff_of_destruction.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_staff_penitence.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_staff_penitence.png
new file mode 100644
index 0000000000000000000000000000000000000000..736afb2292b1a48806e39ca6e441bcd96a41eb8a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_staff_penitence.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_staff_voice_of_telos.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_staff_voice_of_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..16c7f231b24847f62f547f996dba2114fb0deebb
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_staff_voice_of_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_storm_fury.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_storm_fury.png
new file mode 100644
index 0000000000000000000000000000000000000000..986a1c51c90f55de89e1bac093ee4d19e5db57db
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_storm_fury.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_stormlash.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_stormlash.png
new file mode 100644
index 0000000000000000000000000000000000000000..a04b2fc9c4dabc8588386dc7f0e6343b3add8198
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_stormlash.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_surefire.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_surefire.png
new file mode 100644
index 0000000000000000000000000000000000000000..d825342c482d16acbd7cc77760b7fd4d34743031
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_surefire.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_telos_spire_of_power.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_telos_spire_of_power.png
new file mode 100644
index 0000000000000000000000000000000000000000..f17d3931afb8298142d1bd91b78ed34d0a2ebfc1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_telos_spire_of_power.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_thaloren_tree_longbow.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_thaloren_tree_longbow.png
new file mode 100644
index 0000000000000000000000000000000000000000..69bc29ff2d4cd1052dbaffcff256a141cf7b559b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_thaloren_tree_longbow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_trident_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_trident_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..780adf053f97837ad0cc9c79ee5c98e2f9fa004d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_trident_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_umbral_razor.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_umbral_razor.png
new file mode 100644
index 0000000000000000000000000000000000000000..8ff95b4a53462fce263d209546b094a3a41cd410
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_umbral_razor.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_unstoppable_mauler.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_unstoppable_mauler.png
new file mode 100644
index 0000000000000000000000000000000000000000..d3bbacb6d6506e7e33fcc771289ccaf22e6c8312
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_unstoppable_mauler.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_voratun_hammer_of_the_deep_bellow.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_voratun_hammer_of_the_deep_bellow.png
new file mode 100644
index 0000000000000000000000000000000000000000..03503dc7381d57b63a3be3999478e9519a13a599
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_voratun_hammer_of_the_deep_bellow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_warmaster_gnargs_murderblade.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_warmaster_gnargs_murderblade.png
new file mode 100644
index 0000000000000000000000000000000000000000..04ea60bc3cb25caf4ab0c5872351f94a6c86fee4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_warmaster_gnargs_murderblade.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_whip_of_urh_rok.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_whip_of_urh_rok.png
new file mode 100644
index 0000000000000000000000000000000000000000..2602197e832179aae4560fe5c0d0e4dbd659ec02
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_whip_of_urh_rok.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_whip_scorpions_tail.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_whip_scorpions_tail.png
new file mode 100644
index 0000000000000000000000000000000000000000..11aecea92b5c4a8339b50cd863864a657c6c357f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_whip_scorpions_tail.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_writhing_essence_of_nightmares.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_writhing_essence_of_nightmares.png
new file mode 100644
index 0000000000000000000000000000000000000000..b7d42e67749d6ade1dc3a06738bf83fc342c9393
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/left_writhing_essence_of_nightmares.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/light_armour_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/light_armour_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..0d6a6494147e971558fbc99da494b40132539a21
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/light_armour_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/malslek_the_accursed_hat.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/malslek_the_accursed_hat.png
new file mode 100644
index 0000000000000000000000000000000000000000..c93208fe49302712f958a51f786e9aaeb47964d4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/malslek_the_accursed_hat.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/masochism.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/masochism.png
new file mode 100644
index 0000000000000000000000000000000000000000..93428b23fe84fdafe7d22fd7a2c00c9428b90f52
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/masochism.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/massive_armour_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/massive_armour_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..95e6043314b687f0fbcfaa815f84b45942029fc1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/massive_armour_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/omniscience.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/omniscience.png
new file mode 100644
index 0000000000000000000000000000000000000000..04a454f9f8d4344d219672e31e680d464e8b046d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/omniscience.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/plate_armor_of_the_king.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/plate_armor_of_the_king.png
new file mode 100644
index 0000000000000000000000000000000000000000..c950d435739879c2a4320e5a45c6557cb4d0c0f5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/plate_armor_of_the_king.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/plate_of_the_blackened_mind.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/plate_of_the_blackened_mind.png
new file mode 100644
index 0000000000000000000000000000000000000000..8fcff0da6b78127c495db543e4fb40bc1ea06d26
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/plate_of_the_blackened_mind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/pouch_of_the_subconscious.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/pouch_of_the_subconscious.png
new file mode 100644
index 0000000000000000000000000000000000000000..81b9c06931a14e1a70e5102e49e904d381744ea8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/pouch_of_the_subconscious.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/quiver_of_domination.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/quiver_of_domination.png
new file mode 100644
index 0000000000000000000000000000000000000000..eee74f6929a5b4726504280115a7d0a899e4ee2a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/quiver_of_domination.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/quiver_of_the_sun.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/quiver_of_the_sun.png
new file mode 100644
index 0000000000000000000000000000000000000000..70d60bf16cd0941be30ddb7141179a0b02ac1ad4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/quiver_of_the_sun.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/radiance_behind.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/radiance_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..41a3c2bd0f9c98beeccace8500bbbec0daf96f67
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/radiance_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/radiance_hood.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/radiance_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..af93bf47b57fef5cfd3e4ce479dbc61b6e1b9956
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/radiance_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/radiance_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/radiance_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..2670b8ab1ec573ae1f13de2d4ce42caafdce3bfa
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/radiance_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_1Haxe_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_1Haxe_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..308be183127c420b31fab7f4b51600e7de61efa9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_1Haxe_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_1Hmace_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_1Hmace_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..b9dacd5e996eef2bb9fb2cd7779f96e86041ee27
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_1Hmace_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_1Hsword_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_1Hsword_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..b69948e2ab7ee8de159f93b4090ff0d6747152de
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_1Hsword_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_2Haxe_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_2Haxe_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..4c35283436770b01ec5cbb723fe10e760f25dd9e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_2Haxe_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_2Hmace_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_2Hmace_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..8e1caaf45f6d77521a158be725d41a17c657011f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_2Hmace_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_2Hsword_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_2Hsword_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..5310886102c0aa576bb5e3536a77e3b25ae07083
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_2Hsword_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_amethyst_of_sanctuary.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_amethyst_of_sanctuary.png
new file mode 100644
index 0000000000000000000000000000000000000000..b5797f01535453b83331561ab84ceaa501e0ea2a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_amethyst_of_sanctuary.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_awaken_staff_of_absorbtion.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_awaken_staff_of_absorbtion.png
new file mode 100644
index 0000000000000000000000000000000000000000..a9d953852d8f3ab04fca31c2c8378c5fc0a8da89
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_awaken_staff_of_absorbtion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_blighted_maul.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_blighted_maul.png
new file mode 100644
index 0000000000000000000000000000000000000000..28ac706b7a26366f503a73db90d62043a6018cae
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_blighted_maul.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_bloomsoul.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_bloomsoul.png
new file mode 100644
index 0000000000000000000000000000000000000000..cb8f1989f184a0349b4eb5811cd61cd6eb2571dc
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_bloomsoul.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_borosks_hate.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_borosks_hate.png
new file mode 100644
index 0000000000000000000000000000000000000000..61adc4c370ccabcf3bd224e8f8730ffbdd6193d6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_borosks_hate.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_bow_corpsebow.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_bow_corpsebow.png
new file mode 100644
index 0000000000000000000000000000000000000000..52f14de3a7e641671db4aa8c81219ba047fd00a5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_bow_corpsebow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_bow_epochs_curve.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_bow_epochs_curve.png
new file mode 100644
index 0000000000000000000000000000000000000000..ae9d5c00650ec2adfaf10d258f6a9a4564b0da3f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_bow_epochs_curve.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_champions_will.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_champions_will.png
new file mode 100644
index 0000000000000000000000000000000000000000..5d986b07b83b7a3dc948b565f165e54e5fc7b9f2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_champions_will.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_colaryem.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_colaryem.png
new file mode 100644
index 0000000000000000000000000000000000000000..fd8484af2e65dcfd45b1ddefbe16175502ce1ba5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_colaryem.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_core_of_the_forge.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_core_of_the_forge.png
new file mode 100644
index 0000000000000000000000000000000000000000..bc1b0fd01e9d1c7a3de083bb5f435063ec65a21f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_core_of_the_forge.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_corpus_2.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_corpus_2.png
new file mode 100644
index 0000000000000000000000000000000000000000..909c8e44c071b555c930d17ef1004b125834baa1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_corpus_2.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_crystal_shard.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_crystal_shard.png
new file mode 100644
index 0000000000000000000000000000000000000000..dbd56f7ca4bb5a4fdf6c99fc9c2b6bb5a3cdff2d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_crystal_shard.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_dagger_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_dagger_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..ec5a93c9cad0e8e6d31990df5be74c6f7f54ab09
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_dagger_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_dream_malleus.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_dream_malleus.png
new file mode 100644
index 0000000000000000000000000000000000000000..7f0c694cc131051c3ab74ae81175cb2239377624
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_dream_malleus.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_eclipse.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_eclipse.png
new file mode 100644
index 0000000000000000000000000000000000000000..f23f551abcf1fbe01b178ab96fbe00be8b11c28c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_eclipse.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_eyals_will.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_eyals_will.png
new file mode 100644
index 0000000000000000000000000000000000000000..1536badbad1f41179ae63aefd46cd77f18acfb26
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_eyals_will.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_eye_of_the_wyrm.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_eye_of_the_wyrm.png
new file mode 100644
index 0000000000000000000000000000000000000000..edf686924f855a9730670b9226bf5a3619bee0fa
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_eye_of_the_wyrm.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_focus_whip.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_focus_whip.png
new file mode 100644
index 0000000000000000000000000000000000000000..99fb55f80a6dac4b2080e81d869fc7ecf3b42372
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_focus_whip.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_genocide.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_genocide.png
new file mode 100644
index 0000000000000000000000000000000000000000..68da699145e9279cff1f02a7ba018ab09e576c32
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_genocide.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_gravitational_staff.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_gravitational_staff.png
new file mode 100644
index 0000000000000000000000000000000000000000..598b84d45a4ec512560075da3f8981c5ffd64cf8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_gravitational_staff.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_great_caller.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_great_caller.png
new file mode 100644
index 0000000000000000000000000000000000000000..1b59f7ad25c81e203c21022348b8040e99b1b35f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_great_caller.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_guidance.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_guidance.png
new file mode 100644
index 0000000000000000000000000000000000000000..8a9e7f8810c0de9855a419a964bbcfaefac79a8a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_guidance.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_hareskin_sling.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_hareskin_sling.png
new file mode 100644
index 0000000000000000000000000000000000000000..1909b988a5b85a5e389ec309f5e2fc14af70dfda
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_hareskin_sling.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_hydras_bite.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_hydras_bite.png
new file mode 100644
index 0000000000000000000000000000000000000000..2069b46c477a2874ba05d079f0511dbca1915174
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_hydras_bite.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_latafayn.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_latafayn.png
new file mode 100644
index 0000000000000000000000000000000000000000..a1337ee251476bba507c73c5a779979ca40e11d4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_latafayn.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_merkuls_second_eye.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_merkuls_second_eye.png
new file mode 100644
index 0000000000000000000000000000000000000000..894cad56cf5a925a753f74ef3e1630964b26dc34
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_merkuls_second_eye.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_nexus_of_the_way.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_nexus_of_the_way.png
new file mode 100644
index 0000000000000000000000000000000000000000..d4bc3bd82c77490d3805557425136cebc20214fe
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_nexus_of_the_way.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_nithans_force.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_nithans_force.png
new file mode 100644
index 0000000000000000000000000000000000000000..516125ea3ce5e083382227f043ea56d50c668303
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_nithans_force.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_obliterator.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_obliterator.png
new file mode 100644
index 0000000000000000000000000000000000000000..1109c9ef62f536ebe6e1239ebe433f9b7d862515
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_obliterator.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_oozing_heart.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_oozing_heart.png
new file mode 100644
index 0000000000000000000000000000000000000000..79a26f56b07aafb470b47fa84d433db668ee0d22
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_oozing_heart.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_psionic_fury.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_psionic_fury.png
new file mode 100644
index 0000000000000000000000000000000000000000..19eae85bfb8cdc31524dc57df0d3706e02005bfe
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_psionic_fury.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_rod_of_sarrilon.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_rod_of_sarrilon.png
new file mode 100644
index 0000000000000000000000000000000000000000..ce414b35f1f03199fa7bf055abc36cdaca883a65
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_rod_of_sarrilon.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_sceptre_of_the_archlich.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_sceptre_of_the_archlich.png
new file mode 100644
index 0000000000000000000000000000000000000000..5fc3911973a45d638dca4b6fd5b53629799f4d68
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_sceptre_of_the_archlich.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_serpents_glare.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_serpents_glare.png
new file mode 100644
index 0000000000000000000000000000000000000000..bd8bfbaed10e8be67520da57aec6b6ca8673f8ae
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_serpents_glare.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_shield_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_shield_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..27435fc7312e083f5759935018dfa60735cb79e3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_shield_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_skeletal_claw.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_skeletal_claw.png
new file mode 100644
index 0000000000000000000000000000000000000000..b3a1c51c7fffe61983baa466ceeedf21706501c7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_skeletal_claw.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_sling_eldoral_last_resort.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_sling_eldoral_last_resort.png
new file mode 100644
index 0000000000000000000000000000000000000000..376a591956b40769f526dff8e29dc43ed8e75def
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_sling_eldoral_last_resort.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_spectral_blade.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_spectral_blade.png
new file mode 100644
index 0000000000000000000000000000000000000000..6b394a9036ad2285b716fad9c38fe7c78cdd25e5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_spectral_blade.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_spellcrusher.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_spellcrusher.png
new file mode 100644
index 0000000000000000000000000000000000000000..2be37ab967639bb3aa35752346c98c3e722ffc9a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_spellcrusher.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_staff_bolbums_big_knocker.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_staff_bolbums_big_knocker.png
new file mode 100644
index 0000000000000000000000000000000000000000..a54099061ce1962b60e7cf394038a41a05b1acff
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_staff_bolbums_big_knocker.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_staff_broken_bottom_telos.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_staff_broken_bottom_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..367521f95e6cdacbe82c79fbb8978d9b4dc1c9f7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_staff_broken_bottom_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_staff_broken_top_telos.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_staff_broken_top_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..31d22546fe7fdc55a88b168490f35314030dd2dd
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_staff_broken_top_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_staff_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_staff_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..910ac9d77f0b360409f090d9367222ce8737b1cd
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_staff_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_staff_kors_fall.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_staff_kors_fall.png
new file mode 100644
index 0000000000000000000000000000000000000000..b4683e704a1e82dfbef4637d4da2c53f51e2ef4e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_staff_kors_fall.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_staff_lost_staff_archmage_tarelion.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_staff_lost_staff_archmage_tarelion.png
new file mode 100644
index 0000000000000000000000000000000000000000..963b8ef87d4204695bf02315e36f729f0d80206d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_staff_lost_staff_archmage_tarelion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_staff_of_absorbtion.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_staff_of_absorbtion.png
new file mode 100644
index 0000000000000000000000000000000000000000..208924870855fce086a772fb3b319ebd585b9212
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_staff_of_absorbtion.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_staff_of_arcane_supremacy.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_staff_of_arcane_supremacy.png
new file mode 100644
index 0000000000000000000000000000000000000000..a95d47171cae620f571e56e748bf492fac55ec26
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_staff_of_arcane_supremacy.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_staff_of_destruction.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_staff_of_destruction.png
new file mode 100644
index 0000000000000000000000000000000000000000..36171f7b24977cb2c0d8eb7d480cdf373194d70f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_staff_of_destruction.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_staff_penitence.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_staff_penitence.png
new file mode 100644
index 0000000000000000000000000000000000000000..2d3f7ac61d48f79ec9e84434c8af9cee20673c82
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_staff_penitence.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_staff_voice_of_telos.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_staff_voice_of_telos.png
new file mode 100644
index 0000000000000000000000000000000000000000..33a91f1bfb6fbb84b85646c81160c33b48fc6de7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_staff_voice_of_telos.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_storm_fury.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_storm_fury.png
new file mode 100644
index 0000000000000000000000000000000000000000..603e8ce791792e2dd5b7ed6bc7bcec5fcf881cbc
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_storm_fury.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_stormlash.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_stormlash.png
new file mode 100644
index 0000000000000000000000000000000000000000..fbb1cf464cb545b3206bb20190353e88c19bb46a
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_stormlash.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_surefire.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_surefire.png
new file mode 100644
index 0000000000000000000000000000000000000000..61eb75a9571fa0a9222da33a96178acc74e78e94
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_surefire.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_telos_spire_of_power.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_telos_spire_of_power.png
new file mode 100644
index 0000000000000000000000000000000000000000..d3fd91dca8b617455d842dd4105e3d848589afd8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_telos_spire_of_power.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_thaloren_tree_longbow.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_thaloren_tree_longbow.png
new file mode 100644
index 0000000000000000000000000000000000000000..a42558b1aa11ff0a2cbcea7163b18d6b6995d7ff
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_thaloren_tree_longbow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_trident_crystalline.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_trident_crystalline.png
new file mode 100644
index 0000000000000000000000000000000000000000..cf20948cee52ef748008d3c17b08b2cb76f28be6
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_trident_crystalline.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_umbral_razor.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_umbral_razor.png
new file mode 100644
index 0000000000000000000000000000000000000000..8834915a1707c8ccc70e21081d44a2ad46e8c0cf
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_umbral_razor.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_unstoppable_mauler.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_unstoppable_mauler.png
new file mode 100644
index 0000000000000000000000000000000000000000..3e60cf47d153f427334656e9c245c4893e4d6336
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_unstoppable_mauler.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_voratun_hammer_of_the_deep_bellow.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_voratun_hammer_of_the_deep_bellow.png
new file mode 100644
index 0000000000000000000000000000000000000000..a7b607f204900355668124f9c5bffa62fe89a04b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_voratun_hammer_of_the_deep_bellow.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_warmaster_gnargs_murderblade.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_warmaster_gnargs_murderblade.png
new file mode 100644
index 0000000000000000000000000000000000000000..1d2a8ed15fc1c4e468f586e5d0e69e7b0c6dd454
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_warmaster_gnargs_murderblade.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_whip_of_urh_rok.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_whip_of_urh_rok.png
new file mode 100644
index 0000000000000000000000000000000000000000..b7452813f9e85dc336540dab8c2f353edef5315b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_whip_of_urh_rok.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_whip_scorpions_tail.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_whip_scorpions_tail.png
new file mode 100644
index 0000000000000000000000000000000000000000..d6200f7c33c6748dc3582470bf4e625d86f82d70
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_whip_scorpions_tail.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_writhing_essence_of_nightmares.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_writhing_essence_of_nightmares.png
new file mode 100644
index 0000000000000000000000000000000000000000..20fb723e4b35fcce94c880327aa5d16ac96ef67b
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/right_writhing_essence_of_nightmares.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/robe_black_robe.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/robe_black_robe.png
new file mode 100644
index 0000000000000000000000000000000000000000..22a33b0e1b2aff25accf9ba1d10bbd37909d0df8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/robe_black_robe.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/robe_firewalker.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/robe_firewalker.png
new file mode 100644
index 0000000000000000000000000000000000000000..9ba5e94573d8dfd4819e2f0efac494675f76f951
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/robe_firewalker.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/robe_of_force.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/robe_of_force.png
new file mode 100644
index 0000000000000000000000000000000000000000..e84b5af24354e50356c5098cba9dee6658643d0d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/robe_of_force.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/robe_spider_silk_robe_spydre.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/robe_spider_silk_robe_spydre.png
new file mode 100644
index 0000000000000000000000000000000000000000..280821985eb07ef078659467dbf94cda8aa571a3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/robe_spider_silk_robe_spydre.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/robe_temporal_augmentation_robe.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/robe_temporal_augmentation_robe.png
new file mode 100644
index 0000000000000000000000000000000000000000..d4a1c16e4d806ef92a4e6cb536aca0b7fa2ebce5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/robe_temporal_augmentation_robe.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/robe_vestments_of_the_conclave.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/robe_vestments_of_the_conclave.png
new file mode 100644
index 0000000000000000000000000000000000000000..4caa99656ad44985dcdcf54dc879a85c1bfdcbd1
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/robe_vestments_of_the_conclave.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/robes_of_deflection.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/robes_of_deflection.png
new file mode 100644
index 0000000000000000000000000000000000000000..d2c06c4d33dd1337d984616d8b4c72095e98479f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/robes_of_deflection.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/scale_mail_of_kroltar.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/scale_mail_of_kroltar.png
new file mode 100644
index 0000000000000000000000000000000000000000..e0aadfb3ce224664c1463b84f056b448018ab622
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/scale_mail_of_kroltar.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/scorched_boots.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/scorched_boots.png
new file mode 100644
index 0000000000000000000000000000000000000000..30ff191a1c0817f80c4eef1294d7fd98869e6541
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/scorched_boots.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/scorpion_gauntlets.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/scorpion_gauntlets.png
new file mode 100644
index 0000000000000000000000000000000000000000..36c2f645ee22d914550f47346bfc2128913601c5
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/scorpion_gauntlets.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/serpentine_cloak_behind.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/serpentine_cloak_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..54179195dcb19b7c8a3be8b55aa2109f27e6a7f2
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/serpentine_cloak_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/serpentine_cloak_hood.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/serpentine_cloak_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..858f07a204b43e50f6bc0ab7d3e7a88c2ce80741
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/serpentine_cloak_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/serpentine_cloak_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/serpentine_cloak_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..0cd85ad299eb2ba33975f5b486dc3bd3b021524c
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/serpentine_cloak_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/shifting_boots.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/shifting_boots.png
new file mode 100644
index 0000000000000000000000000000000000000000..cb3b822575a9a7f82d2ae60b8c45447af727219f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/shifting_boots.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/silk_current.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/silk_current.png
new file mode 100644
index 0000000000000000000000000000000000000000..7c202004806a08a52c499eff712b70e18d2cb34f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/silk_current.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/skin_of_many.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/skin_of_many.png
index 5d154d39f847f7a551aa4855ff011b09e4f32b17..4153fb7741e0187a85b838daa42a7f9f39c7df03 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/skin_of_many.png and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/skin_of_many.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/sludgegrip.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/sludgegrip.png
new file mode 100644
index 0000000000000000000000000000000000000000..3b14a788182503d98a484ca49cb1796194cc7c16
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/sludgegrip.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/snow_giant_arm_wraps.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/snow_giant_arm_wraps.png
new file mode 100644
index 0000000000000000000000000000000000000000..caf6f0a3a0a28d3175c14f7d2b28a6292bc21ace
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/snow_giant_arm_wraps.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/spellhunt_remnants.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/spellhunt_remnants.png
new file mode 100644
index 0000000000000000000000000000000000000000..633fd04a0c45b3e8a0b3d3454de35dbeb1a4acfb
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/spellhunt_remnants.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/star_shot.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/star_shot.png
new file mode 100644
index 0000000000000000000000000000000000000000..e0935c611925363b0918b66eeb2d1e0ec794d3f8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/star_shot.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/storm_bringers_gauntlets.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/storm_bringers_gauntlets.png
new file mode 100644
index 0000000000000000000000000000000000000000..9ce9bb01d19377b2461ac38b539ffaefa5bd2403
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/storm_bringers_gauntlets.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/terrasca.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/terrasca.png
new file mode 100644
index 0000000000000000000000000000000000000000..25b5b6f6487590988da99125edf6d89c0f15bbc8
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/terrasca.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/the_calm.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/the_calm.png
new file mode 100644
index 0000000000000000000000000000000000000000..cc4ca0b22b817cea7a269fb3c8c22c0599afb1b4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/the_calm.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/the_inner_eye.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/the_inner_eye.png
new file mode 100644
index 0000000000000000000000000000000000000000..ebf82765ab0c3590c17f1207e54c66825455f2ba
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/the_inner_eye.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/the_titans_quiver.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/the_titans_quiver.png
new file mode 100644
index 0000000000000000000000000000000000000000..e25901b255d4bfdd19853e63967f952f137d62eb
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/the_titans_quiver.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/the_untouchable.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/the_untouchable.png
new file mode 100644
index 0000000000000000000000000000000000000000..10cd0b7d9e66d760a6a792ccb66ae5ce02f3416e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/the_untouchable.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/the_warped_boots.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/the_warped_boots.png
new file mode 100644
index 0000000000000000000000000000000000000000..196db44e2ac4e91807c3d1532a22e7cdf17cf8ee
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/the_warped_boots.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/unbreakable_greaves.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/unbreakable_greaves.png
new file mode 100644
index 0000000000000000000000000000000000000000..e847b0c0e363452513bb9a2e41e186522cc66727
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/unbreakable_greaves.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/ureslaks_molted_scales_behind.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/ureslaks_molted_scales_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..23e64d1cb8c2eeb376e50d12ac40664696a0f4f7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/ureslaks_molted_scales_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/ureslaks_molted_scales_hood.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/ureslaks_molted_scales_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..17a13989a54814ac2cdc55c0976f2946909877f9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/ureslaks_molted_scales_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/ureslaks_molted_scales_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/ureslaks_molted_scales_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..ab972a595a9d82f80b7e8e5177c923783bcf42c9
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/ureslaks_molted_scales_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/void_quiver.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/void_quiver.png
new file mode 100644
index 0000000000000000000000000000000000000000..0605e3513db57494aa65cb26c9ceeeb7f9dc83dd
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/void_quiver.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/wanderers_rest.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/wanderers_rest.png
new file mode 100644
index 0000000000000000000000000000000000000000..2f983d17ba30d1352ac4a110c6de519f65e6e4f7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/wanderers_rest.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/wind_worn_shot.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/wind_worn_shot.png
new file mode 100644
index 0000000000000000000000000000000000000000..a98ffb2f3bcfe956c0bc01d7e8cb755466ccb6b7
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/wind_worn_shot.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/wizard_hat_of_arcane_understanding.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/wizard_hat_of_arcane_understanding.png
new file mode 100644
index 0000000000000000000000000000000000000000..2eb792db7a5a5a221d5db661090eac4dc9e3135f
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/wizard_hat_of_arcane_understanding.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/wooden_cuirass.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/wooden_cuirass.png
index 0a7c5879fa2afe4441a7dd13200d6f7ba602c4f5..0c9734943e27064453905e425e6c9e5be9288182 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/wooden_cuirass.png and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/wooden_cuirass.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/wrap_of_stone_behind.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/wrap_of_stone_behind.png
new file mode 100644
index 0000000000000000000000000000000000000000..58355a52e7821c404bbd32fd3262df8056d12df4
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/wrap_of_stone_behind.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/wrap_of_stone_hood.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/wrap_of_stone_hood.png
new file mode 100644
index 0000000000000000000000000000000000000000..460d80b9adba7adec193b3484ffc89eb92c2a046
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/wrap_of_stone_hood.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/wrap_of_stone_shoulder.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/wrap_of_stone_shoulder.png
new file mode 100644
index 0000000000000000000000000000000000000000..5ed2773e9ca50a7b1464d1c52b50a63ab206492e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/wrap_of_stone_shoulder.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/wyrmbreath.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/wyrmbreath.png
new file mode 100644
index 0000000000000000000000000000000000000000..dccd1242c9b8769e8de6a8282766b4fdfb8a76a3
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/wyrmbreath.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/yaldan_baoth.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/yaldan_baoth.png
new file mode 100644
index 0000000000000000000000000000000000000000..b0922628be3ae79b16741c818d010f63880fc285
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/yaldan_baoth.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/special/yeek_fur_robe.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/yeek_fur_robe.png
new file mode 100644
index 0000000000000000000000000000000000000000..42aaeeaf38c048be77f0c66c4289ad1f8669edfd
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/special/yeek_fur_robe.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/upper_body_25.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/upper_body_25.png
index 05741afbe35229ee5e207aad6559a04e0e251b1b..7f0c983dd61c48e7577a25d793e177203d4dbc22 100644
Binary files a/game/modules/tome/data/gfx/shockbolt/player/yeek/upper_body_25.png and b/game/modules/tome/data/gfx/shockbolt/player/yeek/upper_body_25.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/upper_body_29.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/upper_body_29.png
new file mode 100644
index 0000000000000000000000000000000000000000..c2a8f458ea92c8f978e001271e5e30007707693e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/upper_body_29.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/upper_body_30.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/upper_body_30.png
new file mode 100644
index 0000000000000000000000000000000000000000..e9b8e8b170390308f3f6bae22e8b348ca7c62444
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/upper_body_30.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/upper_body_31.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/upper_body_31.png
new file mode 100644
index 0000000000000000000000000000000000000000..e6d97e36bff347cac4e6833339396f3f4b540ede
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/upper_body_31.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/upper_body_32.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/upper_body_32.png
new file mode 100644
index 0000000000000000000000000000000000000000..a17b1780b04d72a0052b99335ea8de714e472271
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/upper_body_32.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/upper_body_33.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/upper_body_33.png
new file mode 100644
index 0000000000000000000000000000000000000000..ed4983323009b31209661b21390422d589491d22
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/upper_body_33.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/upper_body_34.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/upper_body_34.png
new file mode 100644
index 0000000000000000000000000000000000000000..20b3f522725d859031e1f613d6a15bf44110862d
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/upper_body_34.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/upper_body_35.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/upper_body_35.png
new file mode 100644
index 0000000000000000000000000000000000000000..ad41fe646afd268571b283529c896b058d5bd830
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/upper_body_35.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/upper_body_36.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/upper_body_36.png
new file mode 100644
index 0000000000000000000000000000000000000000..3bdd1bdbf76ad50d6c652879ac7d495dd38a3bc0
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/upper_body_36.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/upper_body_37.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/upper_body_37.png
new file mode 100644
index 0000000000000000000000000000000000000000..24f5670cc81ec38d2c1f76c418ee4ff083a2b05e
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/upper_body_37.png differ
diff --git a/game/modules/tome/data/gfx/shockbolt/player/yeek/upper_body_38.png b/game/modules/tome/data/gfx/shockbolt/player/yeek/upper_body_38.png
new file mode 100644
index 0000000000000000000000000000000000000000..12a507765fed12aacc9c4cb4a0318c4f00f650af
Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/player/yeek/upper_body_38.png differ
diff --git a/game/modules/tome/dialogs/GameOptions.lua b/game/modules/tome/dialogs/GameOptions.lua
index 835fed26fb8d1c76e49e55502a8cdd9b99654204..b3a294afc2e521bb4c42aaeef7c0da86111f8f5e 100644
--- a/game/modules/tome/dialogs/GameOptions.lua
+++ b/game/modules/tome/dialogs/GameOptions.lua
@@ -623,5 +623,19 @@ function _M:generateListMisc()
 		self.c_list:drawItem(item)
 	end,}
 
+	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=string.toTString"Replace headwear images by cloak hoods if a cloak is worn#WHITE#"}
+	list[#list+1] = { zone=zone, name=string.toTString"#GOLD##{bold}#Show cloak hoods#WHITE##{normal}#", status=function(item)
+		return tostring(config.settings.tome.show_cloak_hoods and "enabled" or "disabled")
+	end, fct=function(item)
+		config.settings.tome.show_cloak_hoods = not config.settings.tome.show_cloak_hoods
+		game:saveSettings("tome.show_cloak_hoods", ("tome.show_cloak_hoods = %s\n"):format(tostring(config.settings.tome.show_cloak_hoods)))
+		self.c_list:drawItem(item)
+		if self:isTome() and game.level then
+			for uid, e in pairs(game.level.entities) do
+				e:updateModdableTile()
+			end
+		end
+	end,}
+
 	self.list = list
 end
diff --git a/game/modules/tome/resolvers.lua b/game/modules/tome/resolvers.lua
index d0deaf0d35c26e756b1fa80ab1df9f25ffdc2a16..6d0013d19da1e1231e1871229da964adf5575a85 100644
--- a/game/modules/tome/resolvers.lua
+++ b/game/modules/tome/resolvers.lua
@@ -545,26 +545,26 @@ end
 function resolvers.calc.moddable_tile(t, e)
 	local slot = t[1]
 	local r, r2
-	if slot == "cloak" then r = {"cloak_%s_01","cloak_%s_02","cloak_%s_03","cloak_%s_04","cloak_%s_05"}
+	if slot == "cloak" then r = {"cloak_%s_07","cloak_%s_08","cloak_%s_08","cloak_%s_09","cloak_%s_09"}
 	elseif slot == "massive" then
 		r = {"upper_body_20","upper_body_21","upper_body_22","upper_body_24","upper_body_23",}
 		r2 = {"lower_body_09","lower_body_10","lower_body_11","lower_body_13","lower_body_12",}
 	elseif slot == "heavy" then
 		r = {"upper_body_25","upper_body_11","upper_body_26","upper_body_28","upper_body_27",}
-		r2 = {"lower_body_08","lower_body_08","lower_body_08","lower_body_08","lower_body_08",}
+		r2 = {"lower_body_16","lower_body_08","lower_body_17","lower_body_18","lower_body_19",}
 	elseif slot == "light" then
-		r = {"upper_body_05","upper_body_06","upper_body_07","upper_body_08","upper_body_19",}
+		r = {"upper_body_29","upper_body_30","upper_body_31","upper_body_32","upper_body_33",}
 		r2 = {"lower_body_03","lower_body_04","lower_body_05","lower_body_06","lower_body_06",}
-	elseif slot == "robe" then r = {"upper_body_18","upper_body_16","upper_body_13","upper_body_15","upper_body_17",}
+	elseif slot == "robe" then r = {"upper_body_34","upper_body_35","upper_body_36","upper_body_37","upper_body_38",}
 	elseif slot == "shield" then r = {"%s_hand_10_01","%s_hand_11_01","%s_hand_11_02","%s_hand_12_01","%s_hand_12_02",}
 	elseif slot == "staff" then r = {"%s_hand_08_01", "%s_hand_08_02", "%s_hand_08_03", "%s_hand_08_04", "%s_hand_08_05"}
-	elseif slot == "leather_boots" then r = {"feet_03","feet_04","feet_04","feet_05","feet_05",}
+	elseif slot == "leather_boots" then r = {"feet_03","feet_10","feet_10","feet_11","feet_11",}
 	elseif slot == "heavy_boots" then r = {"feet_06","feet_06","feet_07","feet_09","feet_08",}
 	elseif slot == "gauntlets" then r = {"hands_03","hands_04","hands_05","hands_07","hands_06",}
-	elseif slot == "gloves" then r = {"hands_02"}
+	elseif slot == "gloves" then r = {"hands_02","hands_02","hands_08","hands_08","hands_09"}
 	elseif slot == "sword" then r = {"%s_hand_04_01", "%s_hand_04_02", "%s_hand_04_03", "%s_hand_04_04", "%s_hand_04_05"}
 	elseif slot == "2hsword" then r = {"%s_2hsword_01", "%s_2hsword_02", "%s_2hsword_03", "%s_2hsword_04", "%s_2hsword_05"}
-	elseif slot == "wizard_hat" then r = {{"head_11",true},{"head_13",true},{"head_17",true},{"head_12",true},{"head_15",true},}
+	elseif slot == "wizard_hat" then r = {"head_21","head_21","head_22","head_22","head_23"}
 	elseif slot == "trident" then r = {"%s_hand_13_01", "%s_hand_13_02", "%s_hand_13_03", "%s_hand_13_04", "%s_hand_13_05"}
 	elseif slot == "whip" then r = {"%s_hand_09"}
 	elseif slot == "mace" then r = {"%s_hand_05_01", "%s_hand_05_02", "%s_hand_05_03", "%s_hand_05_04", "%s_hand_05_05"}
@@ -576,8 +576,11 @@ function resolvers.calc.moddable_tile(t, e)
 	elseif slot == "dagger" then r = {"%s_hand_03_01", "%s_hand_03_02", "%s_hand_03_03", "%s_hand_03_04", "%s_hand_03_05"}
 	elseif slot == "mindstar" then r = {{"mindstar_mossy_%s_01",true},{"mindstar_vines_%s_01",true},{"mindstar_thorn_%s_01",true},{"mindstar_pulsing_%s_01",true},{"mindstar_living_%s_01",true},}
 	elseif slot == "helm" then r = {"head_05","head_06","head_08","head_10","head_09",}
-	elseif slot == "leather_cap" then r = {"head_03"}
+	elseif slot == "leather_cap" then r = {"head_03","head_03","head_19","head_19","head_20"}
 	elseif slot == "mummy_wrapping" then r = {{"special/mummy_wrappings",true}}
+	elseif slot == "quiver" then r = {"quiver_01","quiver_02","quiver_03","quiver_04","quiver_05"}
+	elseif slot == "shotbag" then r = {"shotbag_01","shotbag_02","shotbag_03","shotbag_04","shotbag_05"}
+	elseif slot == "gembag" then r = {"gembag_01","gembag_02","gembag_03","gembag_04","gembag_05"}
 	end
 	local ml = e.material_level or 1
 	r = r[util.bound(ml, 1, #r)]
diff --git a/game/modules/tome/settings.lua b/game/modules/tome/settings.lua
index f7f25400e91efe590baf9622a04b17e1dfba12d0..2b61fcaebc10ad4bb644d246b5b2430bc2ee90da 100644
--- a/game/modules/tome/settings.lua
+++ b/game/modules/tome/settings.lua
@@ -58,6 +58,7 @@ if type(config.settings.tome.fullscreen_confusion) == "nil" then config.settings
 if type(config.settings.tome.show_grid_lines) == "nil" then config.settings.tome.show_grid_lines = false end
 if type(config.settings.tome.tinker_auto_switch) == "nil" then config.settings.tome.tinker_auto_switch = true end
 if type(config.settings.tome.quest_popup) == "nil" then config.settings.tome.quest_popup = true end
+if type(config.settings.tome.show_cloak_hoods) == "nil" then config.settings.tome.show_cloak_hoods = false end
 if not config.settings.tome.fonts then config.settings.tome.fonts = {type="fantasy", size="normal"} end
 if not config.settings.tome.ui_theme3 then config.settings.tome.ui_theme3 = "dark" end
 if not config.settings.tome.uiset_mode then config.settings.tome.uiset_mode = "Minimalist" end