bc-minecraft-bedrock-vanilla-data 1.21.80-0 → 1.21.80-10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (69) hide show
  1. package/lib/src/Lib/Edu/BehaviorPack/biomes.d.ts +3 -0
  2. package/lib/src/Lib/Edu/BehaviorPack/biomes.js +6 -0
  3. package/lib/src/Lib/Edu/BehaviorPack/biomes.js.map +1 -0
  4. package/lib/src/Lib/Edu/ResourcePack/index.d.ts +2 -0
  5. package/lib/src/Lib/Edu/ResourcePack/index.js +2 -0
  6. package/lib/src/Lib/Edu/ResourcePack/index.js.map +1 -1
  7. package/lib/src/Lib/Edu/ResourcePack/texture-atlas-item.d.ts +2 -0
  8. package/lib/src/Lib/Edu/ResourcePack/texture-atlas-item.js +6 -0
  9. package/lib/src/Lib/Edu/ResourcePack/texture-atlas-item.js.map +1 -0
  10. package/lib/src/Lib/Edu/ResourcePack/texture-atlas-terrain.d.ts +2 -0
  11. package/lib/src/Lib/Edu/ResourcePack/texture-atlas-terrain.js +6 -0
  12. package/lib/src/Lib/Edu/ResourcePack/texture-atlas-terrain.js.map +1 -0
  13. package/lib/src/Lib/General/entities.js +13 -0
  14. package/lib/src/Lib/General/entities.js.map +1 -1
  15. package/lib/src/Lib/Types/BehaviorPack/Biome.d.ts +14 -0
  16. package/lib/src/Lib/Types/BehaviorPack/Biome.js +20 -0
  17. package/lib/src/Lib/Types/BehaviorPack/Biome.js.map +1 -0
  18. package/lib/src/Lib/Types/BehaviorPack/index.d.ts +1 -0
  19. package/lib/src/Lib/Types/BehaviorPack/index.js +1 -0
  20. package/lib/src/Lib/Types/BehaviorPack/index.js.map +1 -1
  21. package/lib/src/Lib/Types/ResourcePack/ResourcePack.d.ts +5 -0
  22. package/lib/src/Lib/Types/ResourcePack/TextureAtlas.d.ts +4 -0
  23. package/lib/src/Lib/Types/ResourcePack/TextureAtlas.js +3 -0
  24. package/lib/src/Lib/Types/ResourcePack/TextureAtlas.js.map +1 -0
  25. package/lib/src/Lib/Vanilla/BehaviorPack/biomes.d.ts +3 -0
  26. package/lib/src/Lib/Vanilla/BehaviorPack/biomes.js +1010 -0
  27. package/lib/src/Lib/Vanilla/BehaviorPack/biomes.js.map +1 -0
  28. package/lib/src/Lib/Vanilla/BehaviorPack/blocks.js +48 -0
  29. package/lib/src/Lib/Vanilla/BehaviorPack/blocks.js.map +1 -1
  30. package/lib/src/Lib/Vanilla/BehaviorPack/entities.js +38 -2
  31. package/lib/src/Lib/Vanilla/BehaviorPack/entities.js.map +1 -1
  32. package/lib/src/Lib/Vanilla/BehaviorPack/items.js +84 -0
  33. package/lib/src/Lib/Vanilla/BehaviorPack/items.js.map +1 -1
  34. package/lib/src/Lib/Vanilla/BehaviorPack/loot_tables.js +1 -0
  35. package/lib/src/Lib/Vanilla/BehaviorPack/loot_tables.js.map +1 -1
  36. package/lib/src/Lib/Vanilla/ResourcePack/animation_controllers.js +15 -4
  37. package/lib/src/Lib/Vanilla/ResourcePack/animation_controllers.js.map +1 -1
  38. package/lib/src/Lib/Vanilla/ResourcePack/animations.js +40 -8
  39. package/lib/src/Lib/Vanilla/ResourcePack/animations.js.map +1 -1
  40. package/lib/src/Lib/Vanilla/ResourcePack/entities.js +21 -6
  41. package/lib/src/Lib/Vanilla/ResourcePack/entities.js.map +1 -1
  42. package/lib/src/Lib/Vanilla/ResourcePack/fogs.js +4 -0
  43. package/lib/src/Lib/Vanilla/ResourcePack/fogs.js.map +1 -1
  44. package/lib/src/Lib/Vanilla/ResourcePack/index.d.ts +2 -0
  45. package/lib/src/Lib/Vanilla/ResourcePack/index.js +2 -0
  46. package/lib/src/Lib/Vanilla/ResourcePack/index.js.map +1 -1
  47. package/lib/src/Lib/Vanilla/ResourcePack/models.js +36 -7
  48. package/lib/src/Lib/Vanilla/ResourcePack/models.js.map +1 -1
  49. package/lib/src/Lib/Vanilla/ResourcePack/render_controllers.js +3 -0
  50. package/lib/src/Lib/Vanilla/ResourcePack/render_controllers.js.map +1 -1
  51. package/lib/src/Lib/Vanilla/ResourcePack/sounds.js +29 -1
  52. package/lib/src/Lib/Vanilla/ResourcePack/sounds.js.map +1 -1
  53. package/lib/src/Lib/Vanilla/ResourcePack/sounds_files.js +116 -9
  54. package/lib/src/Lib/Vanilla/ResourcePack/sounds_files.js.map +1 -1
  55. package/lib/src/Lib/Vanilla/ResourcePack/texture-atlas-item.d.ts +2 -0
  56. package/lib/src/Lib/Vanilla/ResourcePack/texture-atlas-item.js +483 -0
  57. package/lib/src/Lib/Vanilla/ResourcePack/texture-atlas-item.js.map +1 -0
  58. package/lib/src/Lib/Vanilla/ResourcePack/texture-atlas-terrain.d.ts +2 -0
  59. package/lib/src/Lib/Vanilla/ResourcePack/texture-atlas-terrain.js +1239 -0
  60. package/lib/src/Lib/Vanilla/ResourcePack/texture-atlas-terrain.js.map +1 -0
  61. package/lib/src/Lib/Vanilla/ResourcePack/textures.js +2848 -1
  62. package/lib/src/Lib/Vanilla/ResourcePack/textures.js.map +1 -1
  63. package/lib/src/Lib/Vanilla/sources.js +2749 -2
  64. package/lib/src/Lib/Vanilla/sources.js.map +1 -1
  65. package/lib/src/Lib/versions.js +3 -1
  66. package/lib/src/Lib/versions.js.map +1 -1
  67. package/lib/src/main.js +4 -0
  68. package/lib/src/main.js.map +1 -1
  69. package/package.json +9 -9
@@ -151,6 +151,14 @@ exports.SoundFiles = [
151
151
  "sounds/ambient/underwater/exit1",
152
152
  "sounds/ambient/underwater/exit2",
153
153
  "sounds/ambient/underwater/exit3",
154
+ "sounds/ambient/weather/end_flash1",
155
+ "sounds/ambient/weather/end_flash2",
156
+ "sounds/ambient/weather/end_flash3",
157
+ "sounds/ambient/weather/end_flash4",
158
+ "sounds/ambient/weather/end_flash5",
159
+ "sounds/ambient/weather/end_flash6",
160
+ "sounds/ambient/weather/end_flash7",
161
+ "sounds/ambient/weather/end_flash8",
154
162
  "sounds/ambient/weather/rain1",
155
163
  "sounds/ambient/weather/rain2",
156
164
  "sounds/ambient/weather/rain3",
@@ -215,6 +223,7 @@ exports.SoundFiles = [
215
223
  "sounds/armor/repair_wolf4",
216
224
  "sounds/armor/unequip_wolf1",
217
225
  "sounds/armor/unequip_wolf2",
226
+ "sounds/armor/unsaddle",
218
227
  "sounds/block/amethyst_cluster/break1",
219
228
  "sounds/block/amethyst_cluster/break1",
220
229
  "sounds/block/amethyst_cluster/break1",
@@ -1136,6 +1145,33 @@ exports.SoundFiles = [
1136
1145
  "sounds/block/deepslate/step6",
1137
1146
  "sounds/block/deepslate/step6",
1138
1147
  "sounds/block/deepslate/step6",
1148
+ "sounds/block/dried_ghast/ambient_water1",
1149
+ "sounds/block/dried_ghast/ambient_water2",
1150
+ "sounds/block/dried_ghast/ambient1",
1151
+ "sounds/block/dried_ghast/ambient2",
1152
+ "sounds/block/dried_ghast/ambient3",
1153
+ "sounds/block/dried_ghast/ambient4",
1154
+ "sounds/block/dried_ghast/break",
1155
+ "sounds/block/dried_ghast/place/place1",
1156
+ "sounds/block/dried_ghast/place/place2",
1157
+ "sounds/block/dried_ghast/place/place3",
1158
+ "sounds/block/dried_ghast/place/place4",
1159
+ "sounds/block/dried_ghast/place/place5",
1160
+ "sounds/block/dried_ghast/place/place6",
1161
+ "sounds/block/dried_ghast/placeinwater",
1162
+ "sounds/block/dried_ghast/step/step1",
1163
+ "sounds/block/dried_ghast/step/step1",
1164
+ "sounds/block/dried_ghast/step/step2",
1165
+ "sounds/block/dried_ghast/step/step2",
1166
+ "sounds/block/dried_ghast/step/step3",
1167
+ "sounds/block/dried_ghast/step/step3",
1168
+ "sounds/block/dried_ghast/step/step4",
1169
+ "sounds/block/dried_ghast/step/step4",
1170
+ "sounds/block/dried_ghast/step/step5",
1171
+ "sounds/block/dried_ghast/step/step5",
1172
+ "sounds/block/dried_ghast/step/step6",
1173
+ "sounds/block/dried_ghast/step/step6",
1174
+ "sounds/block/dried_ghast/transition",
1139
1175
  "sounds/block/dripstone/break1",
1140
1176
  "sounds/block/dripstone/break1",
1141
1177
  "sounds/block/dripstone/break1",
@@ -2950,6 +2986,7 @@ exports.SoundFiles = [
2950
2986
  "sounds/jump/wood3",
2951
2987
  "sounds/jump/wood4",
2952
2988
  "sounds/jump/wood4",
2989
+ "sounds/lead/break",
2953
2990
  "sounds/leashknot/break1",
2954
2991
  "sounds/leashknot/break2",
2955
2992
  "sounds/leashknot/break3",
@@ -3562,6 +3599,20 @@ exports.SoundFiles = [
3562
3599
  "sounds/mob/ghast/scream3",
3563
3600
  "sounds/mob/ghast/scream4",
3564
3601
  "sounds/mob/ghast/scream5",
3602
+ "sounds/mob/ghastling/ambient1",
3603
+ "sounds/mob/ghastling/ambient2",
3604
+ "sounds/mob/ghastling/ambient3",
3605
+ "sounds/mob/ghastling/ambient4",
3606
+ "sounds/mob/ghastling/ambient5",
3607
+ "sounds/mob/ghastling/ambient6",
3608
+ "sounds/mob/ghastling/ambient7",
3609
+ "sounds/mob/ghastling/death",
3610
+ "sounds/mob/ghastling/hurt1",
3611
+ "sounds/mob/ghastling/hurt2",
3612
+ "sounds/mob/ghastling/hurt3",
3613
+ "sounds/mob/ghastling/hurt4",
3614
+ "sounds/mob/ghastling/hurt5",
3615
+ "sounds/mob/ghastling/spawn",
3565
3616
  "sounds/mob/glow_squid/ambient1",
3566
3617
  "sounds/mob/glow_squid/ambient2",
3567
3618
  "sounds/mob/glow_squid/ambient3",
@@ -3683,6 +3734,32 @@ exports.SoundFiles = [
3683
3734
  "sounds/mob/guardian/land_idle2",
3684
3735
  "sounds/mob/guardian/land_idle3",
3685
3736
  "sounds/mob/guardian/land_idle4",
3737
+ "sounds/mob/happy_ghast/ambient1",
3738
+ "sounds/mob/happy_ghast/ambient10",
3739
+ "sounds/mob/happy_ghast/ambient11",
3740
+ "sounds/mob/happy_ghast/ambient12",
3741
+ "sounds/mob/happy_ghast/ambient13",
3742
+ "sounds/mob/happy_ghast/ambient14",
3743
+ "sounds/mob/happy_ghast/ambient2",
3744
+ "sounds/mob/happy_ghast/ambient3",
3745
+ "sounds/mob/happy_ghast/ambient4",
3746
+ "sounds/mob/happy_ghast/ambient5",
3747
+ "sounds/mob/happy_ghast/ambient6",
3748
+ "sounds/mob/happy_ghast/ambient7",
3749
+ "sounds/mob/happy_ghast/ambient8",
3750
+ "sounds/mob/happy_ghast/ambient9",
3751
+ "sounds/mob/happy_ghast/death",
3752
+ "sounds/mob/happy_ghast/ghast_ride",
3753
+ "sounds/mob/happy_ghast/goggles_down",
3754
+ "sounds/mob/happy_ghast/goggles_up",
3755
+ "sounds/mob/happy_ghast/harness_equip",
3756
+ "sounds/mob/happy_ghast/harness_unequip",
3757
+ "sounds/mob/happy_ghast/hurt1",
3758
+ "sounds/mob/happy_ghast/hurt2",
3759
+ "sounds/mob/happy_ghast/hurt3",
3760
+ "sounds/mob/happy_ghast/hurt4",
3761
+ "sounds/mob/happy_ghast/hurt5",
3762
+ "sounds/mob/happy_ghast/hurt6",
3686
3763
  "sounds/mob/hoglin/angry1",
3687
3764
  "sounds/mob/hoglin/angry2",
3688
3765
  "sounds/mob/hoglin/angry3",
@@ -3758,6 +3835,7 @@ exports.SoundFiles = [
3758
3835
  "sounds/mob/horse/hit2",
3759
3836
  "sounds/mob/horse/hit3",
3760
3837
  "sounds/mob/horse/hit4",
3838
+ "sounds/mob/horse/horse_armor_unequip",
3761
3839
  "sounds/mob/horse/idle1",
3762
3840
  "sounds/mob/horse/idle2",
3763
3841
  "sounds/mob/horse/idle3",
@@ -3822,6 +3900,7 @@ exports.SoundFiles = [
3822
3900
  "sounds/mob/irongolem/walk3",
3823
3901
  "sounds/mob/irongolem/walk4",
3824
3902
  "sounds/mob/llama/angry1",
3903
+ "sounds/mob/llama/carpet_unequip",
3825
3904
  "sounds/mob/llama/death1",
3826
3905
  "sounds/mob/llama/death2",
3827
3906
  "sounds/mob/llama/eat1",
@@ -4866,6 +4945,7 @@ exports.SoundFiles = [
4866
4945
  "sounds/music/game/aerie",
4867
4946
  "sounds/music/game/aerie",
4868
4947
  "sounds/music/game/aerie",
4948
+ "sounds/music/game/aerie",
4869
4949
  "sounds/music/game/an_ordinary_day",
4870
4950
  "sounds/music/game/an_ordinary_day",
4871
4951
  "sounds/music/game/an_ordinary_day",
@@ -4874,6 +4954,13 @@ exports.SoundFiles = [
4874
4954
  "sounds/music/game/an_ordinary_day",
4875
4955
  "sounds/music/game/ancestry",
4876
4956
  "sounds/music/game/ancestry",
4957
+ "sounds/music/game/below_and_above",
4958
+ "sounds/music/game/below_and_above",
4959
+ "sounds/music/game/below_and_above",
4960
+ "sounds/music/game/broken_clocks",
4961
+ "sounds/music/game/broken_clocks",
4962
+ "sounds/music/game/broken_clocks",
4963
+ "sounds/music/game/bromeliad",
4877
4964
  "sounds/music/game/bromeliad",
4878
4965
  "sounds/music/game/bromeliad",
4879
4966
  "sounds/music/game/bromeliad",
@@ -4886,6 +4973,8 @@ exports.SoundFiles = [
4886
4973
  "sounds/music/game/calm1",
4887
4974
  "sounds/music/game/calm1",
4888
4975
  "sounds/music/game/calm1",
4976
+ "sounds/music/game/calm1",
4977
+ "sounds/music/game/calm2",
4889
4978
  "sounds/music/game/calm2",
4890
4979
  "sounds/music/game/calm2",
4891
4980
  "sounds/music/game/calm2",
@@ -4902,6 +4991,8 @@ exports.SoundFiles = [
4902
4991
  "sounds/music/game/calm3",
4903
4992
  "sounds/music/game/calm3",
4904
4993
  "sounds/music/game/calm3",
4994
+ "sounds/music/game/calm3",
4995
+ "sounds/music/game/comforting_memories",
4905
4996
  "sounds/music/game/comforting_memories",
4906
4997
  "sounds/music/game/comforting_memories",
4907
4998
  "sounds/music/game/comforting_memories",
@@ -4917,7 +5008,6 @@ exports.SoundFiles = [
4917
5008
  "sounds/music/game/crescent_dunes",
4918
5009
  "sounds/music/game/deeper",
4919
5010
  "sounds/music/game/deeper",
4920
- "sounds/music/game/deeper",
4921
5011
  "sounds/music/game/echo_in_the_wind",
4922
5012
  "sounds/music/game/echo_in_the_wind",
4923
5013
  "sounds/music/game/echo_in_the_wind",
@@ -4926,7 +5016,6 @@ exports.SoundFiles = [
4926
5016
  "sounds/music/game/eld_unknown",
4927
5017
  "sounds/music/game/eld_unknown",
4928
5018
  "sounds/music/game/eld_unknown",
4929
- "sounds/music/game/eld_unknown",
4930
5019
  "sounds/music/game/end/boss",
4931
5020
  "sounds/music/game/end/credits",
4932
5021
  "sounds/music/game/end/end",
@@ -4934,8 +5023,6 @@ exports.SoundFiles = [
4934
5023
  "sounds/music/game/endless",
4935
5024
  "sounds/music/game/endless",
4936
5025
  "sounds/music/game/endless",
4937
- "sounds/music/game/endless",
4938
- "sounds/music/game/featherfall",
4939
5026
  "sounds/music/game/featherfall",
4940
5027
  "sounds/music/game/featherfall",
4941
5028
  "sounds/music/game/featherfall",
@@ -4946,6 +5033,11 @@ exports.SoundFiles = [
4946
5033
  "sounds/music/game/firebugs",
4947
5034
  "sounds/music/game/firebugs",
4948
5035
  "sounds/music/game/firebugs",
5036
+ "sounds/music/game/firebugs",
5037
+ "sounds/music/game/fireflies",
5038
+ "sounds/music/game/fireflies",
5039
+ "sounds/music/game/fireflies",
5040
+ "sounds/music/game/floating_dream",
4949
5041
  "sounds/music/game/floating_dream",
4950
5042
  "sounds/music/game/floating_dream",
4951
5043
  "sounds/music/game/floating_dream",
@@ -4971,6 +5063,8 @@ exports.SoundFiles = [
4971
5063
  "sounds/music/game/hal1",
4972
5064
  "sounds/music/game/hal1",
4973
5065
  "sounds/music/game/hal1",
5066
+ "sounds/music/game/hal1",
5067
+ "sounds/music/game/hal2",
4974
5068
  "sounds/music/game/hal2",
4975
5069
  "sounds/music/game/hal2",
4976
5070
  "sounds/music/game/hal2",
@@ -5001,6 +5095,8 @@ exports.SoundFiles = [
5001
5095
  "sounds/music/game/hal3",
5002
5096
  "sounds/music/game/hal3",
5003
5097
  "sounds/music/game/hal3",
5098
+ "sounds/music/game/hal3",
5099
+ "sounds/music/game/hal4",
5004
5100
  "sounds/music/game/hal4",
5005
5101
  "sounds/music/game/hal4",
5006
5102
  "sounds/music/game/hal4",
@@ -5020,12 +5116,13 @@ exports.SoundFiles = [
5020
5116
  "sounds/music/game/infinite_amethyst",
5021
5117
  "sounds/music/game/infinite_amethyst",
5022
5118
  "sounds/music/game/komorebi",
5023
- "sounds/music/game/komorebi",
5024
5119
  "sounds/music/game/labyrinthine",
5025
5120
  "sounds/music/game/labyrinthine",
5026
5121
  "sounds/music/game/labyrinthine",
5027
5122
  "sounds/music/game/labyrinthine",
5028
5123
  "sounds/music/game/labyrinthine",
5124
+ "sounds/music/game/labyrinthine",
5125
+ "sounds/music/game/left_to_bloom",
5029
5126
  "sounds/music/game/left_to_bloom",
5030
5127
  "sounds/music/game/left_to_bloom",
5031
5128
  "sounds/music/game/left_to_bloom",
@@ -5036,6 +5133,9 @@ exports.SoundFiles = [
5036
5133
  "sounds/music/game/left_to_bloom",
5037
5134
  "sounds/music/game/left_to_bloom",
5038
5135
  "sounds/music/game/left_to_bloom",
5136
+ "sounds/music/game/lilypad",
5137
+ "sounds/music/game/lilypad",
5138
+ "sounds/music/game/lilypad",
5039
5139
  "sounds/music/game/nether/chrysopoeia",
5040
5140
  "sounds/music/game/nether/nether1",
5041
5141
  "sounds/music/game/nether/nether1",
@@ -5074,6 +5174,8 @@ exports.SoundFiles = [
5074
5174
  "sounds/music/game/nuance1",
5075
5175
  "sounds/music/game/nuance1",
5076
5176
  "sounds/music/game/nuance1",
5177
+ "sounds/music/game/nuance1",
5178
+ "sounds/music/game/nuance2",
5077
5179
  "sounds/music/game/nuance2",
5078
5180
  "sounds/music/game/nuance2",
5079
5181
  "sounds/music/game/nuance2",
@@ -5099,6 +5201,10 @@ exports.SoundFiles = [
5099
5201
  "sounds/music/game/one_more_day",
5100
5202
  "sounds/music/game/one_more_day",
5101
5203
  "sounds/music/game/one_more_day",
5204
+ "sounds/music/game/one_more_day",
5205
+ "sounds/music/game/os_piano",
5206
+ "sounds/music/game/os_piano",
5207
+ "sounds/music/game/os_piano",
5102
5208
  "sounds/music/game/piano1",
5103
5209
  "sounds/music/game/piano1",
5104
5210
  "sounds/music/game/piano1",
@@ -5110,6 +5216,8 @@ exports.SoundFiles = [
5110
5216
  "sounds/music/game/piano1",
5111
5217
  "sounds/music/game/piano1",
5112
5218
  "sounds/music/game/piano1",
5219
+ "sounds/music/game/piano1",
5220
+ "sounds/music/game/piano2",
5113
5221
  "sounds/music/game/piano2",
5114
5222
  "sounds/music/game/piano2",
5115
5223
  "sounds/music/game/piano2",
@@ -5136,13 +5244,12 @@ exports.SoundFiles = [
5136
5244
  "sounds/music/game/piano3",
5137
5245
  "sounds/music/game/piano3",
5138
5246
  "sounds/music/game/piano3",
5139
- "sounds/music/game/pokopoko",
5247
+ "sounds/music/game/piano3",
5140
5248
  "sounds/music/game/pokopoko",
5141
5249
  "sounds/music/game/pokopoko",
5142
5250
  "sounds/music/game/pokopoko",
5143
5251
  "sounds/music/game/pokopoko",
5144
5252
  "sounds/music/game/puzzlebox",
5145
- "sounds/music/game/puzzlebox",
5146
5253
  "sounds/music/game/records/11",
5147
5254
  "sounds/music/game/records/13",
5148
5255
  "sounds/music/game/records/5",
@@ -5152,6 +5259,7 @@ exports.SoundFiles = [
5152
5259
  "sounds/music/game/records/creator",
5153
5260
  "sounds/music/game/records/creator_music_box",
5154
5261
  "sounds/music/game/records/far",
5262
+ "sounds/music/game/records/lava_chicken",
5155
5263
  "sounds/music/game/records/mall",
5156
5264
  "sounds/music/game/records/mellohi",
5157
5265
  "sounds/music/game/records/otherside",
@@ -5160,6 +5268,7 @@ exports.SoundFiles = [
5160
5268
  "sounds/music/game/records/relic",
5161
5269
  "sounds/music/game/records/stal",
5162
5270
  "sounds/music/game/records/strad",
5271
+ "sounds/music/game/records/tears",
5163
5272
  "sounds/music/game/records/wait",
5164
5273
  "sounds/music/game/records/ward",
5165
5274
  "sounds/music/game/stand_tall",
@@ -5170,7 +5279,6 @@ exports.SoundFiles = [
5170
5279
  "sounds/music/game/stand_tall",
5171
5280
  "sounds/music/game/stand_tall",
5172
5281
  "sounds/music/game/watcher",
5173
- "sounds/music/game/watcher",
5174
5282
  "sounds/music/game/water/axolotl",
5175
5283
  "sounds/music/game/water/dragon_fish",
5176
5284
  "sounds/music/game/water/shuniji",
@@ -5183,7 +5291,6 @@ exports.SoundFiles = [
5183
5291
  "sounds/music/game/wending",
5184
5292
  "sounds/music/game/wending",
5185
5293
  "sounds/music/game/yakusoku",
5186
- "sounds/music/game/yakusoku",
5187
5294
  "sounds/music/menu/menu1",
5188
5295
  "sounds/music/menu/menu2",
5189
5296
  "sounds/music/menu/menu3",