diff --git a/game/modules/tome/data/gfx/shaders/runicshield.frag b/game/modules/tome/data/gfx/shaders/runicshield.frag index 6787039615e038f28514c7e654dde2f4b4dea8b4..ec643aa02e9828ed06765857886cd2d5031d8bb8 100644 --- a/game/modules/tome/data/gfx/shaders/runicshield.frag +++ b/game/modules/tome/data/gfx/shaders/runicshield.frag @@ -2,7 +2,7 @@ uniform sampler2D tex; uniform float tick; uniform float tick_start; uniform float aadjust; -uniform vec3 color; +uniform vec4 color; uniform float time_factor; uniform float ellipsoidalFactor; //1 is perfect circle, >1 is ellipsoidal @@ -169,7 +169,7 @@ vec4 GetFireRingColor(float currTime, vec2 pos, float freqMult, float stretchMul vec4 result; result.rgb = color; - result.a = verticalPos; + result.a = verticalPos * color.a; return result; } diff --git a/game/modules/tome/data/gfx/shaders/runicshield.lua b/game/modules/tome/data/gfx/shaders/runicshield.lua index b8efca5e97907cc489a367416f7dddc69547e299..5ba9b5c5c3581d5eb75a8eb074e2f44cd3f598bb 100644 --- a/game/modules/tome/data/gfx/shaders/runicshield.lua +++ b/game/modules/tome/data/gfx/shaders/runicshield.lua @@ -22,10 +22,10 @@ return { vert = nil, args = { tex = { texture = 0 }, - color = color or {1.0, 1.0, 1.0}, + color = color or {1.0, 1.0, 1.0, 1.0}, time_factor = time_factor or 2000, aadjust = aadjust or 10, - ellipsoidalFactor = 1.8, --1 is perfect circle, >1 is ellipsoidal + ellipsoidalFactor = ellipsoidalFactor or 1.8, --1 is perfect circle, >1 is ellipsoidal oscillationSpeed = oscillationSpeed or 10.0, --oscillation between ellipsoidal and spherical form antialiasingRadius = antialiasingRadius or 0.98, --1.0 is no antialiasing, 0.0 - fully smoothed(looks worse) shieldIntensity = shieldIntensity or 0.2, --physically affects shield layer thickness diff --git a/game/modules/tome/data/talents/celestial/light.lua b/game/modules/tome/data/talents/celestial/light.lua index ac2168a57ae91fb6b6ee4f6c0671ce2d7f5c60d3..12548116fc7431a985baa352d8abbd90734b4e9d 100644 --- a/game/modules/tome/data/talents/celestial/light.lua +++ b/game/modules/tome/data/talents/celestial/light.lua @@ -33,7 +33,7 @@ newTalent{ self:heal(self:spellCrit(t.getHeal(self, t)), self) self:attr("allow_on_heal", -1) if core.shader.active(4) then - self:addParticles(Particles.new("shader_shield_temp", 1, {size_factor=1.1, sizev=1.5, sizea=0.2, img="runicshield_yellow"}, {type="runicshield", color={0xe1/255, 0xcb/255, 0x3f/255}, shieldIntensity=0.1, horizontalScrollingSpeed=-0.8})) + self:addParticles(Particles.new("shader_shield_temp", 1, {size_factor=1.1, sizev=1.5, sizea=0.2, img="runicshield_yellow"}, {type="runicshield", color={0xe1/255, 0xcb/255, 0x3f/255, 1}, shieldIntensity=0.1, horizontalScrollingSpeed=-0.8})) end game:playSoundNear(self, "talents/heal") return true diff --git a/game/modules/tome/data/talents/chronomancy/age-manipulation.lua b/game/modules/tome/data/talents/chronomancy/age-manipulation.lua index f6dd0dcc305c1eb4bef092de73b0ce541f6a5fec..5067c2ddac3dae5e28f63d0c092019ba056a2bd8 100644 --- a/game/modules/tome/data/talents/chronomancy/age-manipulation.lua +++ b/game/modules/tome/data/talents/chronomancy/age-manipulation.lua @@ -171,7 +171,7 @@ newTalent{ self:heal(self:spellCrit(t.getHeal(self, t)), self) self:attr("allow_on_heal", -1) if core.shader.active(4) then - self:addParticles(Particles.new("shader_shield_temp", 1, {size_factor=1.1, sizev=1.5, sizea=0.2, img="runicshield_teal"}, {type="runicshield", color={0x35/255, 0x88/255, 0x8e/255}, shieldIntensity=0.15, horizontalScrollingSpeed=-0.8})) + self:addParticles(Particles.new("shader_shield_temp", 1, {size_factor=1.1, sizev=1.5, sizea=0.2, img="runicshield_teal"}, {type="runicshield", color={0x35/255, 0x88/255, 0x8e/255, 1}, shieldIntensity=0.15, horizontalScrollingSpeed=-0.8})) end local target = self diff --git a/game/modules/tome/data/talents/spells/advanced-golemancy.lua b/game/modules/tome/data/talents/spells/advanced-golemancy.lua index cda9de2905c0132b56d82106040e495e4e400f31..6fd6ef349d57d9931c12c8726e657f36090bc7fa 100644 --- a/game/modules/tome/data/talents/spells/advanced-golemancy.lua +++ b/game/modules/tome/data/talents/spells/advanced-golemancy.lua @@ -45,7 +45,7 @@ newTalent{ self:attr("allow_on_heal", 1) self:heal(power, golem) self:attr("allow_on_heal", -1) - if core.shader.active(4) then self:addParticles(Particles.new("shader_shield_temp", 1, {size_factor=1.1, sizev=1.5, sizea=0.2}, {type="runicshield", color={0.34, 0.1, 0.5}})) end + if core.shader.active(4) then self:addParticles(Particles.new("shader_shield_temp", 1, {size_factor=1.1, sizev=1.5, sizea=0.2}, {type="runicshield", color={0.34, 0.1, 0.5, 1}})) end game:playSoundNear(self, "talents/arcane") return true end, diff --git a/game/modules/tome/data/talents/spells/aegis.lua b/game/modules/tome/data/talents/spells/aegis.lua index 86edd992eaedac23dc8395d2dff6f978812f4241..db46a3c52049bcc11a97f1698c55011926a6136d 100644 --- a/game/modules/tome/data/talents/spells/aegis.lua +++ b/game/modules/tome/data/talents/spells/aegis.lua @@ -33,7 +33,7 @@ newTalent{ self:heal(self:spellCrit(t.getHeal(self, t)), self) self:attr("allow_on_heal", -1) if core.shader.active(4) then - self:addParticles(Particles.new("shader_shield_temp", 1, {size_factor=1.1, sizev=1.5, sizea=0.2}, {type="runicshield", color={0.34, 0.1, 0.5}})) + self:addParticles(Particles.new("shader_shield_temp", 1, {size_factor=1.1, sizev=1.5, sizea=0.2}, {type="runicshield", color={0.34, 0.1, 0.5, 1}})) end game:playSoundNear(self, "talents/heal") return true diff --git a/game/modules/tome/data/talents/spells/golemancy.lua b/game/modules/tome/data/talents/spells/golemancy.lua index f679afc5d2a54e687ad9ceb1e0c64033a02d8382..b718b3e5ad14259d1d0fa079f3fd697b525341fb 100644 --- a/game/modules/tome/data/talents/spells/golemancy.lua +++ b/game/modules/tome/data/talents/spells/golemancy.lua @@ -248,7 +248,7 @@ newTalent{ self.alchemy_golem:attr("allow_on_heal", 1) self.alchemy_golem:heal(t.getHeal(self, t), self) self.alchemy_golem:attr("allow_on_heal", -1) - if core.shader.active(4) then self.alchemy_golem:addParticles(Particles.new("shader_shield_temp", 1, {size_factor=1.1, sizev=1.5, sizea=0.2}, {type="runicshield", color={0.34, 0.1, 0.5}})) end + if core.shader.active(4) then self.alchemy_golem:addParticles(Particles.new("shader_shield_temp", 1, {size_factor=1.1, sizev=1.5, sizea=0.2}, {type="runicshield", color={0.34, 0.1, 0.5, 1}})) end -- resurrect the golem elseif not self:hasEffect(self.EFF_GOLEM_MOUNT) then diff --git a/game/modules/tome/data/talents/spells/necrosis.lua b/game/modules/tome/data/talents/spells/necrosis.lua index 59f02d62ca31769930431f9f840cab26440be0f8..01e50c5414f50eb43f44e0a460950cd1ed6f810f 100644 --- a/game/modules/tome/data/talents/spells/necrosis.lua +++ b/game/modules/tome/data/talents/spells/necrosis.lua @@ -135,7 +135,7 @@ newTalent{ self:attr("allow_on_heal", 1) self:heal(maxdrain) self:attr("allow_on_heal", -1) - if core.shader.active(4) then self:addParticles(Particles.new("shader_shield_temp", 1, {size_factor=1.1, sizev=1.5, sizea=0.2, img="runicshield_dark"}, {type="runicshield", color={0.34, 0.1, 0.5}})) end + if core.shader.active(4) then self:addParticles(Particles.new("shader_shield_temp", 1, {size_factor=1.1, sizev=1.5, sizea=0.2, img="runicshield_dark"}, {type="runicshield", color={0.34, 0.1, 0.5, 1}})) end game:playSoundNear(self, "talents/ice") return true end, diff --git a/game/modules/tome/data/talents/undeads/skeleton.lua b/game/modules/tome/data/talents/undeads/skeleton.lua index d0cdf2b541520fa0157b938d5757f06c9c2268d9..c94ac61a6c37dbb290dee6f05bfd4c3b79752c98 100644 --- a/game/modules/tome/data/talents/undeads/skeleton.lua +++ b/game/modules/tome/data/talents/undeads/skeleton.lua @@ -96,7 +96,7 @@ newTalent{ short_name = "SKELETON_REASSEMBLE", self:attr("allow_on_heal", 1) self:heal(t.getHeal(self, t), self) self:attr("allow_on_heal", -1) - if core.shader.active(4) then self:addParticles(Particles.new("shader_shield_temp", 1, {size_factor=1.1, sizev=1.5, sizea=0.2, img="runicshield_dark"}, {type="runicshield", color={0.34, 0.1, 0.5}})) end + if core.shader.active(4) then self:addParticles(Particles.new("shader_shield_temp", 1, {size_factor=1.1, sizev=1.5, sizea=0.2, img="runicshield_dark"}, {type="runicshield", color={0.34, 0.1, 0.5, 1}})) end game:playSoundNear(self, "talents/heal") return true end,