diff --git a/components/Debug/FeedHasField.tscn b/components/Debug/FeedHasField.tscn index 95817e2..1e15fda 100644 --- a/components/Debug/FeedHasField.tscn +++ b/components/Debug/FeedHasField.tscn @@ -5,5 +5,5 @@ [node name="FeedHasField" type="HBoxContainer"] theme_override_constants/separation = 0 script = ExtResource("1_7leag") -targetFields = Array[int]([7]) +targetFields = Array[int]([1]) clickToRefresh = true diff --git a/components/Feeds/Dango.tscn b/components/Feeds/Dango.tscn index 2aef541..ecb3abf 100644 --- a/components/Feeds/Dango.tscn +++ b/components/Feeds/Dango.tscn @@ -7,10 +7,10 @@ avatarTexture = ExtResource("2_ckr7l") displayName = "团子" quality = 4 -fields = Array[int]([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17]) -fieldValues = Array[float]([80.0, 0.11, 0.05, 0.06, 0.08, 0.12, 0.08, -5.0, 0.1, 2.0, 0.12, 0.1, 0.06, 0.2, 0.06, 2.0, 1.0, 35.0]) +fields = Array[int]([0, 8, 9]) +fieldValues = Array[float]([30.0, 0.1, 2.0]) costs = Array[int]([0, 1]) -costCounts = Array[int]([10000, 12500]) +costCounts = Array[int]([500, 150]) [node name="avatar" parent="container/info" index="0"] texture = ExtResource("2_ckr7l") diff --git a/components/Feeds/FruitSalad.tscn b/components/Feeds/FruitSalad.tscn index 3e44184..e696ff4 100644 --- a/components/Feeds/FruitSalad.tscn +++ b/components/Feeds/FruitSalad.tscn @@ -8,12 +8,13 @@ avatarTexture = ExtResource("2_2oxe7") displayName = "水果沙拉" quality = 0 fields = Array[int]([1]) -fieldValues = Array[float]([0.05]) +fieldValues = Array[float]([0.1]) costs = Array[int]([1]) -costCounts = Array[int]([350]) +costCounts = Array[int]([200]) [node name="avatar" parent="container/info" index="0"] texture = ExtResource("2_2oxe7") [node name="name" parent="container/info" index="1"] displayName = "水果沙拉" +quality = 0 diff --git a/components/Feeds/Milk.tscn b/components/Feeds/Milk.tscn index 81aa22d..285e085 100644 --- a/components/Feeds/Milk.tscn +++ b/components/Feeds/Milk.tscn @@ -7,8 +7,8 @@ avatarTexture = ExtResource("2_15plv") displayName = "牛奶" quality = 2 -fields = Array[int]([13, 11, 8]) -fieldValues = Array[float]([0.1, 0.24, 0.07]) +fields = Array[int]([13, 11, 8, 19]) +fieldValues = Array[float]([0.1, 0.24, 0.07, 0.02]) costs = Array[int]([0, 1]) costCounts = Array[int]([355, 200]) diff --git a/components/Feeds/Puffs.tscn b/components/Feeds/Puffs.tscn index 0b48b8d..816e6b4 100644 --- a/components/Feeds/Puffs.tscn +++ b/components/Feeds/Puffs.tscn @@ -7,8 +7,8 @@ avatarTexture = ExtResource("2_p35iw") displayName = "奶酪泡芙" quality = 3 -fields = Array[int]([10, 5, 13]) -fieldValues = Array[float]([0.06, 0.12, 0.08]) +fields = Array[int]([10, 5, 13, 15]) +fieldValues = Array[float]([0.06, 0.12, 0.08, 1.0]) costs = Array[int]([0, 1]) costCounts = Array[int]([250, 100]) diff --git a/components/Feeds/Xigua-Full.tscn b/components/Feeds/Xigua-Full.tscn index 1856684..16862dd 100644 --- a/components/Feeds/Xigua-Full.tscn +++ b/components/Feeds/Xigua-Full.tscn @@ -6,8 +6,8 @@ [node name="Xigua-Full" instance=ExtResource("1_sw8vc")] avatarTexture = ExtResource("2_j4m35") displayName = "西瓜" -fields = Array[int]([2, 0]) -fieldValues = Array[float]([-0.15, 30.0]) +fields = Array[int]([2, 0, 11]) +fieldValues = Array[float]([-0.15, 30.0, 0.1]) costs = Array[int]([0, 1]) costCounts = Array[int]([100, 125]) diff --git a/components/Feeds/YellowJam.tscn b/components/Feeds/YellowJam.tscn index 1300ca9..1e39571 100644 --- a/components/Feeds/YellowJam.tscn +++ b/components/Feeds/YellowJam.tscn @@ -6,8 +6,8 @@ [node name="YellowJam" instance=ExtResource("1_evi6p")] avatarTexture = ExtResource("2_bea7w") displayName = "蜂蜜果酱" -fields = Array[int]([3, 1]) -fieldValues = Array[float]([-0.11, 0.16]) +fields = Array[int]([3, 1, 12]) +fieldValues = Array[float]([-0.11, 0.16, 0.03]) costs = Array[int]([0, 1]) costCounts = Array[int]([200, 125]) diff --git a/scripts/Tools/FieldStore.gd b/scripts/Tools/FieldStore.gd index 5ce0ce1..1b20dc8 100644 --- a/scripts/Tools/FieldStore.gd +++ b/scripts/Tools/FieldStore.gd @@ -76,11 +76,11 @@ static var entityMapType = { Entity.ENERGY_REGENERATION: DataType.PERCENT, } static var entityMaxValueMap = { - Entity.CRIT_RATE: 1, - Entity.PENERATE: 1, - Entity.PENARATION_RESISTANCE: 1, - Entity.PRICE_REDUCTION: 0.8, - Entity.DROP_APPLE_RATE: 0.5, + Entity.CRIT_RATE: 0.8, + Entity.PENERATE: 0.8, + Entity.PENARATION_RESISTANCE: 0.5, + Entity.PRICE_REDUCTION: 0.4, + Entity.DROP_APPLE_RATE: 0.4, Entity.FEED_COUNT_SHOW: 6 } static var entityApplier = {