Skip to content

Commit

Permalink
Add more bullets that should be in the immune bullets seq to it
Browse files Browse the repository at this point in the history
  • Loading branch information
MEEPofFaith committed Mar 17, 2024
1 parent 6ff2a0b commit c0da904
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/progressed/entities/bullet/PillarFieldBulletType.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import arc.math.*;
import arc.struct.*;
import arc.util.*;
import blackhole.utils.*;
import mindustry.content.*;
import mindustry.entities.*;
import mindustry.entities.bullet.*;
Expand Down Expand Up @@ -37,6 +38,10 @@ public class PillarFieldBulletType extends BulletType{

public Effect placeEffect = OtherFx.pillarPlace;

static{
BlackHoleUtils.immuneBulletTypes.add(PillarFieldBulletType.class);
}

public PillarFieldBulletType(){
super();

Expand Down
5 changes: 5 additions & 0 deletions src/progressed/entities/bullet/energy/AbyssBulletType.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import arc.math.*;
import arc.math.geom.*;
import arc.util.*;
import blackhole.utils.*;
import mindustry.content.*;
import mindustry.entities.*;
import mindustry.entities.bullet.*;
Expand All @@ -20,6 +21,10 @@ public class AbyssBulletType extends BulletType{
public Effect swirlEffect = Fx.none;
public Effect growEffect = Fx.none;

static{
BlackHoleUtils.immuneBulletTypes.add(AbyssBulletType.class);
}

public AbyssBulletType(){
super(0.01f, 0f);

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package progressed.entities.bullet.pseudo3d;

import arc.graphics.*;
import blackhole.utils.*;
import mindustry.content.*;
import mindustry.entities.bullet.*;
import mindustry.gen.*;
Expand All @@ -16,6 +17,10 @@ public class SkyBeamBulletType extends BulletType{
public Color baseColor = PMPal.nexusLaserDark;
public Color topColor = PMPal.nexusLaser.cpy().a(0);

static{
BlackHoleUtils.immuneBulletTypes.add(SkyBeamBulletType.class);
}

public SkyBeamBulletType(float speed, float damage){
super(speed, damage);

Expand Down

0 comments on commit c0da904

Please sign in to comment.