mirror of
https://github.com/Rundll86/Dog-Lynx-And-HCN.git
synced 2026-06-02 01:11:54 +08:00
feat: 调整武器和召唤物属性及初始波次
修改多个武器和召唤物的属性值,包括生命值、伤害计算和能量消耗 调整初始波次从0改为9,优化游戏初始难度 更新武器卡片的UI显示和描述文本
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
|
||||
[ext_resource type="PackedScene" uid="uid://ckq2cq6m23hq3" path="res://components/Abstracts/WeaponCardBase.tscn" id="1_x1nyl"]
|
||||
[ext_resource type="Texture2D" uid="uid://ccxdfsg5071t4" path="res://resources/bullets/chain-gun/Chain_Gun.webp" id="2_ghn43"]
|
||||
[ext_resource type="Script" path="res://scripts/Contents/Weapons/ChainGun.gd" id="2_ponmu"]
|
||||
[ext_resource type="Script" uid="uid://dev0urlc13rxc" path="res://scripts/Contents/Weapons/ChainGun.gd" id="2_ponmu"]
|
||||
|
||||
[node name="ChainGun" instance=ExtResource("1_x1nyl")]
|
||||
script = ExtResource("2_ponmu")
|
||||
@@ -20,16 +20,23 @@ storeType = {
|
||||
"split": 1
|
||||
}
|
||||
descriptionTemplate = "以$split单位的间隔发射$count个[b]微型水晶[/b],可造成$atk点伤害。"
|
||||
needEnergy = 2.0
|
||||
needEnergy = 0.3
|
||||
cooldown = 50.0
|
||||
|
||||
[node name="avatar" parent="container/info" index="0"]
|
||||
texture = ExtResource("2_ghn43")
|
||||
|
||||
[node name="energy" parent="container/info/infos/energyInfo" index="1"]
|
||||
text = "0.5"
|
||||
|
||||
[node name="beachball" parent="container/info/infos" index="1"]
|
||||
count = 400
|
||||
|
||||
[node name="soul" parent="container/info/infos" index="2"]
|
||||
count = 1
|
||||
|
||||
[node name="name" parent="container/info" index="2"]
|
||||
displayName = "链式机枪"
|
||||
|
||||
[node name="description" parent="container" index="2"]
|
||||
text = "[center]以[color=cyan]30[/color]→[color=yellow]28[/color]单位的间隔发射[color=cyan]1[/color]→[color=yellow]1[/color]个[b]微型水晶[/b],可造成[color=cyan]10[/color]→[color=yellow]12[/color]点伤害。[/center]"
|
||||
text = "[center]以[color=cyan]30[/color]单位的间隔发射[color=cyan]1[/color]个[b]微型水晶[/b],可造成[color=cyan]10[/color]点伤害。[/center]"
|
||||
|
||||
@@ -19,12 +19,15 @@ storeType = {
|
||||
"time": 0
|
||||
}
|
||||
descriptionTemplate = "召唤[b]抓狂的哈基米[/b],跟踪敌人,每$time秒造成$atk点伤害。"
|
||||
needEnergy = 60.0
|
||||
cooldown = 1000.0
|
||||
debugRebuild = true
|
||||
|
||||
[node name="avatar" parent="container/info" index="0"]
|
||||
texture = ExtResource("2_74sfb")
|
||||
|
||||
[node name="energy" parent="container/info/infos/energyInfo" index="1"]
|
||||
text = "100.0"
|
||||
|
||||
[node name="beachball" parent="container/info/infos" index="1"]
|
||||
count = 600
|
||||
|
||||
|
||||
@@ -28,9 +28,8 @@ storeType = {
|
||||
"trace": 0.0
|
||||
}
|
||||
descriptionTemplate = "召唤[b]彩虹旗[/b],每$angle发射1/$count条以$power效率追踪$trace秒的[b]七彩光标[/b],每条造成$atk点伤害。"
|
||||
needEnergy = 75.0
|
||||
needEnergy = 35.0
|
||||
cooldown = 1000.0
|
||||
debugRebuild = true
|
||||
|
||||
[node name="attack" parent="sounds" index="0"]
|
||||
stream = ExtResource("4_c5xse")
|
||||
|
||||
@@ -5,7 +5,7 @@ func register():
|
||||
speed = 0
|
||||
penerate = 1
|
||||
func ai():
|
||||
damage = launcher.velocity.length() / 250
|
||||
damage = launcher.velocity.length() / 500
|
||||
PresetBulletAI.lockLauncher(self, launcher, true)
|
||||
if !launcher.sprinting:
|
||||
tryDestroy()
|
||||
|
||||
@@ -4,7 +4,7 @@ var attackTime: float = 0
|
||||
var tracer: EntityBase = null
|
||||
|
||||
func register():
|
||||
fields[FieldStore.Entity.MAX_HEALTH] = 75
|
||||
fields[FieldStore.Entity.MAX_HEALTH] = 150
|
||||
fields[FieldStore.Entity.MOVEMENT_SPEED] = 1.5
|
||||
await TickTool.frame()
|
||||
attackCooldownMap[0] = attackTime
|
||||
|
||||
@@ -6,7 +6,7 @@ var count: int = 0
|
||||
var angle: float = 0
|
||||
|
||||
func register():
|
||||
fields[FieldStore.Entity.MAX_HEALTH] = 50
|
||||
fields[FieldStore.Entity.MAX_HEALTH] = 200
|
||||
attackCooldownMap[0] = 1000
|
||||
func ai():
|
||||
tryAttack(0)
|
||||
|
||||
@@ -8,7 +8,7 @@ var from: float = 0
|
||||
var to: float = 0
|
||||
var per: int = 0
|
||||
|
||||
static var current: int = 0
|
||||
static var current: int = 9
|
||||
static var WAVE_NORMAL = [
|
||||
Wave.create("Hen", 1, 5, false, 0, INF, 1),
|
||||
Wave.create("Chick", 0, 0, true, 9, INF, 15),
|
||||
|
||||
Reference in New Issue
Block a user