Skip to content

Commit

Permalink
awa
Browse files Browse the repository at this point in the history
  • Loading branch information
xjamiex committed Feb 2, 2025
1 parent ced0afd commit 830bca8
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
14 changes: 13 additions & 1 deletion src/biotech/content/BioBlocks.java
Original file line number Diff line number Diff line change
Expand Up @@ -707,7 +707,7 @@ BioItems.magnesium, new BasicBulletType(4f, 8) {{
requirements(turret, with(BioItems.magnesium, 100, BioItems.potash, 50));

range = 140;
shootSound = Sounds.shootAlt;
shootSound = Sounds.shootBig;
inaccuracy = 20f;
rotateSpeed = 2f;
reload = 440;
Expand All @@ -716,6 +716,18 @@ BioItems.magnesium, new BasicBulletType(4f, 8) {{
targetGround = true;
recoil = 6;

shootEffect = new MultiEffect(
BioFx.fourSpike(BioPal.plasmoidBlueLight, 4, 25),
new WaveEffect(){{
strokeFrom = 3;
strokeTo = 0;
colorFrom = colorTo = BioPal.plasmoidBlueLight;
sizeFrom = 0;
sizeTo = 12;
}}
);
shootY = 3;

consumePower(10f);

outlineColor = Color.valueOf("2b2626");;
Expand Down
1 change: 0 additions & 1 deletion src/biotech/ui/BioSpawnerDialog.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ private void setup(){
buttons.defaults().size(160f, 64f);
buttons.button("@add", Icon.add, () -> {
BaseDialog wave = new BaseDialog("@add");
wave.cont.ta
}).name("add");
addCloseButton();
}
Expand Down

0 comments on commit 830bca8

Please sign in to comment.