mirror of
https://github.com/Rundll86/Dog-Lynx-And-HCN.git
synced 2026-05-28 06:51:54 +08:00
fix: 调整子弹伤害和角色冷却时间
- 提高FireScan子弹的伤害值从5到20 - 调整Chick角色的攻击冷却时间,将attackCooldownMap[2]从100增加到2000 - 移除Wave中未使用的chick变量
This commit is contained in:
@@ -3,7 +3,7 @@ class_name FireScan
|
|||||||
|
|
||||||
func register():
|
func register():
|
||||||
speed = 10
|
speed = 10
|
||||||
damage = 5
|
damage = 20
|
||||||
|
|
||||||
func ai():
|
func ai():
|
||||||
PresetBulletAI.forward(self, rotation)
|
PresetBulletAI.forward(self, rotation)
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ func register():
|
|||||||
fields[FieldStore.Entity.MOVEMENT_SPEED] = 0.4
|
fields[FieldStore.Entity.MOVEMENT_SPEED] = 0.4
|
||||||
attackCooldownMap[0] = 500
|
attackCooldownMap[0] = 500
|
||||||
attackCooldownMap[1] = 6000
|
attackCooldownMap[1] = 6000
|
||||||
attackCooldownMap[2] = 100
|
attackCooldownMap[2] = 2000
|
||||||
attackCooldownMap[3] = 500
|
attackCooldownMap[3] = 500
|
||||||
sprintMultiplier = 30
|
sprintMultiplier = 30
|
||||||
func spawn():
|
func spawn():
|
||||||
|
|||||||
@@ -24,10 +24,9 @@ static var data = []
|
|||||||
static func customStart():
|
static func customStart():
|
||||||
var furryr = EntityBase.generate(preload("res://components/Characters/Bear.tscn"), MathTool.randv2_range(500), true, false)
|
var furryr = EntityBase.generate(preload("res://components/Characters/Bear.tscn"), MathTool.randv2_range(500), true, false)
|
||||||
var kukemc = EntityBase.generate(preload("res://components/Characters/KukeMC.tscn"), MathTool.randv2_range(500), true, false)
|
var kukemc = EntityBase.generate(preload("res://components/Characters/KukeMC.tscn"), MathTool.randv2_range(500), true, false)
|
||||||
var chick = EntityBase.generate(preload("res://components/Characters/Chick.tscn"), MathTool.randv2_range(500), true, false)
|
EntityBase.generate(preload("res://components/Characters/Chick.tscn"), MathTool.randv2_range(500), true, false)
|
||||||
furryr.currentFocusedBoss = kukemc
|
furryr.currentFocusedBoss = kukemc
|
||||||
kukemc.currentFocusedBoss = furryr
|
kukemc.currentFocusedBoss = furryr
|
||||||
chick.currentFocusedBoss = furryr
|
|
||||||
static func create(
|
static func create(
|
||||||
entity_: PackedScene,
|
entity_: PackedScene,
|
||||||
minCount_: int = 1,
|
minCount_: int = 1,
|
||||||
|
|||||||
Reference in New Issue
Block a user