diff --git a/components/Bullets/WhiteSoul.tscn b/components/Bullets/WhiteSoul.tscn index 1100df5..48633f0 100644 --- a/components/Bullets/WhiteSoul.tscn +++ b/components/Bullets/WhiteSoul.tscn @@ -45,6 +45,7 @@ alpha_curve = SubResource("CurveTexture_bd63g") texture_filter = 1 script = ExtResource("2_ld7n7") speed = 1.0 +lifeTime = 1000.0 [node name="texture" parent="." index="0"] rotation = -1.5708 diff --git a/scripts/Contents/Bullets/WhiteSoul.gd b/scripts/Contents/Bullets/WhiteSoul.gd index 7f166c3..02b8f04 100644 --- a/scripts/Contents/Bullets/WhiteSoul.gd +++ b/scripts/Contents/Bullets/WhiteSoul.gd @@ -3,6 +3,6 @@ extends BulletBase func register(): speed = 1 func ai(): - speed *= 1.1 + speed *= 1.05 damage = speed PresetBulletAI.forward(self, rotation)