diff --git a/scripts/Contents/Bullets/BossAttack/KukeMC/HeavyCrystal.gd b/scripts/Contents/Bullets/BossAttack/KukeMC/HeavyCrystal.gd index 26aa2a2..6c7bed6 100644 --- a/scripts/Contents/Bullets/BossAttack/KukeMC/HeavyCrystal.gd +++ b/scripts/Contents/Bullets/BossAttack/KukeMC/HeavyCrystal.gd @@ -6,7 +6,6 @@ var readyTime: float = 1000 func register(): speed = 10 - damage = 30 func ai(): if timeLived() < readyTime: PresetBulletAI.lockLauncher(self, launcher, true) @@ -16,4 +15,5 @@ func ai(): track.visible = false hitbox.disabled = false PresetBulletAI.forward(self, rotation) + damage = speed / 5 speed *= 1.15