diff --git a/core/assets/bundles/bundle.properties b/core/assets/bundles/bundle.properties index af9aa3e103..cbc0d71d41 100644 --- a/core/assets/bundles/bundle.properties +++ b/core/assets/bundles/bundle.properties @@ -585,7 +585,7 @@ objective.destroyunits = [accent]Destroy: [][lightgray]{0}[]x Units objective.enemiesapproaching = [accent]Enemies approaching in [lightgray]{0}[] objective.destroycore = [accent]Destroy Enemy Core objective.command = [accent]Command Units -objective.nuclearlaunch = [accent]? Nuclear launch detected:\n[lightgray]{0} +objective.nuclearlaunch = [accent]\u26a0 Nuclear launch detected:\n[lightgray]{0} loadout = Loadout resources = Resources diff --git a/core/src/mindustry/content/Blocks.java b/core/src/mindustry/content/Blocks.java index 294550380f..118740a61b 100644 --- a/core/src/mindustry/content/Blocks.java +++ b/core/src/mindustry/content/Blocks.java @@ -3967,11 +3967,6 @@ public class Blocks{ mirror = true; under = true; moveY = 1f; - - //lame - moveX = 0.5f; - - //wackier variant moveX = 1.5f; moveRot = 8; }}); @@ -4163,7 +4158,7 @@ public class Blocks{ consumeLiquid(Liquids.hydrogen, 3f / 60f); consumeItems(with(Items.silicon, 90, Items.tungsten, 70)); - constructTime = 60f * 70f; + constructTime = 60f * 60f; upgrades.addAll( new UnitType[]{UnitTypes.stell, UnitTypes.locus} @@ -4179,7 +4174,7 @@ public class Blocks{ consumeLiquid(Liquids.hydrogen, 3f / 60f); consumeItems(with(Items.silicon, 50, Items.tungsten, 40)); - constructTime = 60f * 50f; + constructTime = 60f * 40f; upgrades.addAll( new UnitType[]{UnitTypes.stell, UnitTypes.latum} @@ -4195,7 +4190,7 @@ public class Blocks{ consumeLiquid(Liquids.hydrogen, 3f / 60f); consumeItems(with(Items.silicon, 25, Items.tungsten, 25)); - constructTime = 60f * 40f; + constructTime = 60f * 30f; upgrades.addAll( new UnitType[]{UnitTypes.stell, UnitTypes.avert} diff --git a/core/src/mindustry/content/UnitTypes.java b/core/src/mindustry/content/UnitTypes.java index 1abe026850..5396137e1a 100644 --- a/core/src/mindustry/content/UnitTypes.java +++ b/core/src/mindustry/content/UnitTypes.java @@ -3298,8 +3298,8 @@ public class UnitTypes{ speed = 2f; rotateSpeed = 4f; accel = 0.09f; - health = 800f; - armor = 2f; + health = 900f; + armor = 3f; hitSize = 12f; engineSize = 0; fogRadius = 25;