diff --git a/core/assets-raw/sprites/blocks/turrets/cyclone.png b/core/assets-raw/sprites/blocks/turrets/cyclone.png index a0e34e20e7..d508628c50 100644 Binary files a/core/assets-raw/sprites/blocks/turrets/cyclone.png and b/core/assets-raw/sprites/blocks/turrets/cyclone.png differ diff --git a/core/assets-raw/sprites/blocks/turrets/fuse.png b/core/assets-raw/sprites/blocks/turrets/fuse.png index 16c3d3991c..360262bbcc 100644 Binary files a/core/assets-raw/sprites/blocks/turrets/fuse.png and b/core/assets-raw/sprites/blocks/turrets/fuse.png differ diff --git a/core/assets-raw/sprites/blocks/turrets/lancer-heat.png b/core/assets-raw/sprites/blocks/turrets/lancer-heat.png index e2a5442ebd..1159816138 100644 Binary files a/core/assets-raw/sprites/blocks/turrets/lancer-heat.png and b/core/assets-raw/sprites/blocks/turrets/lancer-heat.png differ diff --git a/core/assets-raw/sprites/blocks/turrets/lancer.png b/core/assets-raw/sprites/blocks/turrets/lancer.png index 5b01df18e6..5c9cf079f5 100644 Binary files a/core/assets-raw/sprites/blocks/turrets/lancer.png and b/core/assets-raw/sprites/blocks/turrets/lancer.png differ diff --git a/core/assets-raw/sprites/blocks/turrets/salvo.png b/core/assets-raw/sprites/blocks/turrets/salvo.png index 4904a913a5..77d2e39b93 100644 Binary files a/core/assets-raw/sprites/blocks/turrets/salvo.png and b/core/assets-raw/sprites/blocks/turrets/salvo.png differ diff --git a/core/assets-raw/sprites/blocks/turrets/titan/titan-preview.png b/core/assets-raw/sprites/blocks/turrets/titan/titan-preview.png index 76e37a9534..6f02447fc8 100644 Binary files a/core/assets-raw/sprites/blocks/turrets/titan/titan-preview.png and b/core/assets-raw/sprites/blocks/turrets/titan/titan-preview.png differ diff --git a/core/assets-raw/sprites/blocks/turrets/titan/titan.png b/core/assets-raw/sprites/blocks/turrets/titan/titan.png index 0af33e57c2..74f1fdb72f 100644 Binary files a/core/assets-raw/sprites/blocks/turrets/titan/titan.png and b/core/assets-raw/sprites/blocks/turrets/titan/titan.png differ diff --git a/core/src/mindustry/content/Blocks.java b/core/src/mindustry/content/Blocks.java index 99960925d0..a8e6d18c86 100644 --- a/core/src/mindustry/content/Blocks.java +++ b/core/src/mindustry/content/Blocks.java @@ -3074,8 +3074,8 @@ public class Blocks{ consumes.liquids(LiquidStack.with(Liquids.hydrogen, 1f / 60f)); - range = 360f; - size = 3; + range = 390f; + size = 4; }}; //endregion diff --git a/core/src/mindustry/content/Fx.java b/core/src/mindustry/content/Fx.java index 80b5bbdd7c..febe24944e 100644 --- a/core/src/mindustry/content/Fx.java +++ b/core/src/mindustry/content/Fx.java @@ -1732,11 +1732,14 @@ public class Fx{ }), lancerLaserChargeBegin = new Effect(60f, e -> { + float margin = 1f - Mathf.curve(e.fin(), 0.9f); + float fin = Math.min(margin, e.fin()); + color(Pal.lancerLaser); - Fill.circle(e.x, e.y, e.fin() * 3f); + Fill.circle(e.x, e.y, fin * 3f); color(); - Fill.circle(e.x, e.y, e.fin() * 2f); + Fill.circle(e.x, e.y, fin * 2f); }), lightningCharge = new Effect(38f, e -> {