mirror of
https://github.com/Rundll86/Dog-Lynx-And-HCN.git
synced 2026-05-28 23:11:54 +08:00
33b2b16b70
重构蓝水晶和紫水晶武器的伤害计算方式,将蓝水晶的基础伤害从3降至2 移除紫水晶子弹的分裂和折射功能,将其逻辑移至BulletBase基类 更新相关场景文件中的显示文本和配置参数 调整角色初始武器配置,移除无用音效资源
9 lines
247 B
GDScript
9 lines
247 B
GDScript
extends BulletBase
|
|
|
|
func ai():
|
|
PresetBulletAI.forward(self, rotation)
|
|
func destroy(_beacuseMap: bool):
|
|
var eff = EffectController.create(ComponentManager.getEffect("PurpleCrystalExplosion"), global_position)
|
|
eff.rotation = rotation
|
|
eff.shot()
|