Fun fact: 1.0 is smaller than 10

This commit is contained in:
slava0135
2020-09-30 20:41:56 +03:00
parent aa5b3aa756
commit a806d7c019
15 changed files with 9768 additions and 9727 deletions

View File

@@ -311,5 +311,4 @@
63425=vela|unit-vela-medium 63425=vela|unit-vela-medium
63424=corvus|unit-corvus-medium 63424=corvus|unit-corvus-medium
63423=memory-bank|block-memory-bank-medium 63423=memory-bank|block-memory-bank-medium
63422=tsunami|block-tsunami-medium
63422=foreshadow|block-foreshadow-medium 63422=foreshadow|block-foreshadow-medium

File diff suppressed because it is too large Load Diff

Binary file not shown.

Before

Width:  |  Height:  |  Size: 949 KiB

After

Width:  |  Height:  |  Size: 906 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 522 KiB

After

Width:  |  Height:  |  Size: 489 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 186 KiB

After

Width:  |  Height:  |  Size: 1.3 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 184 KiB

After

Width:  |  Height:  |  Size: 182 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 425 KiB

After

Width:  |  Height:  |  Size: 410 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 MiB

After

Width:  |  Height:  |  Size: 319 KiB

File diff suppressed because it is too large Load Diff

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 MiB

After

Width:  |  Height:  |  Size: 2.7 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 187 KiB

After

Width:  |  Height:  |  Size: 1.4 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 186 KiB

After

Width:  |  Height:  |  Size: 183 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 421 KiB

After

Width:  |  Height:  |  Size: 408 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 MiB

After

Width:  |  Height:  |  Size: 307 KiB

View File

@@ -476,26 +476,26 @@ public class Bullets implements ContentList{
heavyWaterShot = new LiquidBulletType(Liquids.water){{ heavyWaterShot = new LiquidBulletType(Liquids.water){{
knockback = 1.0f; knockback = 1.0f;
puddleSize = 1.0f; puddleSize = 10f;
damage = 4f; damage = 4f;
}}; }};
heavyCryoShot = new LiquidBulletType(Liquids.cryofluid){{ heavyCryoShot = new LiquidBulletType(Liquids.cryofluid){{
knockback = 0.75f; knockback = 0.75f;
puddleSize = 1.0f; puddleSize = 10f;
damage = 4f; damage = 4f;
}}; }};
heavySlagShot = new LiquidBulletType(Liquids.slag){{ heavySlagShot = new LiquidBulletType(Liquids.slag){{
knockback = 0.75f; knockback = 0.75f;
puddleSize = 1.0f; puddleSize = 10f;
damage = 8f; damage = 8f;
drag = 0.03f; drag = 0.03f;
}}; }};
heavyOilShot = new LiquidBulletType(Liquids.oil){{ heavyOilShot = new LiquidBulletType(Liquids.oil){{
knockback = 0.75f; knockback = 0.75f;
puddleSize = 1.0f; puddleSize = 10f;
damage = 4f; damage = 4f;
drag = 0.03f; drag = 0.03f;
}}; }};