1
1
mirror of https://github.com/Rundll86/Dog-Lynx-And-HCN.git synced 2026-05-28 06:51:54 +08:00

feat(角色属性): 调整KukeMC和Bear的最大生命值

将KukeMC的最大生命值从3000提升至3500,Bear的最大生命值从500提升至1500,以增强角色生存能力
This commit is contained in:
2025-09-26 22:46:58 +08:00
parent 84d9eabd2b
commit 0288b266ed
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ class_name Bear
@onready var mask: Sprite2D = $"%mask"
func register():
fields[FieldStore.Entity.MAX_HEALTH] = 500
fields[FieldStore.Entity.MAX_HEALTH] = 1500
fields[FieldStore.Entity.MOVEMENT_SPEED] = 0.5
fields[FieldStore.Entity.OFFSET_SHOOT] = 0
attackCooldownMap[0] = 3000
+1 -1
View File
@@ -4,7 +4,7 @@ class_name KukeMC
var canSummon: bool = true
func register():
fields[FieldStore.Entity.MAX_HEALTH] = 3000
fields[FieldStore.Entity.MAX_HEALTH] = 3500
fields[FieldStore.Entity.MOVEMENT_SPEED] = 0.5
attackCooldownMap[0] = 2000
attackCooldownMap[1] = 5000