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 , }