diff --git a/game/engines/default/engine/Map.lua b/game/engines/default/engine/Map.lua
index ef9a5c1ba9fc4ddbaef689ab9dcf48cb1a367878..26de64c35f3ec2340be77aa9862fdf6b1f0f71c0 100644
--- a/game/engines/default/engine/Map.lua
+++ b/game/engines/default/engine/Map.lua
@@ -1172,6 +1172,7 @@ function _M:processEffects()
 				else e.grids = core.fov.beam_grids(e.x, e.y, e.radius, e.dir, e.angle, true) end
 				if e.particles then
 					if e.particles_only_one then
+						e.particles[1]:shiftCustom(self.tile_w * (e.particles[1].x - e.x), self.tile_h * (e.particles[1].y - e.y))
 						e.particles[1].x = e.x
 						e.particles[1].y = e.y
 					else
diff --git a/game/engines/default/engine/Particles.lua b/game/engines/default/engine/Particles.lua
index e555eddf32cc35f91386c6707ac0e5deb3bd459b..c77674ecdb98aa677e09413471beb3e147f32a7f 100644
--- a/game/engines/default/engine/Particles.lua
+++ b/game/engines/default/engine/Particles.lua
@@ -138,3 +138,9 @@ function _M:shift(map, mo)
 	end					
 	self._adx, self._ady = adx, ady
 end
+
+function _M:shiftCustom(dx, dy)
+	if not self.can_shift then return end
+
+	self.ps:shift(dx, dy)
+end
diff --git a/game/modules/tome/data/gfx/particles/acidstorm.lua b/game/modules/tome/data/gfx/particles/acidstorm.lua
index 04b5036d1c836df4ac6adae638a8aa415a94da34..471496cbb3b4b3f6d6fed2621b6c734816aad414 100644
--- a/game/modules/tome/data/gfx/particles/acidstorm.lua
+++ b/game/modules/tome/data/gfx/particles/acidstorm.lua
@@ -17,6 +17,7 @@
 -- Nicolas Casalini "DarkGod"
 -- darkgod@te4.org
 
+can_shift = true
 base_size = 32
 
 return { generator = function()
diff --git a/game/modules/tome/data/gfx/particles/firestorm.lua b/game/modules/tome/data/gfx/particles/firestorm.lua
index 2f15a0871a451e423dd194027116a03bb4ef76e1..041aca5ef52b940b977d51e28e60c77ac378b7cc 100644
--- a/game/modules/tome/data/gfx/particles/firestorm.lua
+++ b/game/modules/tome/data/gfx/particles/firestorm.lua
@@ -17,6 +17,7 @@
 -- Nicolas Casalini "DarkGod"
 -- darkgod@te4.org
 
+can_shift = true
 base_size = 32
 
 return { generator = function()
diff --git a/game/modules/tome/data/gfx/particles/knifestorm.lua b/game/modules/tome/data/gfx/particles/knifestorm.lua
index ebab0942a6aee9aff97556fd511f0f4e19e532e5..218a1f3ad22d5cbcde4294ea29497acde7b950cb 100644
--- a/game/modules/tome/data/gfx/particles/knifestorm.lua
+++ b/game/modules/tome/data/gfx/particles/knifestorm.lua
@@ -17,6 +17,7 @@
 -- Nicolas Casalini "DarkGod"
 -- darkgod@te4.org
 
+can_shift = true
 base_size = 32
 
 return { generator = function()
diff --git a/game/modules/tome/data/gfx/particles/leafstorm.lua b/game/modules/tome/data/gfx/particles/leafstorm.lua
index 737149a9a6a6b199da89d097f8a6951fbbe9eeba..12b1f31584330b3de0717eade7cd69fc6d2ff408 100644
--- a/game/modules/tome/data/gfx/particles/leafstorm.lua
+++ b/game/modules/tome/data/gfx/particles/leafstorm.lua
@@ -17,6 +17,7 @@
 -- Nicolas Casalini "DarkGod"
 -- darkgod@te4.org
 
+can_shift = true
 base_size = 32
 
 return { generator = function()
diff --git a/game/modules/tome/data/gfx/particles/necrotic-aura.lua b/game/modules/tome/data/gfx/particles/necrotic-aura.lua
index 1648ef35825104f755448aefb0be9feb66fd376e..d856250b6a96aa1b7b29450354a7a5643c907af3 100644
--- a/game/modules/tome/data/gfx/particles/necrotic-aura.lua
+++ b/game/modules/tome/data/gfx/particles/necrotic-aura.lua
@@ -17,6 +17,7 @@
 -- Nicolas Casalini "DarkGod"
 -- darkgod@te4.org
 
+can_shift = true
 base_size = 32
 radius = radius or 3