From c74960130222e60eb2a52c3d19de3a1b2e241bba Mon Sep 17 00:00:00 2001 From: dwasint <82520990+dwasint@users.noreply.github.com> Date: Wed, 15 Nov 2023 05:00:21 -0500 Subject: [PATCH] Update fire.dm --- .../modules/trading/unusual_effects/animation_housing/fire.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/monkestation/code/modules/trading/unusual_effects/animation_housing/fire.dm b/monkestation/code/modules/trading/unusual_effects/animation_housing/fire.dm index dd56e71635ec..364390ce402a 100644 --- a/monkestation/code/modules/trading/unusual_effects/animation_housing/fire.dm +++ b/monkestation/code/modules/trading/unusual_effects/animation_housing/fire.dm @@ -11,14 +11,14 @@ spawned.pixel_y += rand(-4,4) spawned.add_filter("outline", 1, list(type = "outline", size = 1, color = "#FF3300")) - spawned.add_filter("bloom", 2 , list(type = "bloom", threshold = rgb(255,128,255), size = 3, offset = 4, alpha = 255)) + spawned.add_filter("bloom", 2 , list(type = "bloom", threshold = rgb(255,128,255), size = 5, offset = 4, alpha = 255)) if(prob(35)) spawned.layer = ABOVE_MOB_LAYER var/normal_x = rand(-4, 4) + spawned.pixel_x var/inverse_x = 0 - normal_x - spawned.alpha = 0 + spawned.alpha = 130 animate(spawned, alpha = 255, time = 0.4 SECONDS, pixel_y = rand(6, 16) + spawned.pixel_y, pixel_x = normal_x, easing = LINEAR_EASING) animate(time = 0.5 SECONDS, alpha = 0, inverse_x , pixel_y = rand(6, 16) + spawned.pixel_y, easing = LINEAR_EASING|EASE_OUT)