Ruinous shores wave nerf

This commit is contained in:
Anuken 2024-11-30 10:12:53 -05:00
parent 7e3572df51
commit 9c0335d5f2
3 changed files with 0 additions and 3 deletions

Binary file not shown.

View File

@ -1835,7 +1835,6 @@ public class UnitTypes{
//region naval support
retusa = new UnitType("retusa"){{
speed = 0.9f;
targetAir = false;
drag = 0.14f;
hitSize = 11f;
health = 270;

View File

@ -56,8 +56,6 @@ public class LaunchPad extends Block{
super.setBars();
addBar("items", entity -> new Bar(() -> Core.bundle.format("bar.items", entity.items.total()), () -> Pal.items, () -> (float)entity.items.total() / itemCapacity));
//TODO is "bar.launchcooldown" the right terminology?
addBar("progress", (LaunchPadBuild build) -> new Bar(() -> Core.bundle.get("bar.launchcooldown"), () -> Pal.ammo, () -> Mathf.clamp(build.launchCounter / launchTime)));
}