1
1
mirror of https://github.com/Rundll86/Dog-Lynx-And-HCN.git synced 2026-05-28 06:51:54 +08:00
Files
Dog-Lynx-And-HCN/scripts/Contents/Bullets/RedCrystal.gd
T
fallingshrimp e2da3ec86e feat(游戏内容): 添加能量方块角色和矢量核心武器
添加新的能量方块角色实体及其相关资源文件
新增矢量核心武器卡牌配置
调整彩虹糖的数值平衡
修改波次生成逻辑,允许Boss波次生成小怪
修复红水晶子弹在发射者无效时的崩溃问题
2026-04-26 14:02:02 +08:00

22 lines
754 B
GDScript

extends BulletBase
class_name RedCrystalBullet
var radius: float = 0
var percent: float = 0
var count: int = 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()
if !is_instance_valid(launcher):return
for i in randi_range(1, count):
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)