1
1
mirror of https://github.com/Rundll86/Dog-Lynx-And-HCN.git synced 2026-06-07 04:07:13 +08:00

feat: 添加SCBlock和Bengbeng子弹类型及相关资源

feat(角色): 为Kernyr和CyberCat添加新攻击类型

refactor(角色): 更新Kernyr角色贴图和显示名称

feat(关卡): 调整测试关卡配置和敌人波次

style: 更新子弹资源文件及导入配置
This commit is contained in:
2026-04-04 21:07:16 +08:00
parent c413744dbf
commit b343708b3b
35 changed files with 716 additions and 18 deletions
+21
View File
@@ -0,0 +1,21 @@
extends EntityBase
class_name CyberCatEntity
func register():
fields[FieldStore.Entity.MAX_HEALTH] = 1500
fields[FieldStore.Entity.OFFSET_SHOOT] = 0
fields[FieldStore.Entity.MOVEMENT_SPEED] = 0.2
attackCooldownMap[0] = 6000
attackCooldownMap[1] = 10000
attackCooldownMap[2] = 100
func ai():
PresetEntityAI.follow(self , currentFocusedBoss)
for i in 3:
tryAttack(i)
func attack(type: int):
if type == 0:
BulletBase.generate(ComponentManager.getBullet("Bengbeng"), self , position, 0)
elif type == 1:
heal(percentHealth(0.05))
elif type == 2:
BulletBase.generate(ComponentManager.getBullet("SCBlock"), self , position, 0)
@@ -0,0 +1 @@
uid://cnqdjw7i7noxk
+4
View File
@@ -11,10 +11,12 @@ func register():
attackCooldownMap[0] = 2000
attackCooldownMap[1] = 100
attackCooldownMap[2] = 10000
attackCooldownMap[3] = 4500
attackMutexes = [2]
func ai():
for i in 3:
tryAttack(i, [2])
# tryAttack(3)
func attack(type: int):
if type == 0:
for i in randi_range(7, 16):
@@ -62,3 +64,5 @@ func attack(type: int):
await TickTool.frame()
await TickTool.millseconds(2000)
await chargeUp()
elif type == 3:
BulletBase.generate(ComponentManager.getBullet("Bengbeng"), self , position, 0)