diff --git a/components/Bullets/FoxZhua.tscn b/components/Bullets/FoxZhua.tscn index 6645bb9..a8924c5 100644 --- a/components/Bullets/FoxZhua.tscn +++ b/components/Bullets/FoxZhua.tscn @@ -196,7 +196,10 @@ height = 290.0 script = ExtResource("2_rl21b") canTrace = true displayName = "爪" +speed = 0.07 penerate = 1.0 +indisDamage = true +canDamageSelf = true autoSpawnAnimation = true freeAfterSpawn = true diff --git a/scripts/Contents/Bullets/FoxZhua.gd b/scripts/Contents/Bullets/FoxZhua.gd index 074038e..5b436cb 100644 --- a/scripts/Contents/Bullets/FoxZhua.gd +++ b/scripts/Contents/Bullets/FoxZhua.gd @@ -5,4 +5,4 @@ class_name FoxZhua func ai(): if canTrace: - PresetBulletAI.lerpPosition(self, launcher.currentFocusedBoss.getTrackingAnchor() - Vector2(0, 200), 0.07) + PresetBulletAI.lerpPosition(self, launcher.currentFocusedBoss.getTrackingAnchor() - Vector2(0, 200), speed) \ No newline at end of file diff --git a/scripts/Contents/Wave.gd b/scripts/Contents/Wave.gd index 70a7c25..dbcecb3 100644 --- a/scripts/Contents/Wave.gd +++ b/scripts/Contents/Wave.gd @@ -22,7 +22,7 @@ func duplicate() -> Wave: wave.per = per return wave -static var current: int = startWith(1) +static var current: int = startWith(10) static var WAVE_NORMAL = [ Wave.create("Hen", 1, 3, false, 0, INF, 1), Wave.create("Cat", 1, 3, false, 0, INF, 1),