From 489160a761a0f774c19520e17da21b5c224a3633 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=A8=E8=90=BD=E5=9F=BA=E5=9B=B4=E8=99=BE?= <3161880837@qq.com> Date: Wed, 27 Aug 2025 21:20:58 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BF=98=E4=BA=86=EF=BC=88copilot=E6=B2=A1?= =?UTF-8?q?=E4=BA=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/Feeds/Dango.tscn | 4 ++-- scripts/Tools/FieldStore.gd | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/components/Feeds/Dango.tscn b/components/Feeds/Dango.tscn index f4a08e7..273ae2f 100644 --- a/components/Feeds/Dango.tscn +++ b/components/Feeds/Dango.tscn @@ -7,9 +7,9 @@ avatarTexture = ExtResource("2_ckr7l") displayName = "团子" fields = Array[int]([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17]) -fieldValues = Array[float]([10.0, 0.1, 0.15, 0.12, 0.04, 0.1, 0.075, 5.0, 0.15, 3.0, 0.07, 0.15, 0.1, 0.4, 0.2, 2.0, 2.0, 25.0]) +fieldValues = Array[float]([20.0, 0.21, 0.1, 0.33, 0.08, 0.15, 0.1, -5.0, 0.25, 4.0, 0.12, 0.15, 0.18, 0.6, 0.15, 2.0, 2.0, 35.0]) costs = Array[int]([0, 1]) -costCounts = Array[int]([2000, 1500]) +costCounts = Array[int]([5000, 6750]) [node name="avatar" parent="container/info" index="0"] texture = ExtResource("2_ckr7l") diff --git a/scripts/Tools/FieldStore.gd b/scripts/Tools/FieldStore.gd index 7c4dc66..8005756 100644 --- a/scripts/Tools/FieldStore.gd +++ b/scripts/Tools/FieldStore.gd @@ -74,7 +74,7 @@ static var entityApplier = { entity.inventoryMax[ItemStore.ItemType.APPLE] += value , Entity.EXTRA_BULLET_COUNT: func(entity, value): - entity.fields[Entity.OFFSET_SHOOT] += value * 5 + entity.fields[Entity.OFFSET_SHOOT] += value * 2 , }