1
1
mirror of https://github.com/Rundll86/Dog-Lynx-And-HCN.git synced 2026-05-28 23:11:54 +08:00
Files
Dog-Lynx-And-HCN/scripts/Contents/Bullets/RedCrystal.gd
T
fallingshrimp 9cc5c7bd94 feat(武器系统): 为红水晶武器添加水晶碎片弹射效果
新增水晶碎片子弹类型,当红水晶爆炸时会向随机方向发射碎片
修改红水晶武器配置,添加碎片数量和伤害百分比属性
更新武器描述以反映新功能
2025-12-17 22:21:10 +08:00

19 lines
659 B
GDScript

extends BulletBase
class_name RedCrystalBullet
var radius: float = 0
var percent: float = 0
func register():
hitbox.shape = hitbox.shape.duplicate()
func ai():
PresetBulletAI.forward(self, rotation)
speed = (1 - lifeTimePercent()) * initialSpeed
func destroy(_beacuseMap: bool):
hitbox.shape.radius = radius
EffectController.create(ComponentManager.getEffect("RedCrystalExplosion"), global_position).shot()
for bullet in BulletBase.generate(ComponentManager.getBullet("CrystalBlock"), launcher, position, deg_to_rad(randf_range(0, 360))):
if bullet is CrystalBlockBullet:
bullet.baseDamage = baseDamage * percent
await TickTool.millseconds(100)