sapdon 2.0.0

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 (908) hide show
  1. package/.gitattributes +2 -0
  2. package/LICENSE +21 -0
  3. package/README.md +26 -0
  4. package/doc/api.md +128 -0
  5. package/examples/digitCircuit/build.config +28 -0
  6. package/examples/digitCircuit/dev/digitCircuit_BP/blocks/sapdon_and_gate.json +152 -0
  7. package/examples/digitCircuit/dev/digitCircuit_BP/blocks/sapdon_not_gate.json +152 -0
  8. package/examples/digitCircuit/dev/digitCircuit_BP/blocks/sapdon_or_gate.json +152 -0
  9. package/examples/digitCircuit/dev/digitCircuit_BP/blocks/sapdon_wire.json +103 -0
  10. package/examples/digitCircuit/dev/digitCircuit_BP/manifest.json +60 -0
  11. package/examples/digitCircuit/dev/digitCircuit_BP/pack_icon.png +0 -0
  12. package/examples/digitCircuit/dev/digitCircuit_BP/scripts/index.js +95 -0
  13. package/examples/digitCircuit/dev/digitCircuit_RP/blocks.json +43 -0
  14. package/examples/digitCircuit/dev/digitCircuit_RP/manifest.json +44 -0
  15. package/examples/digitCircuit/dev/digitCircuit_RP/models/blocks/arcane_workbench.geo.json +106 -0
  16. package/examples/digitCircuit/dev/digitCircuit_RP/models/blocks/crop.geo.json +147 -0
  17. package/examples/digitCircuit/dev/digitCircuit_RP/models/blocks/jar_normal.geo.json +47 -0
  18. package/examples/digitCircuit/dev/digitCircuit_RP/models/blocks/jar_normal_0.geo.json +59 -0
  19. package/examples/digitCircuit/dev/digitCircuit_RP/models/blocks/jar_normal_1.geo.json +59 -0
  20. package/examples/digitCircuit/dev/digitCircuit_RP/models/blocks/jar_normal_2.geo.json +59 -0
  21. package/examples/digitCircuit/dev/digitCircuit_RP/models/blocks/jar_normal_3.geo.json +59 -0
  22. package/examples/digitCircuit/dev/digitCircuit_RP/models/blocks/wire.geo.json +154 -0
  23. package/examples/digitCircuit/dev/digitCircuit_RP/pack_icon.png +0 -0
  24. package/examples/digitCircuit/dev/digitCircuit_RP/textures/blocks/and_gate.png +0 -0
  25. package/examples/digitCircuit/dev/digitCircuit_RP/textures/blocks/not_gate.png +0 -0
  26. package/examples/digitCircuit/dev/digitCircuit_RP/textures/blocks/or_gate.png +0 -0
  27. package/examples/digitCircuit/dev/digitCircuit_RP/textures/blocks/test_log_oak.png +0 -0
  28. package/examples/digitCircuit/dev/digitCircuit_RP/textures/blocks/test_log_top.png +0 -0
  29. package/examples/digitCircuit/dev/digitCircuit_RP/textures/blocks/wire.png +0 -0
  30. package/examples/digitCircuit/dev/digitCircuit_RP/textures/item_texture.json +9 -0
  31. package/examples/digitCircuit/dev/digitCircuit_RP/textures/items/masterball.png +0 -0
  32. package/examples/digitCircuit/dev/digitCircuit_RP/textures/terrain_texture.json +26 -0
  33. package/examples/digitCircuit/lib/wire.js +20 -0
  34. package/examples/digitCircuit/main.mjs +14 -0
  35. package/examples/digitCircuit/mod.info +7 -0
  36. package/examples/digitCircuit/pack_icon.png +0 -0
  37. package/examples/digitCircuit/res/models/blocks/arcane_workbench.geo.json +106 -0
  38. package/examples/digitCircuit/res/models/blocks/crop.geo.json +147 -0
  39. package/examples/digitCircuit/res/models/blocks/jar_normal.geo.json +47 -0
  40. package/examples/digitCircuit/res/models/blocks/jar_normal_0.geo.json +59 -0
  41. package/examples/digitCircuit/res/models/blocks/jar_normal_1.geo.json +59 -0
  42. package/examples/digitCircuit/res/models/blocks/jar_normal_2.geo.json +59 -0
  43. package/examples/digitCircuit/res/models/blocks/jar_normal_3.geo.json +59 -0
  44. package/examples/digitCircuit/res/models/blocks/wire.geo.json +154 -0
  45. package/examples/digitCircuit/res/textures/blocks/and_gate.png +0 -0
  46. package/examples/digitCircuit/res/textures/blocks/not_gate.png +0 -0
  47. package/examples/digitCircuit/res/textures/blocks/or_gate.png +0 -0
  48. package/examples/digitCircuit/res/textures/blocks/test_log_oak.png +0 -0
  49. package/examples/digitCircuit/res/textures/blocks/test_log_top.png +0 -0
  50. package/examples/digitCircuit/res/textures/blocks/wire.png +0 -0
  51. package/examples/digitCircuit/res/textures/items/masterball.png +0 -0
  52. package/examples/digitCircuit/scripts/index.js +95 -0
  53. package/examples/masterball/build.config +28 -0
  54. package/examples/masterball/dev/masterball[1.20.20+].mcaddon.zip +0 -0
  55. package/examples/masterball/dev/masterball_BP/entities/sapdon_projectile_masterball.json +56 -0
  56. package/examples/masterball/dev/masterball_BP/items/sapdon_caught_masterball.json +32 -0
  57. package/examples/masterball/dev/masterball_BP/items/sapdon_uncaught_masterball.json +31 -0
  58. package/examples/masterball/dev/masterball_BP/manifest.json +60 -0
  59. package/examples/masterball/dev/masterball_BP/masterball_BP_1_20_20/entities/sapdon_projectile_masterball.json +56 -0
  60. package/examples/masterball/dev/masterball_BP/masterball_BP_1_20_20/items/sapdon_caught_masterball.json +32 -0
  61. package/examples/masterball/dev/masterball_BP/masterball_BP_1_20_20/items/sapdon_uncaught_masterball.json +31 -0
  62. package/examples/masterball/dev/masterball_BP/masterball_BP_1_20_20/manifest.json +60 -0
  63. package/examples/masterball/dev/masterball_BP/masterball_BP_1_20_20/pack_icon.png +0 -0
  64. package/examples/masterball/dev/masterball_BP/masterball_BP_1_20_20/scripts/index.js +159 -0
  65. package/examples/masterball/dev/masterball_BP/masterball_BP_1_20_20.zip +0 -0
  66. package/examples/masterball/dev/masterball_BP/pack_icon.png +0 -0
  67. package/examples/masterball/dev/masterball_BP/scripts/index.js +159 -0
  68. package/examples/masterball/dev/masterball_RP/blocks.json +3 -0
  69. package/examples/masterball/dev/masterball_RP/entity/sapdon_projectile_masterball.json +28 -0
  70. package/examples/masterball/dev/masterball_RP/manifest.json +44 -0
  71. package/examples/masterball/dev/masterball_RP/masterball_RP_1_20_20.zip +0 -0
  72. package/examples/masterball/dev/masterball_RP/pack_icon.png +0 -0
  73. package/examples/masterball/dev/masterball_RP/textures/blocks/test_log_oak.png +0 -0
  74. package/examples/masterball/dev/masterball_RP/textures/blocks/test_log_top.png +0 -0
  75. package/examples/masterball/dev/masterball_RP/textures/item_texture.json +9 -0
  76. package/examples/masterball/dev/masterball_RP/textures/items/masterball.png +0 -0
  77. package/examples/masterball/dev/masterball_RP/textures/terrain_texture.json +14 -0
  78. package/examples/masterball/main.mjs +24 -0
  79. package/examples/masterball/mod.info +7 -0
  80. package/examples/masterball/pack_icon.png +0 -0
  81. package/examples/masterball/res/textures/blocks/test_log_oak.png +0 -0
  82. package/examples/masterball/res/textures/blocks/test_log_top.png +0 -0
  83. package/examples/masterball/res/textures/items/masterball.png +0 -0
  84. package/examples/masterball/scripts/index.js +159 -0
  85. package/examples/test/dev/test_BP/biomes/test_biome.json +48 -0
  86. package/examples/test/dev/test_BP/blocks/sapdon_block.json +111 -0
  87. package/examples/test/dev/test_BP/blocks/sapdon_ore_cinnabar.json +16 -0
  88. package/examples/test/dev/test_BP/blocks/sapdon_test_block.json +16 -0
  89. package/examples/test/dev/test_BP/blocks/sapdon_test_crop.json +192 -0
  90. package/examples/test/dev/test_BP/blocks/sapdon_wire.json +103 -0
  91. package/examples/test/dev/test_BP/entities/sapdon_body.json +118 -0
  92. package/examples/test/dev/test_BP/entities/sapdon_test_entity_ctrl1.json +55 -0
  93. package/examples/test/dev/test_BP/entities/sapdon_test_entity_ctrl2.json +61 -0
  94. package/examples/test/dev/test_BP/entities/sapdon_test_entity_header.json +408 -0
  95. package/examples/test/dev/test_BP/entities/sapdon_test_projectile.json +56 -0
  96. package/examples/test/dev/test_BP/feature_rules/ore_cinnabar_orefeatre_rule.json +53 -0
  97. package/examples/test/dev/test_BP/feature_rules/overworld_underground_titanite_ore_feature.json +53 -0
  98. package/examples/test/dev/test_BP/features/ore_cinnabar_ore_feature.json +17 -0
  99. package/examples/test/dev/test_BP/features/titanite_ore_feature.json +23 -0
  100. package/examples/test/dev/test_BP/items/sapdon_chest.json +23 -0
  101. package/examples/test/dev/test_BP/items/sapdon_test_food.json +26 -0
  102. package/examples/test/dev/test_BP/items/sapdon_test_item.json +31 -0
  103. package/examples/test/dev/test_BP/manifest.json +60 -0
  104. package/examples/test/dev/test_BP/pack_icon.png +0 -0
  105. package/examples/test/dev/test_BP/recipes/sapdon_test_furnace.json +13 -0
  106. package/examples/test/dev/test_BP/scripts/custom_components/cropComponent.js +59 -0
  107. package/examples/test/dev/test_BP/scripts/index.js +101 -0
  108. package/examples/test/dev/test_RP/attachables/sapdon_chest.json +25 -0
  109. package/examples/test/dev/test_RP/blocks.json +43 -0
  110. package/examples/test/dev/test_RP/entity/sapdon_body.json +44 -0
  111. package/examples/test/dev/test_RP/entity/sapdon_test_entity_ctrl1.json +38 -0
  112. package/examples/test/dev/test_RP/entity/sapdon_test_entity_ctrl2.json +38 -0
  113. package/examples/test/dev/test_RP/entity/sapdon_test_entity_header.json +44 -0
  114. package/examples/test/dev/test_RP/entity/sapdon_test_projectile.json +28 -0
  115. package/examples/test/dev/test_RP/manifest.json +44 -0
  116. package/examples/test/dev/test_RP/models/blocks/arcane_workbench.geo.json +106 -0
  117. package/examples/test/dev/test_RP/models/blocks/crop.geo.json +147 -0
  118. package/examples/test/dev/test_RP/models/blocks/jar_normal.geo.json +47 -0
  119. package/examples/test/dev/test_RP/models/blocks/jar_normal_0.geo.json +59 -0
  120. package/examples/test/dev/test_RP/models/blocks/jar_normal_1.geo.json +59 -0
  121. package/examples/test/dev/test_RP/models/blocks/jar_normal_2.geo.json +59 -0
  122. package/examples/test/dev/test_RP/models/blocks/jar_normal_3.geo.json +59 -0
  123. package/examples/test/dev/test_RP/models/blocks/wire.geo.json +154 -0
  124. package/examples/test/dev/test_RP/pack_icon.png +0 -0
  125. package/examples/test/dev/test_RP/textures/blocks/animatedglow.png +0 -0
  126. package/examples/test/dev/test_RP/textures/blocks/arcane_workbench_side.png +0 -0
  127. package/examples/test/dev/test_RP/textures/blocks/arcane_workbench_top.png +0 -0
  128. package/examples/test/dev/test_RP/textures/blocks/base_wood_grain.png +0 -0
  129. package/examples/test/dev/test_RP/textures/blocks/castleBlock_darkBrickBloody_0.png +0 -0
  130. package/examples/test/dev/test_RP/textures/blocks/castleBlock_darkSlab_0.png +0 -0
  131. package/examples/test/dev/test_RP/textures/blocks/castleBlock_purpleBrick_0.png +0 -0
  132. package/examples/test/dev/test_RP/textures/blocks/castleBlock_purpleSlab_0.png +0 -0
  133. package/examples/test/dev/test_RP/textures/blocks/churchAltar.png +0 -0
  134. package/examples/test/dev/test_RP/textures/blocks/compass_block_down.png +0 -0
  135. package/examples/test/dev/test_RP/textures/blocks/compass_block_east.png +0 -0
  136. package/examples/test/dev/test_RP/textures/blocks/compass_block_north.png +0 -0
  137. package/examples/test/dev/test_RP/textures/blocks/compass_block_south.png +0 -0
  138. package/examples/test/dev/test_RP/textures/blocks/compass_block_up.png +0 -0
  139. package/examples/test/dev/test_RP/textures/blocks/compass_block_west.png +0 -0
  140. package/examples/test/dev/test_RP/textures/blocks/cursedEarth_0.png +0 -0
  141. package/examples/test/dev/test_RP/textures/blocks/custom_chestplate.png +0 -0
  142. package/examples/test/dev/test_RP/textures/blocks/garlicTorchStrong_0.png +0 -0
  143. package/examples/test/dev/test_RP/textures/blocks/garlicTorchWeak_0.png +0 -0
  144. package/examples/test/dev/test_RP/textures/blocks/garlic_stage_0.png +0 -0
  145. package/examples/test/dev/test_RP/textures/blocks/garlic_stage_1.png +0 -0
  146. package/examples/test/dev/test_RP/textures/blocks/garlic_stage_2.png +0 -0
  147. package/examples/test/dev/test_RP/textures/blocks/garlic_stage_3.png +0 -0
  148. package/examples/test/dev/test_RP/textures/blocks/jar_bottom.png +0 -0
  149. package/examples/test/dev/test_RP/textures/blocks/jar_brine.png +0 -0
  150. package/examples/test/dev/test_RP/textures/blocks/jar_side.png +0 -0
  151. package/examples/test/dev/test_RP/textures/blocks/jar_side_void.png +0 -0
  152. package/examples/test/dev/test_RP/textures/blocks/jar_top.png +0 -0
  153. package/examples/test/dev/test_RP/textures/blocks/jar_top_void.png +0 -0
  154. package/examples/test/dev/test_RP/textures/blocks/ore_cinnabar.png +0 -0
  155. package/examples/test/dev/test_RP/textures/blocks/test_block.png +0 -0
  156. package/examples/test/dev/test_RP/textures/blocks/test_log_oak.png +0 -0
  157. package/examples/test/dev/test_RP/textures/blocks/test_log_top.png +0 -0
  158. package/examples/test/dev/test_RP/textures/blocks/vampireOrchid_0.png +0 -0
  159. package/examples/test/dev/test_RP/textures/blocks/wheat_stage_0.png +0 -0
  160. package/examples/test/dev/test_RP/textures/blocks/wheat_stage_1.png +0 -0
  161. package/examples/test/dev/test_RP/textures/blocks/wheat_stage_2.png +0 -0
  162. package/examples/test/dev/test_RP/textures/blocks/wheat_stage_3.png +0 -0
  163. package/examples/test/dev/test_RP/textures/blocks/wheat_stage_4.png +0 -0
  164. package/examples/test/dev/test_RP/textures/blocks/wheat_stage_5.png +0 -0
  165. package/examples/test/dev/test_RP/textures/blocks/wheat_stage_6.png +0 -0
  166. package/examples/test/dev/test_RP/textures/blocks/wheat_stage_7.png +0 -0
  167. package/examples/test/dev/test_RP/textures/blocks/wire.png +0 -0
  168. package/examples/test/dev/test_RP/textures/entity/vampire.png +0 -0
  169. package/examples/test/dev/test_RP/textures/entity/vampire1.png +0 -0
  170. package/examples/test/dev/test_RP/textures/entity//345/220/270/350/241/200/347/211/233.png +0 -0
  171. package/examples/test/dev/test_RP/textures/entity//345/220/270/350/241/200/347/213/227.png +0 -0
  172. package/examples/test/dev/test_RP/textures/entity//345/220/270/350/241/200/347/214/252.png +0 -0
  173. package/examples/test/dev/test_RP/textures/flipbook_textures.json +1 -0
  174. package/examples/test/dev/test_RP/textures/item_texture.json +789 -0
  175. package/examples/test/dev/test_RP/textures/items/alumentum.png +0 -0
  176. package/examples/test/dev/test_RP/textures/items/amber.png +0 -0
  177. package/examples/test/dev/test_RP/textures/items/amulet_fancy.png +0 -0
  178. package/examples/test/dev/test_RP/textures/items/amulet_mundane.png +0 -0
  179. package/examples/test/dev/test_RP/textures/items/amulet_runic.png +0 -0
  180. package/examples/test/dev/test_RP/textures/items/amulet_runic_emergency.png +0 -0
  181. package/examples/test/dev/test_RP/textures/items/amulet_vis.png +0 -0
  182. package/examples/test/dev/test_RP/textures/items/amulet_vis_stone.png +0 -0
  183. package/examples/test/dev/test_RP/textures/items/banner.png +0 -0
  184. package/examples/test/dev/test_RP/textures/items/banner_cultist.png +0 -0
  185. package/examples/test/dev/test_RP/textures/items/banner_stand.png +0 -0
  186. package/examples/test/dev/test_RP/textures/items/banner_symbol.png +0 -0
  187. package/examples/test/dev/test_RP/textures/items/bath_salts.png +0 -0
  188. package/examples/test/dev/test_RP/textures/items/bone_bow.png +0 -0
  189. package/examples/test/dev/test_RP/textures/items/bone_bow_0.png +0 -0
  190. package/examples/test/dev/test_RP/textures/items/bone_bow_1.png +0 -0
  191. package/examples/test/dev/test_RP/textures/items/bone_bow_2.png +0 -0
  192. package/examples/test/dev/test_RP/textures/items/bottle_taint.png +0 -0
  193. package/examples/test/dev/test_RP/textures/items/brain.png +0 -0
  194. package/examples/test/dev/test_RP/textures/items/brass_gear.png +0 -0
  195. package/examples/test/dev/test_RP/textures/items/brass_plate.png +0 -0
  196. package/examples/test/dev/test_RP/textures/items/bucket_death.png +0 -0
  197. package/examples/test/dev/test_RP/textures/items/bucket_pure.png +0 -0
  198. package/examples/test/dev/test_RP/textures/items/chunk_beef.png +0 -0
  199. package/examples/test/dev/test_RP/textures/items/chunk_chicken.png +0 -0
  200. package/examples/test/dev/test_RP/textures/items/chunk_fish.png +0 -0
  201. package/examples/test/dev/test_RP/textures/items/chunk_mutton.png +0 -0
  202. package/examples/test/dev/test_RP/textures/items/chunk_pork.png +0 -0
  203. package/examples/test/dev/test_RP/textures/items/chunk_rabbit.png +0 -0
  204. package/examples/test/dev/test_RP/textures/items/cloth_boots.png +0 -0
  205. package/examples/test/dev/test_RP/textures/items/cloth_boots_over.png +0 -0
  206. package/examples/test/dev/test_RP/textures/items/cloth_chest.png +0 -0
  207. package/examples/test/dev/test_RP/textures/items/cloth_chest_over.png +0 -0
  208. package/examples/test/dev/test_RP/textures/items/cloth_legs.png +0 -0
  209. package/examples/test/dev/test_RP/textures/items/cloth_legs_over.png +0 -0
  210. package/examples/test/dev/test_RP/textures/items/cluster_cinnabar.png +0 -0
  211. package/examples/test/dev/test_RP/textures/items/cluster_copper.png +0 -0
  212. package/examples/test/dev/test_RP/textures/items/cluster_gold.png +0 -0
  213. package/examples/test/dev/test_RP/textures/items/cluster_iron.png +0 -0
  214. package/examples/test/dev/test_RP/textures/items/cluster_lead.png +0 -0
  215. package/examples/test/dev/test_RP/textures/items/cluster_silver.png +0 -0
  216. package/examples/test/dev/test_RP/textures/items/cluster_tin.png +0 -0
  217. package/examples/test/dev/test_RP/textures/items/coin.png +0 -0
  218. package/examples/test/dev/test_RP/textures/items/creative_caster.png +0 -0
  219. package/examples/test/dev/test_RP/textures/items/creative_node.png +0 -0
  220. package/examples/test/dev/test_RP/textures/items/creative_obelisk.png +0 -0
  221. package/examples/test/dev/test_RP/textures/items/crimson_blade.png +0 -0
  222. package/examples/test/dev/test_RP/textures/items/crimson_boots.png +0 -0
  223. package/examples/test/dev/test_RP/textures/items/crimson_plate_chest.png +0 -0
  224. package/examples/test/dev/test_RP/textures/items/crimson_plate_helm.png +0 -0
  225. package/examples/test/dev/test_RP/textures/items/crimson_plate_legs.png +0 -0
  226. package/examples/test/dev/test_RP/textures/items/crimson_praetor_chest.png +0 -0
  227. package/examples/test/dev/test_RP/textures/items/crimson_praetor_helm.png +0 -0
  228. package/examples/test/dev/test_RP/textures/items/crimson_praetor_legs.png +0 -0
  229. package/examples/test/dev/test_RP/textures/items/crimson_rites.png +0 -0
  230. package/examples/test/dev/test_RP/textures/items/crimson_robe_chest.png +0 -0
  231. package/examples/test/dev/test_RP/textures/items/crimson_robe_helm.png +0 -0
  232. package/examples/test/dev/test_RP/textures/items/crimson_robe_legs.png +0 -0
  233. package/examples/test/dev/test_RP/textures/items/crystal_essence.png +0 -0
  234. package/examples/test/dev/test_RP/textures/items/crystal_planter.png +0 -0
  235. package/examples/test/dev/test_RP/textures/items/custom_chestplate.png +0 -0
  236. package/examples/test/dev/test_RP/textures/items/discovery.png +0 -0
  237. package/examples/test/dev/test_RP/textures/items/discovery_overlay.png +0 -0
  238. package/examples/test/dev/test_RP/textures/items/eldritch_eye.png +0 -0
  239. package/examples/test/dev/test_RP/textures/items/elemental_axe.png +0 -0
  240. package/examples/test/dev/test_RP/textures/items/elemental_hoe.png +0 -0
  241. package/examples/test/dev/test_RP/textures/items/elemental_pick.png +0 -0
  242. package/examples/test/dev/test_RP/textures/items/elemental_shovel.png +0 -0
  243. package/examples/test/dev/test_RP/textures/items/elemental_sword.png +0 -0
  244. package/examples/test/dev/test_RP/textures/items/fabric.png +0 -0
  245. package/examples/test/dev/test_RP/textures/items/filter.png +0 -0
  246. package/examples/test/dev/test_RP/textures/items/flux_sponge.png +0 -0
  247. package/examples/test/dev/test_RP/textures/items/focus_pouch.png +0 -0
  248. package/examples/test/dev/test_RP/textures/items/fortress_chest.png +0 -0
  249. package/examples/test/dev/test_RP/textures/items/fortress_helm.png +0 -0
  250. package/examples/test/dev/test_RP/textures/items/fortress_legs.png +0 -0
  251. package/examples/test/dev/test_RP/textures/items/girdle_fancy.png +0 -0
  252. package/examples/test/dev/test_RP/textures/items/girdle_hover.png +0 -0
  253. package/examples/test/dev/test_RP/textures/items/girdle_mundane.png +0 -0
  254. package/examples/test/dev/test_RP/textures/items/girdle_runic.png +0 -0
  255. package/examples/test/dev/test_RP/textures/items/girdle_runic_kinetic.png +0 -0
  256. package/examples/test/dev/test_RP/textures/items/goggles_revealing.png +0 -0
  257. package/examples/test/dev/test_RP/textures/items/golem.png +0 -0
  258. package/examples/test/dev/test_RP/textures/items/golem_bell.png +0 -0
  259. package/examples/test/dev/test_RP/textures/items/hand_mirror.png +0 -0
  260. package/examples/test/dev/test_RP/textures/items/ingot_brass.png +0 -0
  261. package/examples/test/dev/test_RP/textures/items/ingot_thaumium.png +0 -0
  262. package/examples/test/dev/test_RP/textures/items/ingot_void.png +0 -0
  263. package/examples/test/dev/test_RP/textures/items/iron_plate.png +0 -0
  264. package/examples/test/dev/test_RP/textures/items/jar_brace.png +0 -0
  265. package/examples/test/dev/test_RP/textures/items/knowledge_fragment.png +0 -0
  266. package/examples/test/dev/test_RP/textures/items/label.png +0 -0
  267. package/examples/test/dev/test_RP/textures/items/label_overlay.png +0 -0
  268. package/examples/test/dev/test_RP/textures/items/loot_bag_common.png +0 -0
  269. package/examples/test/dev/test_RP/textures/items/loot_bag_rare.png +0 -0
  270. package/examples/test/dev/test_RP/textures/items/loot_bag_uncommon.png +0 -0
  271. package/examples/test/dev/test_RP/textures/items/masterball.png +0 -0
  272. package/examples/test/dev/test_RP/textures/items/mind_biothaumic.png +0 -0
  273. package/examples/test/dev/test_RP/textures/items/mind_clockwork.png +0 -0
  274. package/examples/test/dev/test_RP/textures/items/mirrored_glass.png +0 -0
  275. package/examples/test/dev/test_RP/textures/items/module_aggression.png +0 -0
  276. package/examples/test/dev/test_RP/textures/items/module_vision.png +0 -0
  277. package/examples/test/dev/test_RP/textures/items/morphic_resonator.png +0 -0
  278. package/examples/test/dev/test_RP/textures/items/nugget_brass.png +0 -0
  279. package/examples/test/dev/test_RP/textures/items/nugget_copper.png +0 -0
  280. package/examples/test/dev/test_RP/textures/items/nugget_iron.png +0 -0
  281. package/examples/test/dev/test_RP/textures/items/nugget_lead.png +0 -0
  282. package/examples/test/dev/test_RP/textures/items/nugget_quicksilver.png +0 -0
  283. package/examples/test/dev/test_RP/textures/items/nugget_silver.png +0 -0
  284. package/examples/test/dev/test_RP/textures/items/nugget_thaumium.png +0 -0
  285. package/examples/test/dev/test_RP/textures/items/nugget_tin.png +0 -0
  286. package/examples/test/dev/test_RP/textures/items/nugget_void.png +0 -0
  287. package/examples/test/dev/test_RP/textures/items/phial.png +0 -0
  288. package/examples/test/dev/test_RP/textures/items/phial_overlay.png +0 -0
  289. package/examples/test/dev/test_RP/textures/items/primal_arrow_air.png +0 -0
  290. package/examples/test/dev/test_RP/textures/items/primal_arrow_earth.png +0 -0
  291. package/examples/test/dev/test_RP/textures/items/primal_arrow_entropy.png +0 -0
  292. package/examples/test/dev/test_RP/textures/items/primal_arrow_fire.png +0 -0
  293. package/examples/test/dev/test_RP/textures/items/primal_arrow_order.png +0 -0
  294. package/examples/test/dev/test_RP/textures/items/primal_arrow_water.png +0 -0
  295. package/examples/test/dev/test_RP/textures/items/primal_charm.png +0 -0
  296. package/examples/test/dev/test_RP/textures/items/primal_crusher.png +0 -0
  297. package/examples/test/dev/test_RP/textures/items/primordial_pearl.png +0 -0
  298. package/examples/test/dev/test_RP/textures/items/quicksilver.png +0 -0
  299. package/examples/test/dev/test_RP/textures/items/researchnotes.png +0 -0
  300. package/examples/test/dev/test_RP/textures/items/researchnotes_overlay.png +0 -0
  301. package/examples/test/dev/test_RP/textures/items/resonator.png +0 -0
  302. package/examples/test/dev/test_RP/textures/items/ring_apprentice.png +0 -0
  303. package/examples/test/dev/test_RP/textures/items/ring_fancy.png +0 -0
  304. package/examples/test/dev/test_RP/textures/items/ring_mundane.png +0 -0
  305. package/examples/test/dev/test_RP/textures/items/ring_protection.png +0 -0
  306. package/examples/test/dev/test_RP/textures/items/ring_runic.png +0 -0
  307. package/examples/test/dev/test_RP/textures/items/ring_runic_charge.png +0 -0
  308. package/examples/test/dev/test_RP/textures/items/ring_runic_regen.png +0 -0
  309. package/examples/test/dev/test_RP/textures/items/ring_verdant.png +0 -0
  310. package/examples/test/dev/test_RP/textures/items/runed_tablet.png +0 -0
  311. package/examples/test/dev/test_RP/textures/items/salis_mundus.png +0 -0
  312. package/examples/test/dev/test_RP/textures/items/sanity_checker.png +0 -0
  313. package/examples/test/dev/test_RP/textures/items/sanity_soap.png +0 -0
  314. package/examples/test/dev/test_RP/textures/items/scribing_tools.png +0 -0
  315. package/examples/test/dev/test_RP/textures/items/seals/seal_blank.png +0 -0
  316. package/examples/test/dev/test_RP/textures/items/seals/seal_breaker.png +0 -0
  317. package/examples/test/dev/test_RP/textures/items/seals/seal_breaker.png.mcmeta +6 -0
  318. package/examples/test/dev/test_RP/textures/items/seals/seal_butcher.png +0 -0
  319. package/examples/test/dev/test_RP/textures/items/seals/seal_butcher.png.mcmeta +6 -0
  320. package/examples/test/dev/test_RP/textures/items/seals/seal_empty.png +0 -0
  321. package/examples/test/dev/test_RP/textures/items/seals/seal_empty.png.mcmeta +6 -0
  322. package/examples/test/dev/test_RP/textures/items/seals/seal_empty_advanced.png +0 -0
  323. package/examples/test/dev/test_RP/textures/items/seals/seal_empty_advanced.png.mcmeta +6 -0
  324. package/examples/test/dev/test_RP/textures/items/seals/seal_fill.png +0 -0
  325. package/examples/test/dev/test_RP/textures/items/seals/seal_fill.png.mcmeta +6 -0
  326. package/examples/test/dev/test_RP/textures/items/seals/seal_fill_advanced.png +0 -0
  327. package/examples/test/dev/test_RP/textures/items/seals/seal_fill_advanced.png.mcmeta +6 -0
  328. package/examples/test/dev/test_RP/textures/items/seals/seal_guard.png +0 -0
  329. package/examples/test/dev/test_RP/textures/items/seals/seal_guard.png.mcmeta +6 -0
  330. package/examples/test/dev/test_RP/textures/items/seals/seal_guard_advanced.png +0 -0
  331. package/examples/test/dev/test_RP/textures/items/seals/seal_guard_advanced.png.mcmeta +6 -0
  332. package/examples/test/dev/test_RP/textures/items/seals/seal_harvest.png +0 -0
  333. package/examples/test/dev/test_RP/textures/items/seals/seal_harvest.png.mcmeta +6 -0
  334. package/examples/test/dev/test_RP/textures/items/seals/seal_lumber.png +0 -0
  335. package/examples/test/dev/test_RP/textures/items/seals/seal_lumber.png.mcmeta +6 -0
  336. package/examples/test/dev/test_RP/textures/items/seals/seal_pickup.png +0 -0
  337. package/examples/test/dev/test_RP/textures/items/seals/seal_pickup.png.mcmeta +6 -0
  338. package/examples/test/dev/test_RP/textures/items/seals/seal_pickup_advanced.png +0 -0
  339. package/examples/test/dev/test_RP/textures/items/seals/seal_pickup_advanced.png.mcmeta +6 -0
  340. package/examples/test/dev/test_RP/textures/items/seals/seal_provider.png +0 -0
  341. package/examples/test/dev/test_RP/textures/items/seals/seal_provider.png.mcmeta +6 -0
  342. package/examples/test/dev/test_RP/textures/items/seals/seal_use.png +0 -0
  343. package/examples/test/dev/test_RP/textures/items/seals/seal_use.png.mcmeta +6 -0
  344. package/examples/test/dev/test_RP/textures/items/shard.png +0 -0
  345. package/examples/test/dev/test_RP/textures/items/shard_balanced.png +0 -0
  346. package/examples/test/dev/test_RP/textures/items/sinister_stone.png +0 -0
  347. package/examples/test/dev/test_RP/textures/items/sinister_stone_active.png +0 -0
  348. package/examples/test/dev/test_RP/textures/items/taint_slime.png +0 -0
  349. package/examples/test/dev/test_RP/textures/items/taint_tendril.png +0 -0
  350. package/examples/test/dev/test_RP/textures/items/tallow.png +0 -0
  351. package/examples/test/dev/test_RP/textures/items/thaumium_axe.png +0 -0
  352. package/examples/test/dev/test_RP/textures/items/thaumium_boots.png +0 -0
  353. package/examples/test/dev/test_RP/textures/items/thaumium_chest.png +0 -0
  354. package/examples/test/dev/test_RP/textures/items/thaumium_gear.png +0 -0
  355. package/examples/test/dev/test_RP/textures/items/thaumium_helm.png +0 -0
  356. package/examples/test/dev/test_RP/textures/items/thaumium_hoe.png +0 -0
  357. package/examples/test/dev/test_RP/textures/items/thaumium_legs.png +0 -0
  358. package/examples/test/dev/test_RP/textures/items/thaumium_pick.png +0 -0
  359. package/examples/test/dev/test_RP/textures/items/thaumium_plate.png +0 -0
  360. package/examples/test/dev/test_RP/textures/items/thaumium_shovel.png +0 -0
  361. package/examples/test/dev/test_RP/textures/items/thaumium_sword.png +0 -0
  362. package/examples/test/dev/test_RP/textures/items/thaumometer.png +0 -0
  363. package/examples/test/dev/test_RP/textures/items/thaumonomicon.png +0 -0
  364. package/examples/test/dev/test_RP/textures/items/thaumonomicon_cheat.png +0 -0
  365. package/examples/test/dev/test_RP/textures/items/thaumostatic_harness.png +0 -0
  366. package/examples/test/dev/test_RP/textures/items/traveller_boots.png +0 -0
  367. package/examples/test/dev/test_RP/textures/items/tripletreat.png +0 -0
  368. package/examples/test/dev/test_RP/textures/items/tube_buffer.png +0 -0
  369. package/examples/test/dev/test_RP/textures/items/tube_filter.png +0 -0
  370. package/examples/test/dev/test_RP/textures/items/tube_normal.png +0 -0
  371. package/examples/test/dev/test_RP/textures/items/tube_oneway.png +0 -0
  372. package/examples/test/dev/test_RP/textures/items/tube_restrict.png +0 -0
  373. package/examples/test/dev/test_RP/textures/items/tube_valve.png +0 -0
  374. package/examples/test/dev/test_RP/textures/items/turret_advanced.png +0 -0
  375. package/examples/test/dev/test_RP/textures/items/turret_basic.png +0 -0
  376. package/examples/test/dev/test_RP/textures/items/turret_focus.png +0 -0
  377. package/examples/test/dev/test_RP/textures/items/turret_magnet.png +0 -0
  378. package/examples/test/dev/test_RP/textures/items/void_axe.png +0 -0
  379. package/examples/test/dev/test_RP/textures/items/void_boots.png +0 -0
  380. package/examples/test/dev/test_RP/textures/items/void_chest.png +0 -0
  381. package/examples/test/dev/test_RP/textures/items/void_gear.png +0 -0
  382. package/examples/test/dev/test_RP/textures/items/void_helm.png +0 -0
  383. package/examples/test/dev/test_RP/textures/items/void_hoe.png +0 -0
  384. package/examples/test/dev/test_RP/textures/items/void_legs.png +0 -0
  385. package/examples/test/dev/test_RP/textures/items/void_pick.png +0 -0
  386. package/examples/test/dev/test_RP/textures/items/void_plate.png +0 -0
  387. package/examples/test/dev/test_RP/textures/items/void_robe_chest.png +0 -0
  388. package/examples/test/dev/test_RP/textures/items/void_robe_chest_over.png +0 -0
  389. package/examples/test/dev/test_RP/textures/items/void_robe_helm.png +0 -0
  390. package/examples/test/dev/test_RP/textures/items/void_robe_legs.png +0 -0
  391. package/examples/test/dev/test_RP/textures/items/void_robe_legs_over.png +0 -0
  392. package/examples/test/dev/test_RP/textures/items/void_seed.png +0 -0
  393. package/examples/test/dev/test_RP/textures/items/void_shovel.png +0 -0
  394. package/examples/test/dev/test_RP/textures/items/void_sword.png +0 -0
  395. package/examples/test/dev/test_RP/textures/items/wand/cap_brass.png +0 -0
  396. package/examples/test/dev/test_RP/textures/items/wand/cap_brass_mat.png +0 -0
  397. package/examples/test/dev/test_RP/textures/items/wand/cap_gold.png +0 -0
  398. package/examples/test/dev/test_RP/textures/items/wand/cap_gold_mat.png +0 -0
  399. package/examples/test/dev/test_RP/textures/items/wand/cap_iron.png +0 -0
  400. package/examples/test/dev/test_RP/textures/items/wand/cap_iron_mat.png +0 -0
  401. package/examples/test/dev/test_RP/textures/items/wand/cap_thaumium.png +0 -0
  402. package/examples/test/dev/test_RP/textures/items/wand/cap_thaumium.png.mcmeta +11 -0
  403. package/examples/test/dev/test_RP/textures/items/wand/cap_thaumium_inert.png +0 -0
  404. package/examples/test/dev/test_RP/textures/items/wand/cap_thaumium_mat.png +0 -0
  405. package/examples/test/dev/test_RP/textures/items/wand/cap_void.png +0 -0
  406. package/examples/test/dev/test_RP/textures/items/wand/cap_void.png.mcmeta +11 -0
  407. package/examples/test/dev/test_RP/textures/items/wand/cap_void_inert.png +0 -0
  408. package/examples/test/dev/test_RP/textures/items/wand/cap_void_mat.png +0 -0
  409. package/examples/test/dev/test_RP/textures/items/wand/focus.png +0 -0
  410. package/examples/test/dev/test_RP/textures/items/wand/focus_builder.png +0 -0
  411. package/examples/test/dev/test_RP/textures/items/wand/focus_excavation.png +0 -0
  412. package/examples/test/dev/test_RP/textures/items/wand/focus_fire.png +0 -0
  413. package/examples/test/dev/test_RP/textures/items/wand/focus_frost.png +0 -0
  414. package/examples/test/dev/test_RP/textures/items/wand/focus_grapple.png +0 -0
  415. package/examples/test/dev/test_RP/textures/items/wand/focus_hellbat.png +0 -0
  416. package/examples/test/dev/test_RP/textures/items/wand/focus_hellbat_orn.png +0 -0
  417. package/examples/test/dev/test_RP/textures/items/wand/focus_pech.png +0 -0
  418. package/examples/test/dev/test_RP/textures/items/wand/focus_pech.png.mcmeta +3 -0
  419. package/examples/test/dev/test_RP/textures/items/wand/focus_portablehole.png +0 -0
  420. package/examples/test/dev/test_RP/textures/items/wand/focus_portablehole.png.mcmeta +3 -0
  421. package/examples/test/dev/test_RP/textures/items/wand/focus_primal.png +0 -0
  422. package/examples/test/dev/test_RP/textures/items/wand/focus_primal.png.mcmeta +3 -0
  423. package/examples/test/dev/test_RP/textures/items/wand/focus_shard.png +0 -0
  424. package/examples/test/dev/test_RP/textures/items/wand/focus_shard.png.mcmeta +3 -0
  425. package/examples/test/dev/test_RP/textures/items/wand/focus_shock.png +0 -0
  426. package/examples/test/dev/test_RP/textures/items/wand/focus_trade.png +0 -0
  427. package/examples/test/dev/test_RP/textures/items/wand/focus_warding.png +0 -0
  428. package/examples/test/dev/test_RP/textures/items/wand/focus_warding.png.mcmeta +3 -0
  429. package/examples/test/dev/test_RP/textures/items/wand/rod_blaze.png +0 -0
  430. package/examples/test/dev/test_RP/textures/items/wand/rod_blaze_mat.png +0 -0
  431. package/examples/test/dev/test_RP/textures/items/wand/rod_blaze_mat.png.mcmeta +45 -0
  432. package/examples/test/dev/test_RP/textures/items/wand/rod_bone.png +0 -0
  433. package/examples/test/dev/test_RP/textures/items/wand/rod_bone_mat.png +0 -0
  434. package/examples/test/dev/test_RP/textures/items/wand/rod_greatwood.png +0 -0
  435. package/examples/test/dev/test_RP/textures/items/wand/rod_greatwood_mat.png +0 -0
  436. package/examples/test/dev/test_RP/textures/items/wand/rod_ice.png +0 -0
  437. package/examples/test/dev/test_RP/textures/items/wand/rod_ice_mat.png +0 -0
  438. package/examples/test/dev/test_RP/textures/items/wand/rod_obsidian.png +0 -0
  439. package/examples/test/dev/test_RP/textures/items/wand/rod_obsidian_mat.png +0 -0
  440. package/examples/test/dev/test_RP/textures/items/wand/rod_primal_mat.png +0 -0
  441. package/examples/test/dev/test_RP/textures/items/wand/rod_primal_mat.png.mcmeta +45 -0
  442. package/examples/test/dev/test_RP/textures/items/wand/rod_quartz.png +0 -0
  443. package/examples/test/dev/test_RP/textures/items/wand/rod_quartz_mat.png +0 -0
  444. package/examples/test/dev/test_RP/textures/items/wand/rod_reed.png +0 -0
  445. package/examples/test/dev/test_RP/textures/items/wand/rod_reed_mat.png +0 -0
  446. package/examples/test/dev/test_RP/textures/items/wand/rod_silverwood.png +0 -0
  447. package/examples/test/dev/test_RP/textures/items/wand/rod_silverwood_mat.png +0 -0
  448. package/examples/test/dev/test_RP/textures/items/wand/rod_wood_mat.png +0 -0
  449. package/examples/test/dev/test_RP/textures/items/wand/staff_rod_blaze.png +0 -0
  450. package/examples/test/dev/test_RP/textures/items/wand/staff_rod_bone.png +0 -0
  451. package/examples/test/dev/test_RP/textures/items/wand/staff_rod_greatwood.png +0 -0
  452. package/examples/test/dev/test_RP/textures/items/wand/staff_rod_ice.png +0 -0
  453. package/examples/test/dev/test_RP/textures/items/wand/staff_rod_obsidian.png +0 -0
  454. package/examples/test/dev/test_RP/textures/items/wand/staff_rod_primal.png +0 -0
  455. package/examples/test/dev/test_RP/textures/items/wand/staff_rod_quartz.png +0 -0
  456. package/examples/test/dev/test_RP/textures/items/wand/staff_rod_reed.png +0 -0
  457. package/examples/test/dev/test_RP/textures/items/wand/staff_rod_silverwood.png +0 -0
  458. package/examples/test/dev/test_RP/textures/items/wispy_essence.png +0 -0
  459. package/examples/test/dev/test_RP/textures/models/armor/custom_legs.png +0 -0
  460. package/examples/test/dev/test_RP/textures/models/armor/custom_main.png +0 -0
  461. package/examples/test/dev/test_RP/textures/models/armor/vampireArmor_1.png +0 -0
  462. package/examples/test/dev/test_RP/textures/models/armor/vampireArmor_2.png +0 -0
  463. package/examples/test/dev/test_RP/textures/terrain_texture.json +137 -0
  464. package/examples/test/lib/wire.js +20 -0
  465. package/examples/test/main.mjs +112 -0
  466. package/examples/test/mod.info +7 -0
  467. package/examples/test/pack_icon.png +0 -0
  468. package/examples/test/res/models/blocks/arcane_workbench.geo.json +106 -0
  469. package/examples/test/res/models/blocks/crop.geo.json +147 -0
  470. package/examples/test/res/models/blocks/jar_normal.geo.json +47 -0
  471. package/examples/test/res/models/blocks/jar_normal_0.geo.json +59 -0
  472. package/examples/test/res/models/blocks/jar_normal_1.geo.json +59 -0
  473. package/examples/test/res/models/blocks/jar_normal_2.geo.json +59 -0
  474. package/examples/test/res/models/blocks/jar_normal_3.geo.json +59 -0
  475. package/examples/test/res/models/blocks/wire.geo.json +154 -0
  476. package/examples/test/res/textures/blocks/animatedglow.png +0 -0
  477. package/examples/test/res/textures/blocks/arcane_workbench_side.png +0 -0
  478. package/examples/test/res/textures/blocks/arcane_workbench_top.png +0 -0
  479. package/examples/test/res/textures/blocks/base_wood_grain.png +0 -0
  480. package/examples/test/res/textures/blocks/castleBlock_darkBrickBloody_0.png +0 -0
  481. package/examples/test/res/textures/blocks/castleBlock_darkSlab_0.png +0 -0
  482. package/examples/test/res/textures/blocks/castleBlock_purpleBrick_0.png +0 -0
  483. package/examples/test/res/textures/blocks/castleBlock_purpleSlab_0.png +0 -0
  484. package/examples/test/res/textures/blocks/churchAltar.png +0 -0
  485. package/examples/test/res/textures/blocks/compass_block_down.png +0 -0
  486. package/examples/test/res/textures/blocks/compass_block_east.png +0 -0
  487. package/examples/test/res/textures/blocks/compass_block_north.png +0 -0
  488. package/examples/test/res/textures/blocks/compass_block_south.png +0 -0
  489. package/examples/test/res/textures/blocks/compass_block_up.png +0 -0
  490. package/examples/test/res/textures/blocks/compass_block_west.png +0 -0
  491. package/examples/test/res/textures/blocks/cursedEarth_0.png +0 -0
  492. package/examples/test/res/textures/blocks/custom_chestplate.png +0 -0
  493. package/examples/test/res/textures/blocks/garlicTorchStrong_0.png +0 -0
  494. package/examples/test/res/textures/blocks/garlicTorchWeak_0.png +0 -0
  495. package/examples/test/res/textures/blocks/garlic_stage_0.png +0 -0
  496. package/examples/test/res/textures/blocks/garlic_stage_1.png +0 -0
  497. package/examples/test/res/textures/blocks/garlic_stage_2.png +0 -0
  498. package/examples/test/res/textures/blocks/garlic_stage_3.png +0 -0
  499. package/examples/test/res/textures/blocks/jar_bottom.png +0 -0
  500. package/examples/test/res/textures/blocks/jar_brine.png +0 -0
  501. package/examples/test/res/textures/blocks/jar_side.png +0 -0
  502. package/examples/test/res/textures/blocks/jar_side_void.png +0 -0
  503. package/examples/test/res/textures/blocks/jar_top.png +0 -0
  504. package/examples/test/res/textures/blocks/jar_top_void.png +0 -0
  505. package/examples/test/res/textures/blocks/ore_cinnabar.png +0 -0
  506. package/examples/test/res/textures/blocks/test_block.png +0 -0
  507. package/examples/test/res/textures/blocks/test_log_oak.png +0 -0
  508. package/examples/test/res/textures/blocks/test_log_top.png +0 -0
  509. package/examples/test/res/textures/blocks/vampireOrchid_0.png +0 -0
  510. package/examples/test/res/textures/blocks/wheat_stage_0.png +0 -0
  511. package/examples/test/res/textures/blocks/wheat_stage_1.png +0 -0
  512. package/examples/test/res/textures/blocks/wheat_stage_2.png +0 -0
  513. package/examples/test/res/textures/blocks/wheat_stage_3.png +0 -0
  514. package/examples/test/res/textures/blocks/wheat_stage_4.png +0 -0
  515. package/examples/test/res/textures/blocks/wheat_stage_5.png +0 -0
  516. package/examples/test/res/textures/blocks/wheat_stage_6.png +0 -0
  517. package/examples/test/res/textures/blocks/wheat_stage_7.png +0 -0
  518. package/examples/test/res/textures/blocks/wire.png +0 -0
  519. package/examples/test/res/textures/entity/vampire.png +0 -0
  520. package/examples/test/res/textures/entity/vampire1.png +0 -0
  521. package/examples/test/res/textures/entity//345/220/270/350/241/200/347/211/233.png +0 -0
  522. package/examples/test/res/textures/entity//345/220/270/350/241/200/347/213/227.png +0 -0
  523. package/examples/test/res/textures/entity//345/220/270/350/241/200/347/214/252.png +0 -0
  524. package/examples/test/res/textures/items/alumentum.png +0 -0
  525. package/examples/test/res/textures/items/amber.png +0 -0
  526. package/examples/test/res/textures/items/amulet_fancy.png +0 -0
  527. package/examples/test/res/textures/items/amulet_mundane.png +0 -0
  528. package/examples/test/res/textures/items/amulet_runic.png +0 -0
  529. package/examples/test/res/textures/items/amulet_runic_emergency.png +0 -0
  530. package/examples/test/res/textures/items/amulet_vis.png +0 -0
  531. package/examples/test/res/textures/items/amulet_vis_stone.png +0 -0
  532. package/examples/test/res/textures/items/banner.png +0 -0
  533. package/examples/test/res/textures/items/banner_cultist.png +0 -0
  534. package/examples/test/res/textures/items/banner_stand.png +0 -0
  535. package/examples/test/res/textures/items/banner_symbol.png +0 -0
  536. package/examples/test/res/textures/items/bath_salts.png +0 -0
  537. package/examples/test/res/textures/items/bone_bow.png +0 -0
  538. package/examples/test/res/textures/items/bone_bow_0.png +0 -0
  539. package/examples/test/res/textures/items/bone_bow_1.png +0 -0
  540. package/examples/test/res/textures/items/bone_bow_2.png +0 -0
  541. package/examples/test/res/textures/items/bottle_taint.png +0 -0
  542. package/examples/test/res/textures/items/brain.png +0 -0
  543. package/examples/test/res/textures/items/brass_gear.png +0 -0
  544. package/examples/test/res/textures/items/brass_plate.png +0 -0
  545. package/examples/test/res/textures/items/bucket_death.png +0 -0
  546. package/examples/test/res/textures/items/bucket_pure.png +0 -0
  547. package/examples/test/res/textures/items/chunk_beef.png +0 -0
  548. package/examples/test/res/textures/items/chunk_chicken.png +0 -0
  549. package/examples/test/res/textures/items/chunk_fish.png +0 -0
  550. package/examples/test/res/textures/items/chunk_mutton.png +0 -0
  551. package/examples/test/res/textures/items/chunk_pork.png +0 -0
  552. package/examples/test/res/textures/items/chunk_rabbit.png +0 -0
  553. package/examples/test/res/textures/items/cloth_boots.png +0 -0
  554. package/examples/test/res/textures/items/cloth_boots_over.png +0 -0
  555. package/examples/test/res/textures/items/cloth_chest.png +0 -0
  556. package/examples/test/res/textures/items/cloth_chest_over.png +0 -0
  557. package/examples/test/res/textures/items/cloth_legs.png +0 -0
  558. package/examples/test/res/textures/items/cloth_legs_over.png +0 -0
  559. package/examples/test/res/textures/items/cluster_cinnabar.png +0 -0
  560. package/examples/test/res/textures/items/cluster_copper.png +0 -0
  561. package/examples/test/res/textures/items/cluster_gold.png +0 -0
  562. package/examples/test/res/textures/items/cluster_iron.png +0 -0
  563. package/examples/test/res/textures/items/cluster_lead.png +0 -0
  564. package/examples/test/res/textures/items/cluster_silver.png +0 -0
  565. package/examples/test/res/textures/items/cluster_tin.png +0 -0
  566. package/examples/test/res/textures/items/coin.png +0 -0
  567. package/examples/test/res/textures/items/creative_caster.png +0 -0
  568. package/examples/test/res/textures/items/creative_node.png +0 -0
  569. package/examples/test/res/textures/items/creative_obelisk.png +0 -0
  570. package/examples/test/res/textures/items/crimson_blade.png +0 -0
  571. package/examples/test/res/textures/items/crimson_boots.png +0 -0
  572. package/examples/test/res/textures/items/crimson_plate_chest.png +0 -0
  573. package/examples/test/res/textures/items/crimson_plate_helm.png +0 -0
  574. package/examples/test/res/textures/items/crimson_plate_legs.png +0 -0
  575. package/examples/test/res/textures/items/crimson_praetor_chest.png +0 -0
  576. package/examples/test/res/textures/items/crimson_praetor_helm.png +0 -0
  577. package/examples/test/res/textures/items/crimson_praetor_legs.png +0 -0
  578. package/examples/test/res/textures/items/crimson_rites.png +0 -0
  579. package/examples/test/res/textures/items/crimson_robe_chest.png +0 -0
  580. package/examples/test/res/textures/items/crimson_robe_helm.png +0 -0
  581. package/examples/test/res/textures/items/crimson_robe_legs.png +0 -0
  582. package/examples/test/res/textures/items/crystal_essence.png +0 -0
  583. package/examples/test/res/textures/items/crystal_planter.png +0 -0
  584. package/examples/test/res/textures/items/custom_chestplate.png +0 -0
  585. package/examples/test/res/textures/items/discovery.png +0 -0
  586. package/examples/test/res/textures/items/discovery_overlay.png +0 -0
  587. package/examples/test/res/textures/items/eldritch_eye.png +0 -0
  588. package/examples/test/res/textures/items/elemental_axe.png +0 -0
  589. package/examples/test/res/textures/items/elemental_hoe.png +0 -0
  590. package/examples/test/res/textures/items/elemental_pick.png +0 -0
  591. package/examples/test/res/textures/items/elemental_shovel.png +0 -0
  592. package/examples/test/res/textures/items/elemental_sword.png +0 -0
  593. package/examples/test/res/textures/items/fabric.png +0 -0
  594. package/examples/test/res/textures/items/filter.png +0 -0
  595. package/examples/test/res/textures/items/flux_sponge.png +0 -0
  596. package/examples/test/res/textures/items/focus_pouch.png +0 -0
  597. package/examples/test/res/textures/items/fortress_chest.png +0 -0
  598. package/examples/test/res/textures/items/fortress_helm.png +0 -0
  599. package/examples/test/res/textures/items/fortress_legs.png +0 -0
  600. package/examples/test/res/textures/items/girdle_fancy.png +0 -0
  601. package/examples/test/res/textures/items/girdle_hover.png +0 -0
  602. package/examples/test/res/textures/items/girdle_mundane.png +0 -0
  603. package/examples/test/res/textures/items/girdle_runic.png +0 -0
  604. package/examples/test/res/textures/items/girdle_runic_kinetic.png +0 -0
  605. package/examples/test/res/textures/items/goggles_revealing.png +0 -0
  606. package/examples/test/res/textures/items/golem.png +0 -0
  607. package/examples/test/res/textures/items/golem_bell.png +0 -0
  608. package/examples/test/res/textures/items/hand_mirror.png +0 -0
  609. package/examples/test/res/textures/items/ingot_brass.png +0 -0
  610. package/examples/test/res/textures/items/ingot_thaumium.png +0 -0
  611. package/examples/test/res/textures/items/ingot_void.png +0 -0
  612. package/examples/test/res/textures/items/iron_plate.png +0 -0
  613. package/examples/test/res/textures/items/jar_brace.png +0 -0
  614. package/examples/test/res/textures/items/knowledge_fragment.png +0 -0
  615. package/examples/test/res/textures/items/label.png +0 -0
  616. package/examples/test/res/textures/items/label_overlay.png +0 -0
  617. package/examples/test/res/textures/items/loot_bag_common.png +0 -0
  618. package/examples/test/res/textures/items/loot_bag_rare.png +0 -0
  619. package/examples/test/res/textures/items/loot_bag_uncommon.png +0 -0
  620. package/examples/test/res/textures/items/masterball.png +0 -0
  621. package/examples/test/res/textures/items/mind_biothaumic.png +0 -0
  622. package/examples/test/res/textures/items/mind_clockwork.png +0 -0
  623. package/examples/test/res/textures/items/mirrored_glass.png +0 -0
  624. package/examples/test/res/textures/items/module_aggression.png +0 -0
  625. package/examples/test/res/textures/items/module_vision.png +0 -0
  626. package/examples/test/res/textures/items/morphic_resonator.png +0 -0
  627. package/examples/test/res/textures/items/nugget_brass.png +0 -0
  628. package/examples/test/res/textures/items/nugget_copper.png +0 -0
  629. package/examples/test/res/textures/items/nugget_iron.png +0 -0
  630. package/examples/test/res/textures/items/nugget_lead.png +0 -0
  631. package/examples/test/res/textures/items/nugget_quicksilver.png +0 -0
  632. package/examples/test/res/textures/items/nugget_silver.png +0 -0
  633. package/examples/test/res/textures/items/nugget_thaumium.png +0 -0
  634. package/examples/test/res/textures/items/nugget_tin.png +0 -0
  635. package/examples/test/res/textures/items/nugget_void.png +0 -0
  636. package/examples/test/res/textures/items/phial.png +0 -0
  637. package/examples/test/res/textures/items/phial_overlay.png +0 -0
  638. package/examples/test/res/textures/items/primal_arrow_air.png +0 -0
  639. package/examples/test/res/textures/items/primal_arrow_earth.png +0 -0
  640. package/examples/test/res/textures/items/primal_arrow_entropy.png +0 -0
  641. package/examples/test/res/textures/items/primal_arrow_fire.png +0 -0
  642. package/examples/test/res/textures/items/primal_arrow_order.png +0 -0
  643. package/examples/test/res/textures/items/primal_arrow_water.png +0 -0
  644. package/examples/test/res/textures/items/primal_charm.png +0 -0
  645. package/examples/test/res/textures/items/primal_crusher.png +0 -0
  646. package/examples/test/res/textures/items/primordial_pearl.png +0 -0
  647. package/examples/test/res/textures/items/quicksilver.png +0 -0
  648. package/examples/test/res/textures/items/researchnotes.png +0 -0
  649. package/examples/test/res/textures/items/researchnotes_overlay.png +0 -0
  650. package/examples/test/res/textures/items/resonator.png +0 -0
  651. package/examples/test/res/textures/items/ring_apprentice.png +0 -0
  652. package/examples/test/res/textures/items/ring_fancy.png +0 -0
  653. package/examples/test/res/textures/items/ring_mundane.png +0 -0
  654. package/examples/test/res/textures/items/ring_protection.png +0 -0
  655. package/examples/test/res/textures/items/ring_runic.png +0 -0
  656. package/examples/test/res/textures/items/ring_runic_charge.png +0 -0
  657. package/examples/test/res/textures/items/ring_runic_regen.png +0 -0
  658. package/examples/test/res/textures/items/ring_verdant.png +0 -0
  659. package/examples/test/res/textures/items/runed_tablet.png +0 -0
  660. package/examples/test/res/textures/items/salis_mundus.png +0 -0
  661. package/examples/test/res/textures/items/sanity_checker.png +0 -0
  662. package/examples/test/res/textures/items/sanity_soap.png +0 -0
  663. package/examples/test/res/textures/items/scribing_tools.png +0 -0
  664. package/examples/test/res/textures/items/seals/seal_blank.png +0 -0
  665. package/examples/test/res/textures/items/seals/seal_breaker.png +0 -0
  666. package/examples/test/res/textures/items/seals/seal_breaker.png.mcmeta +6 -0
  667. package/examples/test/res/textures/items/seals/seal_butcher.png +0 -0
  668. package/examples/test/res/textures/items/seals/seal_butcher.png.mcmeta +6 -0
  669. package/examples/test/res/textures/items/seals/seal_empty.png +0 -0
  670. package/examples/test/res/textures/items/seals/seal_empty.png.mcmeta +6 -0
  671. package/examples/test/res/textures/items/seals/seal_empty_advanced.png +0 -0
  672. package/examples/test/res/textures/items/seals/seal_empty_advanced.png.mcmeta +6 -0
  673. package/examples/test/res/textures/items/seals/seal_fill.png +0 -0
  674. package/examples/test/res/textures/items/seals/seal_fill.png.mcmeta +6 -0
  675. package/examples/test/res/textures/items/seals/seal_fill_advanced.png +0 -0
  676. package/examples/test/res/textures/items/seals/seal_fill_advanced.png.mcmeta +6 -0
  677. package/examples/test/res/textures/items/seals/seal_guard.png +0 -0
  678. package/examples/test/res/textures/items/seals/seal_guard.png.mcmeta +6 -0
  679. package/examples/test/res/textures/items/seals/seal_guard_advanced.png +0 -0
  680. package/examples/test/res/textures/items/seals/seal_guard_advanced.png.mcmeta +6 -0
  681. package/examples/test/res/textures/items/seals/seal_harvest.png +0 -0
  682. package/examples/test/res/textures/items/seals/seal_harvest.png.mcmeta +6 -0
  683. package/examples/test/res/textures/items/seals/seal_lumber.png +0 -0
  684. package/examples/test/res/textures/items/seals/seal_lumber.png.mcmeta +6 -0
  685. package/examples/test/res/textures/items/seals/seal_pickup.png +0 -0
  686. package/examples/test/res/textures/items/seals/seal_pickup.png.mcmeta +6 -0
  687. package/examples/test/res/textures/items/seals/seal_pickup_advanced.png +0 -0
  688. package/examples/test/res/textures/items/seals/seal_pickup_advanced.png.mcmeta +6 -0
  689. package/examples/test/res/textures/items/seals/seal_provider.png +0 -0
  690. package/examples/test/res/textures/items/seals/seal_provider.png.mcmeta +6 -0
  691. package/examples/test/res/textures/items/seals/seal_use.png +0 -0
  692. package/examples/test/res/textures/items/seals/seal_use.png.mcmeta +6 -0
  693. package/examples/test/res/textures/items/shard.png +0 -0
  694. package/examples/test/res/textures/items/shard_balanced.png +0 -0
  695. package/examples/test/res/textures/items/sinister_stone.png +0 -0
  696. package/examples/test/res/textures/items/sinister_stone_active.png +0 -0
  697. package/examples/test/res/textures/items/taint_slime.png +0 -0
  698. package/examples/test/res/textures/items/taint_tendril.png +0 -0
  699. package/examples/test/res/textures/items/tallow.png +0 -0
  700. package/examples/test/res/textures/items/thaumium_axe.png +0 -0
  701. package/examples/test/res/textures/items/thaumium_boots.png +0 -0
  702. package/examples/test/res/textures/items/thaumium_chest.png +0 -0
  703. package/examples/test/res/textures/items/thaumium_gear.png +0 -0
  704. package/examples/test/res/textures/items/thaumium_helm.png +0 -0
  705. package/examples/test/res/textures/items/thaumium_hoe.png +0 -0
  706. package/examples/test/res/textures/items/thaumium_legs.png +0 -0
  707. package/examples/test/res/textures/items/thaumium_pick.png +0 -0
  708. package/examples/test/res/textures/items/thaumium_plate.png +0 -0
  709. package/examples/test/res/textures/items/thaumium_shovel.png +0 -0
  710. package/examples/test/res/textures/items/thaumium_sword.png +0 -0
  711. package/examples/test/res/textures/items/thaumometer.png +0 -0
  712. package/examples/test/res/textures/items/thaumonomicon.png +0 -0
  713. package/examples/test/res/textures/items/thaumonomicon_cheat.png +0 -0
  714. package/examples/test/res/textures/items/thaumostatic_harness.png +0 -0
  715. package/examples/test/res/textures/items/traveller_boots.png +0 -0
  716. package/examples/test/res/textures/items/tripletreat.png +0 -0
  717. package/examples/test/res/textures/items/tube_buffer.png +0 -0
  718. package/examples/test/res/textures/items/tube_filter.png +0 -0
  719. package/examples/test/res/textures/items/tube_normal.png +0 -0
  720. package/examples/test/res/textures/items/tube_oneway.png +0 -0
  721. package/examples/test/res/textures/items/tube_restrict.png +0 -0
  722. package/examples/test/res/textures/items/tube_valve.png +0 -0
  723. package/examples/test/res/textures/items/turret_advanced.png +0 -0
  724. package/examples/test/res/textures/items/turret_basic.png +0 -0
  725. package/examples/test/res/textures/items/turret_focus.png +0 -0
  726. package/examples/test/res/textures/items/turret_magnet.png +0 -0
  727. package/examples/test/res/textures/items/void_axe.png +0 -0
  728. package/examples/test/res/textures/items/void_boots.png +0 -0
  729. package/examples/test/res/textures/items/void_chest.png +0 -0
  730. package/examples/test/res/textures/items/void_gear.png +0 -0
  731. package/examples/test/res/textures/items/void_helm.png +0 -0
  732. package/examples/test/res/textures/items/void_hoe.png +0 -0
  733. package/examples/test/res/textures/items/void_legs.png +0 -0
  734. package/examples/test/res/textures/items/void_pick.png +0 -0
  735. package/examples/test/res/textures/items/void_plate.png +0 -0
  736. package/examples/test/res/textures/items/void_robe_chest.png +0 -0
  737. package/examples/test/res/textures/items/void_robe_chest_over.png +0 -0
  738. package/examples/test/res/textures/items/void_robe_helm.png +0 -0
  739. package/examples/test/res/textures/items/void_robe_legs.png +0 -0
  740. package/examples/test/res/textures/items/void_robe_legs_over.png +0 -0
  741. package/examples/test/res/textures/items/void_seed.png +0 -0
  742. package/examples/test/res/textures/items/void_shovel.png +0 -0
  743. package/examples/test/res/textures/items/void_sword.png +0 -0
  744. package/examples/test/res/textures/items/wand/cap_brass.png +0 -0
  745. package/examples/test/res/textures/items/wand/cap_brass_mat.png +0 -0
  746. package/examples/test/res/textures/items/wand/cap_gold.png +0 -0
  747. package/examples/test/res/textures/items/wand/cap_gold_mat.png +0 -0
  748. package/examples/test/res/textures/items/wand/cap_iron.png +0 -0
  749. package/examples/test/res/textures/items/wand/cap_iron_mat.png +0 -0
  750. package/examples/test/res/textures/items/wand/cap_thaumium.png +0 -0
  751. package/examples/test/res/textures/items/wand/cap_thaumium.png.mcmeta +11 -0
  752. package/examples/test/res/textures/items/wand/cap_thaumium_inert.png +0 -0
  753. package/examples/test/res/textures/items/wand/cap_thaumium_mat.png +0 -0
  754. package/examples/test/res/textures/items/wand/cap_void.png +0 -0
  755. package/examples/test/res/textures/items/wand/cap_void.png.mcmeta +11 -0
  756. package/examples/test/res/textures/items/wand/cap_void_inert.png +0 -0
  757. package/examples/test/res/textures/items/wand/cap_void_mat.png +0 -0
  758. package/examples/test/res/textures/items/wand/focus.png +0 -0
  759. package/examples/test/res/textures/items/wand/focus_builder.png +0 -0
  760. package/examples/test/res/textures/items/wand/focus_excavation.png +0 -0
  761. package/examples/test/res/textures/items/wand/focus_fire.png +0 -0
  762. package/examples/test/res/textures/items/wand/focus_frost.png +0 -0
  763. package/examples/test/res/textures/items/wand/focus_grapple.png +0 -0
  764. package/examples/test/res/textures/items/wand/focus_hellbat.png +0 -0
  765. package/examples/test/res/textures/items/wand/focus_hellbat_orn.png +0 -0
  766. package/examples/test/res/textures/items/wand/focus_pech.png +0 -0
  767. package/examples/test/res/textures/items/wand/focus_pech.png.mcmeta +3 -0
  768. package/examples/test/res/textures/items/wand/focus_portablehole.png +0 -0
  769. package/examples/test/res/textures/items/wand/focus_portablehole.png.mcmeta +3 -0
  770. package/examples/test/res/textures/items/wand/focus_primal.png +0 -0
  771. package/examples/test/res/textures/items/wand/focus_primal.png.mcmeta +3 -0
  772. package/examples/test/res/textures/items/wand/focus_shard.png +0 -0
  773. package/examples/test/res/textures/items/wand/focus_shard.png.mcmeta +3 -0
  774. package/examples/test/res/textures/items/wand/focus_shock.png +0 -0
  775. package/examples/test/res/textures/items/wand/focus_trade.png +0 -0
  776. package/examples/test/res/textures/items/wand/focus_warding.png +0 -0
  777. package/examples/test/res/textures/items/wand/focus_warding.png.mcmeta +3 -0
  778. package/examples/test/res/textures/items/wand/rod_blaze.png +0 -0
  779. package/examples/test/res/textures/items/wand/rod_blaze_mat.png +0 -0
  780. package/examples/test/res/textures/items/wand/rod_blaze_mat.png.mcmeta +45 -0
  781. package/examples/test/res/textures/items/wand/rod_bone.png +0 -0
  782. package/examples/test/res/textures/items/wand/rod_bone_mat.png +0 -0
  783. package/examples/test/res/textures/items/wand/rod_greatwood.png +0 -0
  784. package/examples/test/res/textures/items/wand/rod_greatwood_mat.png +0 -0
  785. package/examples/test/res/textures/items/wand/rod_ice.png +0 -0
  786. package/examples/test/res/textures/items/wand/rod_ice_mat.png +0 -0
  787. package/examples/test/res/textures/items/wand/rod_obsidian.png +0 -0
  788. package/examples/test/res/textures/items/wand/rod_obsidian_mat.png +0 -0
  789. package/examples/test/res/textures/items/wand/rod_primal_mat.png +0 -0
  790. package/examples/test/res/textures/items/wand/rod_primal_mat.png.mcmeta +45 -0
  791. package/examples/test/res/textures/items/wand/rod_quartz.png +0 -0
  792. package/examples/test/res/textures/items/wand/rod_quartz_mat.png +0 -0
  793. package/examples/test/res/textures/items/wand/rod_reed.png +0 -0
  794. package/examples/test/res/textures/items/wand/rod_reed_mat.png +0 -0
  795. package/examples/test/res/textures/items/wand/rod_silverwood.png +0 -0
  796. package/examples/test/res/textures/items/wand/rod_silverwood_mat.png +0 -0
  797. package/examples/test/res/textures/items/wand/rod_wood_mat.png +0 -0
  798. package/examples/test/res/textures/items/wand/staff_rod_blaze.png +0 -0
  799. package/examples/test/res/textures/items/wand/staff_rod_bone.png +0 -0
  800. package/examples/test/res/textures/items/wand/staff_rod_greatwood.png +0 -0
  801. package/examples/test/res/textures/items/wand/staff_rod_ice.png +0 -0
  802. package/examples/test/res/textures/items/wand/staff_rod_obsidian.png +0 -0
  803. package/examples/test/res/textures/items/wand/staff_rod_primal.png +0 -0
  804. package/examples/test/res/textures/items/wand/staff_rod_quartz.png +0 -0
  805. package/examples/test/res/textures/items/wand/staff_rod_reed.png +0 -0
  806. package/examples/test/res/textures/items/wand/staff_rod_silverwood.png +0 -0
  807. package/examples/test/res/textures/items/wispy_essence.png +0 -0
  808. package/examples/test/res/textures/models/armor/custom_legs.png +0 -0
  809. package/examples/test/res/textures/models/armor/custom_main.png +0 -0
  810. package/examples/test/res/textures/models/armor/vampireArmor_1.png +0 -0
  811. package/examples/test/res/textures/models/armor/vampireArmor_2.png +0 -0
  812. package/examples/test/scripts/custom_components/cropComponent.js +59 -0
  813. package/examples/test/scripts/index.js +101 -0
  814. package/log.md +75 -0
  815. package/package.json +31 -0
  816. package/src/cli/build.config +4 -0
  817. package/src/cli/build.js +211 -0
  818. package/src/cli/index.js +150 -0
  819. package/src/cli/init.js +69 -0
  820. package/src/cli/load.js +113 -0
  821. package/src/cli/tools/textureSet.js +115 -0
  822. package/src/cli/utils.js +82 -0
  823. package/src/core/addon/biome.js +29 -0
  824. package/src/core/addon/block/Block.js +49 -0
  825. package/src/core/addon/entity/client_entity.js +154 -0
  826. package/src/core/addon/entity/entity.js +52 -0
  827. package/src/core/addon/feature/ore_feature.js +26 -0
  828. package/src/core/addon/feature_rule.js +29 -0
  829. package/src/core/addon/item/attachable.js +138 -0
  830. package/src/core/addon/item/item.js +29 -0
  831. package/src/core/addon/manifest.js +71 -0
  832. package/src/core/addon/menu_category.js +7 -0
  833. package/src/core/addon/recipe/data.js +76 -0
  834. package/src/core/addon/recipe/recipe.js +27 -0
  835. package/src/core/addon/recipe/recipeFurnace.js +38 -0
  836. package/src/core/addon/recipe/recipeShaped.js +56 -0
  837. package/src/core/addon/recipe/recipeShapeless.js +35 -0
  838. package/src/core/biome/Biome.js +30 -0
  839. package/src/core/biome/biomeComponent.js +89 -0
  840. package/src/core/block/BasicBlock.js +127 -0
  841. package/src/core/block/GeometryBlock.js +14 -0
  842. package/src/core/block/OreBlock.js +29 -0
  843. package/src/core/block/RotatableBlock.js +161 -0
  844. package/src/core/block/block.js +107 -0
  845. package/src/core/block/blockComponent.js +558 -0
  846. package/src/core/block/cropBlock.js +42 -0
  847. package/src/core/entity/BasicEntity.js +167 -0
  848. package/src/core/entity/ClientEntity.js +41 -0
  849. package/src/core/entity/Entity.js +19 -0
  850. package/src/core/entity/NativeEntity.js +30 -0
  851. package/src/core/entity/Projectile.js +8 -0
  852. package/src/core/entity/behavior/follow_mod.js +43 -0
  853. package/src/core/entity/behavior/follow_parent.js +15 -0
  854. package/src/core/entity/behavior/random_stroll.js +69 -0
  855. package/src/core/entity/behavior/tempt.js +145 -0
  856. package/src/core/entity/componets/EntityComponet.js +485 -0
  857. package/src/core/entity/data/NativeEntityData.js +46 -0
  858. package/src/core/entity/data/data_bp.json +1 -0
  859. package/src/core/entity/data/data_rp.json +1 -0
  860. package/src/core/entity/navigation/walk.js +58 -0
  861. package/src/core/factory/BiomeFactory.js +15 -0
  862. package/src/core/factory/BlockFactory.js +159 -0
  863. package/src/core/factory/EntityFactory.js +83 -0
  864. package/src/core/factory/FeatureFactory.js +26 -0
  865. package/src/core/factory/ItemFactory.js +96 -0
  866. package/src/core/factory/RecipeFactory.js +47 -0
  867. package/src/core/factory/UIFactory.js +37 -0
  868. package/src/core/feature/OreFeature.js +19 -0
  869. package/src/core/feature_rule/FeatureRule.js +37 -0
  870. package/src/core/feature_rule/condition/BiomeFilter.js +39 -0
  871. package/src/core/feature_rule/condition/FeatureConditions.js +41 -0
  872. package/src/core/feature_rule/distribution/CoordinateDistribution.js +24 -0
  873. package/src/core/feature_rule/distribution/FeatureDistribution.js +45 -0
  874. package/src/core/index.js +1 -0
  875. package/src/core/item/Item.js +97 -0
  876. package/src/core/item/ItemComponents.js +236 -0
  877. package/src/core/item/armor.js +89 -0
  878. package/src/core/item/attachable.js +34 -0
  879. package/src/core/item/food.js +62 -0
  880. package/src/core/registry.js +17 -0
  881. package/src/core/texture.js +41 -0
  882. package/src/core/ui/ButtonMapping.js +144 -0
  883. package/src/core/ui/DataBindingObject.js +146 -0
  884. package/src/core/ui/Properties/Control.js +308 -0
  885. package/src/core/ui/Properties/DataBinding.js +14 -0
  886. package/src/core/ui/Properties/Factory.js +63 -0
  887. package/src/core/ui/Properties/Grid.js +98 -0
  888. package/src/core/ui/Properties/Input.js +146 -0
  889. package/src/core/ui/Properties/Layout.js +158 -0
  890. package/src/core/ui/Properties/ScrollView.js +158 -0
  891. package/src/core/ui/Properties/Sprite.js +242 -0
  892. package/src/core/ui/Properties/Text.js +204 -0
  893. package/src/core/ui/elements/Image.js +62 -0
  894. package/src/core/ui/elements/Label.js +62 -0
  895. package/src/core/ui/elements/Panel.js +50 -0
  896. package/src/core/ui/elements/UIElement.js +107 -0
  897. package/src/core/ui/registry/ServerUISystem.js +19 -0
  898. package/src/core/ui/systems/UISystem.js +42 -0
  899. package/src/core/ui/systems/server_form.js +100 -0
  900. package/src/templates/test_sapdon/build.config +29 -0
  901. package/src/templates/test_sapdon/main.mjs +0 -0
  902. package/src/templates/test_sapdon/mod.info +7 -0
  903. package/src/templates/test_sapdon/pack_icon.png +0 -0
  904. package/src/templates/test_sapdon/res/models/blocks/crop.geo.json +48 -0
  905. package/src/templates/test_sapdon/res/textures/blocks/test_log_oak.png +0 -0
  906. package/src/templates/test_sapdon/res/textures/blocks/test_log_top.png +0 -0
  907. package/src/templates/test_sapdon/res/textures/items/masterball.png +0 -0
  908. package/src/templates/test_sapdon/scripts/index.js +0 -0
@@ -0,0 +1 @@
1
+ {"minecraft:allay":{"format_version":"1.16.0","minecraft:entity":{"description":{"identifier":"minecraft:allay","is_spawnable":true,"is_summonable":true,"is_experimental":false},"component_groups":{"pickup_item_delay":{"minecraft:timer":{"looping":false,"time":3,"time_down_event":{"event":"pickup_item_delay_complete"}}},"pickup_item":{"minecraft:behavior.pickup_items":{"priority":2,"max_dist":32,"search_height":32,"goal_radius":2.2,"speed_multiplier":6,"pickup_based_on_chance":false,"can_pickup_any_item":false,"can_pickup_to_hand_or_equipment":false,"pickup_same_items_as_in_hand":true}}},"components":{"minecraft:is_hidden_when_invisible":{},"minecraft:type_family":{"family":["allay","mob"]},"minecraft:collision_box":{"width":0.35,"height":0.6},"minecraft:balloonable":{"mass":0.5},"minecraft:breathable":{"totalSupply":15,"suffocateTime":0},"minecraft:nameable":{},"minecraft:leashable":{"soft_distance":4,"hard_distance":6,"max_distance":10},"minecraft:health":{"value":20},"minecraft:hurt_on_condition":{"damage_conditions":[{"filters":{"test":"in_lava","subject":"self","operator":"==","value":true},"cause":"lava","damage_per_tick":4}]},"minecraft:damage_sensor":{"triggers":[{"on_damage":{"filters":{"all_of":[{"test":"is_family","subject":"other","value":"player"},{"test":"is_owner","subject":"other","value":true}]}},"deals_damage":false}]},"minecraft:movement":{"value":0.1},"minecraft:flying_speed":{"value":0.1},"minecraft:navigation.hover":{"can_path_over_water":true,"can_sink":false,"can_pass_doors":false,"can_path_from_air":true,"avoid_water":true,"avoid_damage_blocks":true,"avoid_sun":false},"minecraft:movement.hover":{},"minecraft:follow_range":{"value":1024},"minecraft:ambient_sound_interval":{"value":5,"range":5,"event_name":"ambient","event_names":[{"event_name":"ambient.tame","condition":"query.is_using_item"},{"event_name":"ambient","condition":"!query.is_using_item"}]},"minecraft:jump.static":{},"minecraft:can_fly":{},"minecraft:physics":{"has_gravity":false},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:vibration_listener":{},"minecraft:conditional_bandwidth_optimization":{},"minecraft:game_event_movement_tracking":{"emit_flap":true},"minecraft:inventory":{"inventory_size":1},"minecraft:interact":{"interactions":[{"on_interact":{"filters":{"all_of":[{"test":"is_family","subject":"other","value":"player"}]}},"give_item":true,"take_item":true,"interact_text":"action.interact.allay"}]},"minecraft:behavior.panic":{"priority":1,"speed_multiplier":2},"minecraft:behavior.go_and_give_items_to_noteblock":{"priority":3,"run_speed":8,"throw_sound":"item_thrown","on_item_throw":[{"event":"pickup_item_delay","target":"self"}]},"minecraft:behavior.go_and_give_items_to_owner":{"priority":4,"run_speed":8,"throw_sound":"item_thrown","on_item_throw":[{"event":"pickup_item_delay","target":"self"}]},"minecraft:behavior.stay_near_noteblock":{"priority":5,"speed":8,"start_distance":16,"stop_distance":4},"minecraft:behavior.follow_owner":{"priority":6,"speed_multiplier":8,"start_distance":16,"stop_distance":4,"can_teleport":false,"ignore_vibration":false},"minecraft:behavior.float":{"priority":7},"minecraft:behavior.look_at_player":{"priority":8,"target_distance":6,"probability":0.02},"minecraft:behavior.random_look_around":{"priority":8},"minecraft:behavior.random_hover":{"priority":9,"xz_dist":8,"y_dist":8,"y_offset":-1,"interval":1,"hover_height":[1,4]}},"events":{"pickup_item_delay":{"remove":{"component_groups":["pickup_item"]},"add":{"component_groups":["pickup_item_delay"]}},"pickup_item_delay_complete":{"remove":{"component_groups":["pickup_item_delay"]},"add":{"component_groups":["pickup_item"]}},"minecraft:entity_spawned":{"add":{"component_groups":["pickup_item"]}}}}},"minecraft:area_effect_cloud":{"format_version":"1.8.0","minecraft:entity":{"description":{"identifier":"minecraft:area_effect_cloud","is_spawnable":false,"is_summonable":false,"is_experimental":false},"components":{"minecraft:physics":{"has_collision":false},"minecraft:conditional_bandwidth_optimization":{}}}},"minecraft:armor_stand":{"format_version":"1.16.210","minecraft:entity":{"description":{"identifier":"minecraft:armor_stand","is_spawnable":false,"is_summonable":true,"is_experimental":false},"components":{"minecraft:type_family":{"family":["armor_stand","inanimate","mob"]},"minecraft:collision_box":{"width":0.5,"height":1.975},"minecraft:health":{"value":6,"max":6},"minecraft:hurt_on_condition":{"damage_conditions":[{"filters":{"test":"in_lava","subject":"self","operator":"==","value":true},"cause":"lava","damage_per_tick":4}]},"minecraft:knockback_resistance":{"value":1},"minecraft:loot":{"table":"loot_tables/entities/armor_stand.json"},"minecraft:nameable":{},"minecraft:persistent":{},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":false,"is_pushable_by_piston":true},"minecraft:conditional_bandwidth_optimization":{}},"events":{}}},"minecraft:arrow":{"format_version":"1.13.0","minecraft:entity":{"description":{"identifier":"minecraft:arrow","is_spawnable":false,"is_summonable":true,"is_experimental":false},"component_groups":{"minecraft:hard_arrow":{"minecraft:projectile":{"on_hit":{"impact_damage":{"damage":[1,5],"knockback":true,"semi_random_diff_damage":false,"destroy_on_hit":true},"stick_in_ground":{"shake_time":0.35},"arrow_effect":{}},"hit_sound":"bow.hit","power":1.6,"gravity":0.05,"uncertainty_base":16,"uncertainty_multiplier":4,"anchor":1,"should_bounce":true,"offset":[0,-0.1,0]}},"minecraft:player_arrow":{"minecraft:projectile":{"on_hit":{"impact_damage":{"damage":1,"knockback":true,"semi_random_diff_damage":true,"destroy_on_hit":true,"max_critical_damage":10,"min_critical_damage":9,"power_multiplier":0.97},"stick_in_ground":{"shake_time":0.35},"arrow_effect":{}},"hit_sound":"bow.hit","power":5,"gravity":0.05,"uncertainty_base":1,"uncertainty_multiplier":0,"anchor":1,"should_bounce":true,"offset":[0,-0.1,0]}},"minecraft:pillager_arrow":{"minecraft:projectile":{"on_hit":{"impact_damage":{"damage":[3,6],"knockback":true,"semi_random_diff_damage":false,"destroy_on_hit":true},"stick_in_ground":{"shake_time":0.35},"arrow_effect":{}},"hit_sound":"bow.hit","power":1.6,"gravity":0.05,"uncertainty_base":16,"uncertainty_multiplier":4,"anchor":1,"should_bounce":true,"offset":[0,-0.1,0]}}},"components":{"minecraft:collision_box":{"width":0.25,"height":0.25},"minecraft:hurt_on_condition":{"damage_conditions":[{"filters":{"test":"in_lava","subject":"self","operator":"==","value":true},"cause":"lava","damage_per_tick":4}]},"minecraft:projectile":{"on_hit":{"impact_damage":{"damage":[1,4],"knockback":true,"semi_random_diff_damage":false,"destroy_on_hit":true},"stick_in_ground":{"shake_time":0.35},"arrow_effect":{}},"hit_sound":"bow.hit","power":1.6,"gravity":0.05,"uncertainty_base":16,"uncertainty_multiplier":4,"anchor":1,"should_bounce":true,"offset":[0,-0.1,0]},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":false,"is_pushable_by_piston":true},"minecraft:conditional_bandwidth_optimization":{"default_values":{"max_optimized_distance":80,"max_dropped_ticks":7,"use_motion_prediction_hints":true}}},"events":{"minecraft:entity_spawned":{"sequence":[{"filters":{"test":"is_difficulty","value":"hard"},"add":{"component_groups":["minecraft:hard_arrow"]}},{"filters":{"test":"is_family","subject":"other","value":"player"},"add":{"component_groups":["minecraft:player_arrow"]}},{"filters":{"test":"is_family","subject":"other","value":"pillager"},"add":{"component_groups":["minecraft:pillager_arrow"]}}]}}}},"minecraft:axolotl":{"format_version":"1.16.0","minecraft:entity":{"description":{"identifier":"minecraft:axolotl","is_spawnable":true,"is_summonable":true,"is_experimental":false},"component_groups":{"attack_cooldown":{"minecraft:attack_cooldown":{"attack_cooldown_time":120,"attack_cooldown_complete_event":{"event":"attack_cooldown_complete_event","target":"self"}}},"axolotl_lucy":{"minecraft:variant":{"value":0}},"axolotl_cyan":{"minecraft:variant":{"value":1}},"axolotl_gold":{"minecraft:variant":{"value":2}},"axolotl_wild":{"minecraft:variant":{"value":3}},"axolotl_blue":{"minecraft:variant":{"value":4}},"axolotl_baby":{"minecraft:is_baby":{},"minecraft:scale":{"value":0.5},"minecraft:ageable":{"duration":1200,"feed_items":"tropical_fish_bucket","transform_to_item":"water_bucket:0","grow_up":{"event":"minecraft:ageable_grow_up","target":"self"}},"minecraft:behavior.follow_parent":{"priority":5,"speed_multiplier":1.1}},"axolotl_adult":{"minecraft:experience_reward":{"on_bred":"Math.Random(1,7)","on_death":"query.last_hit_by_player ? Math.Random(1,3) : 0"},"minecraft:behavior.breed":{"priority":1,"speed_multiplier":1},"minecraft:breedable":{"require_tame":false,"breed_items":"tropical_fish_bucket","transform_to_item":"water_bucket:0","breeds_with":{"mate_type":"minecraft:axolotl","baby_type":"minecraft:axolotl","breed_event":{"event":"minecraft:entity_born","target":"baby"}},"mutation_factor":{"variant":0.00083}}},"axolotl_in_water":{"minecraft:environment_sensor":{"triggers":[{"filters":{"test":"in_water","operator":"!=","value":true},"event":"start_drying_out"}]}},"axolotl_dried":{"minecraft:damage_over_time":{"damage_per_hurt":1,"time_between_hurt":0}},"axolotl_on_land":{"minecraft:drying_out_timer":{"total_time":300,"water_bottle_refill_time":90,"dried_out_event":{"event":"dried_out"},"stopped_drying_out_event":{"event":"stop_drying_out"},"recover_after_dried_out_event":{"event":"recover_after_dried_out"}}},"axolotl_on_land_in_rain":{"minecraft:environment_sensor":{"triggers":[{"filters":{"test":"in_water_or_rain","operator":"!=","value":true},"event":"start_drying_out"},{"filters":{"test":"in_water","operator":"==","value":true},"event":"enter_water"}]}}},"components":{"minecraft:is_hidden_when_invisible":{},"minecraft:type_family":{"family":["axolotl","mob"]},"minecraft:collision_box":{"width":0.75,"height":0.42},"minecraft:breathable":{"total_supply":15,"suffocate_time":0,"breathes_water":true,"breathes_air":true,"generates_bubbles":false},"minecraft:nameable":{},"minecraft:health":{"value":14},"minecraft:damage_sensor":{"triggers":{"cause":"lightning","deals_damage":true,"damage_multiplier":2000}},"minecraft:hurt_on_condition":{"damage_conditions":[{"filters":{"test":"in_lava","subject":"self","operator":"==","value":true},"cause":"lava","damage_per_tick":4}]},"minecraft:navigation.generic":{"is_amphibious":true,"can_path_over_water":true,"can_swim":true,"can_walk":true,"can_sink":false,"avoid_damage_blocks":true},"minecraft:movement.amphibious":{"max_turn":15},"minecraft:movement":{"value":0.1},"minecraft:underwater_movement":{"value":0.2},"minecraft:jump.static":{},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:leashable":{"soft_distance":4,"hard_distance":6,"max_distance":10},"minecraft:despawn":{"despawn_from_distance":{}},"minecraft:attack":{"damage":2},"minecraft:combat_regeneration":{},"minecraft:behavior.play_dead":{"priority":0,"duration":10,"force_below_health":8,"random_start_chance":0.33,"random_damage_range":[0,2],"damage_sources":["contact","entity_attack","entity_explosion","magic","projectile","thorns","wither"],"apply_regeneration":true,"filters":{"test":"in_water","operator":"==","value":true}},"minecraft:behavior.tempt":{"priority":2,"speed_multiplier":1.1,"can_tempt_vertically":true,"items":["tropical_fish_bucket"]},"minecraft:behavior.nearest_attackable_target":{"priority":3,"must_see":true,"reselect_targets":true,"within_radius":20,"must_see_forget_duration":17,"entity_types":[{"filters":{"all_of":[{"test":"in_water","subject":"other","value":true},{"test":"has_component","subject":"self","operator":"!=","value":"minecraft:attack_cooldown"},{"any_of":[{"test":"is_family","subject":"other","value":"squid"},{"test":"is_family","subject":"other","value":"fish"},{"test":"is_family","subject":"other","value":"tadpole"}]}]},"max_dist":8},{"filters":{"all_of":[{"test":"in_water","subject":"other","value":true},{"any_of":[{"test":"is_family","subject":"other","value":"drowned"},{"test":"is_family","subject":"other","value":"guardian"},{"test":"is_family","subject":"other","value":"guardian_elder"}]}]},"max_dist":8}]},"minecraft:behavior.melee_attack":{"priority":4,"on_kill":{"event":"killed_enemy_event","target":"self"}},"minecraft:behavior.move_to_water":{"priority":6,"search_range":16,"search_height":5,"search_count":1,"goal_radius":0.1},"minecraft:behavior.swim_idle":{"priority":7,"idle_time":5,"success_rate":0.05},"minecraft:behavior.random_swim":{"priority":8,"interval":0,"xz_dist":30,"y_dist":15},"minecraft:behavior.random_stroll":{"priority":9,"interval":100},"minecraft:behavior.look_at_player":{"priority":10,"target_distance":6,"probability":0.02}},"events":{"minecraft:entity_spawned":{"sequence":[{"add":{"component_groups":["axolotl_adult","axolotl_in_water"]}},{"randomize":[{"weight":25,"add":{"component_groups":["axolotl_cyan"]}},{"weight":25,"add":{"component_groups":["axolotl_gold"]}},{"weight":25,"add":{"component_groups":["axolotl_lucy"]}},{"weight":25,"add":{"component_groups":["axolotl_wild"]}}]}]},"attack_cooldown_complete_event":{"remove":{"component_groups":["attack_cooldown"]}},"killed_enemy_event":{"add":{"component_groups":["attack_cooldown"]}},"minecraft:entity_born":{"sequence":[{"remove":{"component_groups":["axolotl_adult"]},"add":{"component_groups":["axolotl_baby","axolotl_in_water"]}},{"filters":{"test":"has_component","operator":"!=","value":"minecraft:variant"},"add":{"component_groups":["axolotl_blue"]}}]},"minecraft:ageable_grow_up":{"remove":{"component_groups":["axolotl_baby"]},"add":{"component_groups":["axolotl_adult"]}},"stop_drying_out":{"remove":{"component_groups":["axolotl_on_land","axolotl_dried"]},"add":{"component_groups":["axolotl_on_land_in_rain"]}},"start_drying_out":{"remove":{"component_groups":["axolotl_on_land_in_rain","axolotl_in_water"]},"add":{"component_groups":["axolotl_on_land"]}},"dried_out":{"add":{"component_groups":["axolotl_dried"]}},"recover_after_dried_out":{"remove":{"component_groups":["axolotl_dried"]}},"enter_water":{"remove":{"component_groups":["axolotl_on_land","axolotl_on_land_in_rain","axolotl_dried"]},"add":{"component_groups":["axolotl_in_water"]}}}}},"minecraft:bat":{"format_version":"1.16.0","minecraft:entity":{"description":{"identifier":"minecraft:bat","is_spawnable":true,"is_summonable":true,"is_experimental":false},"component_groups":{},"components":{"minecraft:is_hidden_when_invisible":{},"minecraft:type_family":{"family":["bat","mob"]},"minecraft:breathable":{"total_supply":15,"suffocate_time":0},"minecraft:collision_box":{"width":0.5,"height":0.9},"minecraft:damage_sensor":{"triggers":{"cause":"fall","deals_damage":false}},"minecraft:hurt_on_condition":{"damage_conditions":[{"filters":{"test":"in_lava","subject":"self","operator":"==","value":true},"cause":"lava","damage_per_tick":4}]},"minecraft:movement":{"value":0.1},"minecraft:navigation.float":{"can_path_over_water":true},"minecraft:movement.basic":{},"minecraft:jump.static":{},"minecraft:despawn":{"despawn_from_distance":{}},"minecraft:behavior.float":{"priority":0},"minecraft:behavior.float_wander":{"xz_dist":10,"y_dist":7,"y_offset":-2,"random_reselect":true,"float_duration":[0.1,0.35]},"minecraft:can_fly":{},"minecraft:health":{"value":6,"max":6},"minecraft:nameable":{},"minecraft:physics":{},"minecraft:conditional_bandwidth_optimization":{},"minecraft:game_event_movement_tracking":{"emit_flap":true}},"events":{}}},"minecraft:bee":{"format_version":"1.18.20","minecraft:entity":{"description":{"identifier":"minecraft:bee","is_spawnable":true,"is_summonable":true,"is_experimental":false},"component_groups":{"bee_baby":{"minecraft:is_baby":{},"minecraft:scale":{"value":0.5},"minecraft:ageable":{"duration":1200,"feed_items":["minecraft:red_flower","minecraft:yellow_flower","minecraft:wither_rose","minecraft:double_plant:0","minecraft:double_plant:1","minecraft:double_plant:4","minecraft:double_plant:5","minecraft:flowering_azalea","minecraft:azalea_leaves_flowered","minecraft:mangrove_propagule"],"grow_up":{"event":"minecraft:ageable_grow_up","target":"self"}},"minecraft:behavior.follow_parent":{"priority":11,"speed_multiplier":1.1}},"bee_adult":{"minecraft:experience_reward":{"on_bred":"Math.Random(1,7)","on_death":"query.last_hit_by_player ? Math.Random(1,3) : 0"},"minecraft:behavior.breed":{"priority":4,"speed_multiplier":1},"minecraft:breedable":{"require_tame":false,"breeds_with":{"mate_type":"minecraft:bee","baby_type":"minecraft:bee","breed_event":{"event":"minecraft:entity_born","target":"baby"}},"breed_items":["minecraft:red_flower","minecraft:yellow_flower","minecraft:wither_rose","minecraft:double_plant:0","minecraft:double_plant:1","minecraft:double_plant:4","minecraft:double_plant:5","minecraft:flowering_azalea","minecraft:azalea_leaves_flowered","minecraft:mangrove_propagule"]}},"track_attacker":{"minecraft:behavior.hurt_by_target":{"priority":1}},"angry_bee":{"minecraft:angry":{"duration":25,"broadcastAnger":true,"broadcastRange":20,"broadcast_filters":{"test":"is_family","operator":"!=","value":"pacified"},"calm_event":{"event":"calmed_down","target":"self"}},"minecraft:behavior.melee_attack":{"priority":2,"attack_once":true,"speed_multiplier":1.4,"on_attack":{"event":"countdown_to_perish_event","target":"self"}}},"escape_fire":{"minecraft:behavior.panic":{"priority":1,"speed_multiplier":1.25,"force":true},"minecraft:timer":{"looping":false,"time":[20,50],"randomInterval":true,"time_down_event":{"event":"stop_panicking_after_fire","target":"self"}}},"countdown_to_perish":{"minecraft:mark_variant":{"value":1},"minecraft:behavior.panic":{"priority":1,"speed_multiplier":1.25,"force":true},"minecraft:timer":{"looping":false,"time":[10,60],"randomInterval":true,"time_down_event":{"event":"perish_event","target":"self"}},"minecraft:type_family":{"family":["bee","mob","arthropod","pacified"]}},"perish":{"minecraft:hurt_on_condition":{"damage_conditions":[{"cause":"none","damage_per_tick":999}]}},"take_nearest_target":{"minecraft:behavior.nearest_attackable_target":{"priority":2,"entity_types":[{"filters":{"test":"is_family","subject":"other","value":"player"},"max_dist":10}]},"minecraft:timer":{"looping":true,"time":5,"time_down_event":{"event":"calmed_down","target":"self"}}},"look_for_food":{"minecraft:behavior.move_to_block":{"priority":10,"tick_interval":1,"start_chance":0.5,"search_range":6,"search_height":4,"goal_radius":1,"stay_duration":20,"target_selection_method":"random","target_offset":[0,0.25,0],"target_block_filters":{"test":"is_waterlogged","subject":"block","operator":"==","value":false},"target_blocks":["minecraft:red_flower","minecraft:yellow_flower","minecraft:wither_rose","minecraft:double_plant:8","minecraft:double_plant:9","minecraft:double_plant:12","minecraft:double_plant:13","minecraft:flowering_azalea","minecraft:azalea_leaves_flowered","minecraft:mangrove_propagule"],"on_stay_completed":[{"event":"collected_nectar","target":"self"}]},"minecraft:timer":{"looping":true,"time":180,"time_down_event":{"event":"find_flower_timeout"}},"minecraft:ambient_sound_interval":{"event_name":"ambient.pollinate","range":3,"value":2}},"has_nectar":{"minecraft:is_charged":{},"minecraft:grows_crop":{"charges":10,"chance":0.03}},"return_to_home":{"minecraft:behavior.go_home":{"priority":4,"speed_multiplier":1,"interval":1,"goal_radius":1.2,"on_home":[{"filters":{"any_of":[{"test":"is_block","subject":"block","value":"minecraft:bee_nest"},{"test":"is_block","subject":"block","value":"minecraft:beehive"}]},"event":"minecraft:bee_returned_to_hive","target":"block"},{"filters":{"all_of":[{"test":"is_block","subject":"block","operator":"!=","value":"minecraft:bee_nest"},{"test":"is_block","subject":"block","operator":"!=","value":"minecraft:beehive"}]},"event":"find_hive_event","target":"self"}],"on_failed":[{"event":"find_hive_event","target":"self"}]}},"find_hive":{"minecraft:behavior.move_to_block":{"priority":10,"search_range":16,"search_height":10,"tick_interval":1,"goal_radius":0.633,"target_blocks":["bee_nest","beehive"],"on_reach":[{"event":"minecraft:bee_returned_to_hive","target":"block"}]},"minecraft:timer":{"looping":false,"time":180,"time_down_event":{"event":"find_hive_timeout","target":"self"}}},"hive_full":{"minecraft:timer":{"looping":false,"time":[5,20],"randomInterval":true,"time_down_event":{"event":"find_hive_event","target":"self"}}},"shelter_detection":{"minecraft:environment_sensor":{"triggers":[{"event":"seek_shelter","filters":{"all_of":[{"any_of":[{"test":"is_daytime","value":false},{"test":"weather","operator":"==","value":"precipitation"}]},{"test":"has_component","value":"minecraft:is_charged","operator":"!="},{"test":"has_biome_tag","value":"overworld"}]}}]}},"abort_shelter_detection":{"minecraft:environment_sensor":{"triggers":[{"event":"abort_sheltering","filters":{"all_of":[{"test":"weather","operator":"==","value":"clear"},{"test":"is_daytime","value":true}]}}]}},"easy_attack":{"minecraft:attack":{"damage":2}},"normal_attack":{"minecraft:attack":{"damage":2,"effect_name":"poison","effect_duration":10}},"hard_attack":{"minecraft:attack":{"damage":2,"effect_name":"poison","effect_duration":18}},"default_sound":{"minecraft:ambient_sound_interval":{"event_name":"ambient","range":0,"value":0}}},"components":{"minecraft:is_hidden_when_invisible":{},"minecraft:behavior.tempt":{"priority":5,"speed_multiplier":1.25,"within_radius":8,"can_tempt_vertically":true,"items":["minecraft:red_flower","minecraft:yellow_flower","minecraft:wither_rose","minecraft:double_plant:0","minecraft:double_plant:1","minecraft:double_plant:4","minecraft:double_plant:5","minecraft:flowering_azalea","minecraft:azalea_leaves_flowered","minecraft:mangrove_propagule"]},"minecraft:behavior.move_towards_home_restriction":{"priority":9},"minecraft:behavior.random_hover":{"priority":12,"xz_dist":8,"y_dist":8,"y_offset":-1,"interval":1,"hover_height":[1,4]},"minecraft:leashable":{"soft_distance":4,"hard_distance":6,"max_distance":10},"minecraft:balloonable":{"mass":0.5},"minecraft:behavior.float":{"priority":19},"minecraft:type_family":{"family":["bee","mob","arthropod"]},"minecraft:on_target_acquired":{"event":"attacked","target":"self"},"minecraft:breathable":{"totalSupply":15,"suffocateTime":0},"minecraft:collision_box":{"width":0.55,"height":0.5},"minecraft:conditional_bandwidth_optimization":{},"minecraft:game_event_movement_tracking":{"emit_flap":true},"minecraft:home":{"restriction_radius":22,"home_block_list":["minecraft:bee_nest","minecraft:beehive"]},"minecraft:follow_range":{"value":1024},"minecraft:damage_sensor":{"triggers":{"cause":"fall","deals_damage":false}},"minecraft:hurt_on_condition":{"damage_conditions":[{"filters":{"test":"in_lava","subject":"self","operator":"==","value":true},"cause":"lava","damage_per_tick":4}]},"minecraft:movement":{"value":0.3},"minecraft:flying_speed":{"value":0.15},"minecraft:navigation.hover":{"can_path_over_water":true,"can_sink":false,"can_pass_doors":false,"can_path_from_air":true,"avoid_water":true,"avoid_damage_blocks":true,"avoid_sun":false},"minecraft:movement.hover":{},"minecraft:jump.static":{},"minecraft:can_fly":{},"minecraft:health":{"value":10,"max":10},"minecraft:nameable":{},"minecraft:block_sensor":{"sensor_radius":16,"sources":[{"test":"has_silk_touch","subject":"other","value":false}],"on_break":[{"block_list":["minecraft:beehive","minecraft:bee_nest"],"on_block_broken":"hive_destroyed"}]},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true}},"events":{"minecraft:entity_spawned":{"sequence":[{"randomize":[{"weight":95,"add":{"component_groups":["bee_adult"]}},{"weight":5,"add":{"component_groups":["bee_baby"]}}]},{"add":{"component_groups":["track_attacker","shelter_detection","look_for_food"]}}]},"minecraft:entity_born":{"add":{"component_groups":["bee_baby","shelter_detection","track_attacker","look_for_food"]}},"minecraft:ageable_grow_up":{"remove":{"component_groups":["bee_baby"]},"add":{"component_groups":["bee_adult"]}},"minecraft:exited_disturbed_hive":{"add":{"component_groups":["take_nearest_target"]},"remove":{"component_groups":["find_hive","return_to_home","has_nectar","abort_shelter_detection","shelter_detection","escape_fire"]}},"hive_destroyed":{"sequence":[{"filters":{"test":"is_family","subject":"self","operator":"!=","value":"pacified"},"add":{"component_groups":["take_nearest_target"]},"remove":{"component_groups":["escape_fire"]}}]},"stop_panicking_after_fire":{"remove":{"component_groups":["escape_fire"]}},"minecraft:exited_hive_on_fire":{"add":{"component_groups":["escape_fire"]}},"minecraft:exited_hive":{"add":{"component_groups":["look_for_food","shelter_detection"]},"remove":{"component_groups":["find_hive","return_to_home","has_nectar","abort_shelter_detection"]}},"minecraft:hive_full":{"add":{"component_groups":["hive_full"]},"remove":{"component_groups":["find_hive","return_to_home"]}},"attacked":{"sequence":[{"add":{"component_groups":["angry_bee"]},"remove":{"component_groups":["take_nearest_target"]}},{"filters":{"test":"is_difficulty","value":"easy"},"remove":{"component_groups":["normal_attack","hard_attack"]},"add":{"component_groups":["easy_attack"]}},{"filters":{"test":"is_difficulty","value":"normal"},"remove":{"component_groups":["easy_attack","hard_attack"]},"add":{"component_groups":["normal_attack"]}},{"filters":{"test":"is_difficulty","value":"hard"},"remove":{"component_groups":["easy_attack","normal_attack"]},"add":{"component_groups":["hard_attack"]}}]},"calmed_down":{"add":{"component_groups":["shelter_detection","return_to_home"]},"remove":{"component_groups":["angry_bee","take_nearest_target"]}},"collected_nectar":{"remove":{"component_groups":["look_for_food"]},"add":{"component_groups":["return_to_home","has_nectar","default_sound"]}},"find_hive_event":{"remove":{"component_groups":["return_to_home","hive_full"]},"add":{"component_groups":["find_hive"]}},"find_hive_timeout":{"sequence":[{"filters":{"test":"has_component","operator":"!=","value":"minecraft:is_charged"},"remove":{"component_groups":["find_hive","escape_fire"]},"add":{"component_groups":["look_for_food"]}},{"filters":{"test":"has_component","value":"minecraft:is_charged"},"remove":{"component_groups":["find_hive"]},"add":{"component_groups":["return_to_home"]}}]},"find_flower_timeout":{"remove":{"component_groups":["look_for_food"]},"add":{"component_groups":["return_to_home"]}},"seek_shelter":{"remove":{"component_groups":["look_for_food","collect_nectar","shelter_detection"]},"add":{"component_groups":["default_sound","return_to_home","abort_shelter_detection"]}},"abort_sheltering":{"remove":{"component_groups":["abort_shelter_detection","return_to_home","escape_fire"]},"add":{"component_groups":["shelter_detection","look_for_food"]}},"countdown_to_perish_event":{"remove":{"component_groups":["collect_nectar","track_attacker","take_nearest_target","look_for_food","angry_bee","hive_full","find_hive","escape_fire"]},"add":{"component_groups":["countdown_to_perish"]}},"perish_event":{"add":{"component_groups":["perish"]}}}}},"minecraft:blaze":{"format_version":"1.16.0","minecraft:entity":{"description":{"identifier":"minecraft:blaze","is_spawnable":true,"is_summonable":true,"is_experimental":false},"component_groups":{"mode_switcher":{"minecraft:target_nearby_sensor":{"inside_range":2,"outside_range":3,"must_see":true,"on_inside_range":{"event":"switch_to_melee","target":"self"},"on_outside_range":{"event":"switch_to_ranged","target":"self"}}},"ranged_mode":{"minecraft:shooter":{"def":"minecraft:small_fireball"},"minecraft:behavior.ranged_attack":{"priority":3,"burst_shots":3,"burst_interval":0.3,"charge_charged_trigger":0,"charge_shoot_trigger":4,"attack_interval_min":3,"attack_interval_max":5,"attack_radius":16}},"melee_mode":{"minecraft:attack":{"damage":6},"minecraft:behavior.melee_attack":{"priority":3}}},"components":{"minecraft:is_hidden_when_invisible":{},"minecraft:experience_reward":{"on_death":"query.last_hit_by_player ? 10 : 0"},"minecraft:loot":{"table":"loot_tables/entities/blaze.json"},"minecraft:collision_box":{"width":0.5,"height":1.8},"minecraft:damage_sensor":{"triggers":{"cause":"fall","deals_damage":false}},"minecraft:movement":{"value":0.23},"minecraft:navigation.walk":{"can_path_over_water":true,"avoid_water":true,"avoid_damage_blocks":true},"minecraft:movement.basic":{},"minecraft:jump.static":{},"minecraft:can_climb":{},"minecraft:health":{"value":20,"max":20},"minecraft:hurt_on_condition":{"damage_conditions":[{"filters":{"test":"in_contact_with_water","operator":"==","value":true},"cause":"drowning","damage_per_tick":1}]},"minecraft:follow_range":{"value":48,"max":48},"minecraft:fire_immune":{},"minecraft:nameable":{},"minecraft:despawn":{"despawn_from_distance":{}},"minecraft:behavior.float":{"priority":0},"minecraft:behavior.hurt_by_target":{"priority":1},"minecraft:behavior.nearest_attackable_target":{"priority":2,"must_see":true,"entity_types":[{"filters":{"test":"is_family","subject":"other","value":"player"},"max_dist":48}]},"minecraft:behavior.random_stroll":{"priority":4,"speed_multiplier":1},"minecraft:behavior.random_look_around":{"priority":5},"minecraft:type_family":{"family":["blaze","monster","mob"]},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:on_hurt":{"event":"minecraft:on_hurt_event","target":"self"},"minecraft:on_hurt_by_player":{"event":"minecraft:on_hurt_event","target":"self"},"minecraft:conditional_bandwidth_optimization":{}},"events":{"minecraft:entity_spawned":{"add":{"component_groups":["mode_switcher"]}},"switch_to_melee":{"remove":{"component_groups":["ranged_mode"]},"add":{"component_groups":["melee_mode"]}},"switch_to_ranged":{"remove":{"component_groups":["melee_mode"]},"add":{"component_groups":["ranged_mode"]}},"minecraft:on_hurt_event":{"add":{"component_groups":["mode_switcher"]}}}}},"minecraft:boat":{"format_version":"1.18.10","minecraft:entity":{"description":{"identifier":"minecraft:boat","is_spawnable":false,"is_summonable":true,"is_experimental":false},"component_groups":{"minecraft:floating":{"minecraft:buoyant":{"base_buoyancy":1,"apply_gravity":true,"simulate_waves":true,"big_wave_probability":0.03,"big_wave_speed":10,"liquid_blocks":["minecraft:water","minecraft:flowing_water"]}},"minecraft:can_ride":{"minecraft:rideable":{"seat_count":2,"interact_text":"action.interact.ride.boat","pull_in_entities":true,"seats":[{"position":[0,-0.2,0],"min_rider_count":0,"max_rider_count":1,"rotate_rider_by":-90,"lock_rider_rotation":90},{"position":[0.2,-0.2,0],"min_rider_count":2,"max_rider_count":2,"rotate_rider_by":"query.has_any_family('blaze', 'creeper', 'enderman', 'illager', 'magmacube', 'piglin', 'player', 'skeleton', 'slime', 'villager', 'wandering_trader', 'witch', 'zombie', 'zombie_pigman') ? -90 : 0","lock_rider_rotation":90},{"position":[-0.6,-0.2,0],"min_rider_count":2,"max_rider_count":2,"rotate_rider_by":"query.has_any_family('blaze', 'creeper', 'enderman', 'illager', 'magmacube', 'piglin', 'player', 'skeleton', 'slime', 'villager', 'wandering_trader', 'witch', 'zombie', 'zombie_pigman') ? -90 : 0","lock_rider_rotation":90}]}},"minecraft:above_bubble_column_down":{"minecraft:buoyant":{"base_buoyancy":1,"apply_gravity":true,"simulate_waves":false,"liquid_blocks":["minecraft:water","minecraft:flowing_water"],"drag_down_on_buoyancy_removed":0.7},"minecraft:timer":{"looping":false,"time":3,"time_down_event":{"event":"minecraft:sink","target":"self"}},"minecraft:out_of_control":{}},"minecraft:above_bubble_column_up":{"minecraft:buoyant":{"base_buoyancy":1,"apply_gravity":true,"simulate_waves":false,"liquid_blocks":["minecraft:water","minecraft:flowing_water"],"drag_down_on_buoyancy_removed":0.7},"minecraft:out_of_control":{}}},"components":{"minecraft:type_family":{"family":["boat","inanimate"]},"minecraft:collision_box":{"width":1.4,"height":0.455},"minecraft:hurt_on_condition":{"damage_conditions":[{"filters":{"test":"in_lava","subject":"self","operator":"==","value":true},"cause":"lava","damage_per_tick":4}]},"minecraft:loot":{"table":"loot_tables/entities/boat.json"},"minecraft:leashable":{"soft_distance":4,"hard_distance":6,"max_distance":10},"minecraft:balloonable":{},"minecraft:rideable":{"seat_count":2,"interact_text":"action.interact.ride.boat","pull_in_entities":true,"seats":[{"position":[0,-0.2,0],"min_rider_count":0,"max_rider_count":1,"rotate_rider_by":-90,"lock_rider_rotation":90},{"position":[0.2,-0.2,0],"min_rider_count":2,"max_rider_count":2,"rotate_rider_by":"query.has_any_family('blaze', 'creeper', 'enderman', 'illager', 'magmacube', 'piglin', 'player', 'skeleton', 'slime', 'villager', 'wandering_trader', 'witch', 'zombie', 'zombie_pigman') ? -90 : 0","lock_rider_rotation":90},{"position":[-0.6,-0.2,0],"min_rider_count":2,"max_rider_count":2,"rotate_rider_by":"query.has_any_family('blaze', 'creeper', 'enderman', 'illager', 'magmacube', 'piglin', 'player', 'skeleton', 'slime', 'villager', 'wandering_trader', 'witch', 'zombie', 'zombie_pigman') ? -90 : 0","lock_rider_rotation":90}]},"minecraft:is_stackable":{},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:buoyant":{"base_buoyancy":1,"apply_gravity":true,"simulate_waves":true,"big_wave_probability":0.03,"big_wave_speed":10,"liquid_blocks":["minecraft:water","minecraft:flowing_water"]},"minecraft:conditional_bandwidth_optimization":{"default_values":{"max_optimized_distance":60,"max_dropped_ticks":20,"use_motion_prediction_hints":true},"conditional_values":[{"max_optimized_distance":0,"max_dropped_ticks":0,"use_motion_prediction_hints":true,"conditional_values":[{"test":"is_moving","subject":"self","operator":"==","value":true}]}]},"minecraft:inside_block_notifier":{"block_list":[{"block":{"name":"minecraft:bubble_column","states":{"drag_down":true}},"entered_block_event":{"event":"minecraft:entered_bubble_column_down","target":"self"},"exited_block_event":{"event":"minecraft:exited_bubble_column","target":"self"}},{"block":{"name":"minecraft:bubble_column","states":{"drag_down":false}},"entered_block_event":{"event":"minecraft:entered_bubble_column_up","target":"self"},"exited_block_event":{"event":"minecraft:exited_bubble_column","target":"self"}}]}},"events":{"minecraft:entered_bubble_column_down":{"remove":{"component_groups":["minecraft:floating"]},"add":{"component_groups":["minecraft:above_bubble_column_down"]}},"minecraft:entered_bubble_column_up":{"remove":{"component_groups":["minecraft:floating"]},"add":{"component_groups":["minecraft:above_bubble_column_up"]}},"minecraft:exited_bubble_column":{"remove":{"component_groups":["minecraft:above_bubble_column_down","minecraft:above_bubble_column_up"]},"add":{"component_groups":["minecraft:floating","minecraft:can_ride"]}},"minecraft:sink":{"remove":{"component_groups":["minecraft:floating","minecraft:can_ride","minecraft:above_bubble_column_down","minecraft:above_bubble_column_up"]}}}}},"minecraft:cat":{"format_version":"1.18.10","minecraft:entity":{"description":{"identifier":"minecraft:cat","is_spawnable":true,"is_summonable":true,"is_experimental":false},"component_groups":{"minecraft:cat_baby":{"minecraft:is_baby":{},"minecraft:scale":{"value":0.4},"minecraft:ageable":{"duration":1200,"feed_items":["fish","salmon"],"grow_up":{"event":"minecraft:ageable_grow_up","target":"self"}}},"minecraft:cat_adult":{"minecraft:experience_reward":{"on_bred":"Math.Random(1,7)","on_death":"query.last_hit_by_player ? Math.Random(1,3) : 0"},"minecraft:loot":{"table":"loot_tables/entities/cat.json"},"minecraft:scale":{"value":0.8},"minecraft:behavior.breed":{"priority":3,"speed_multiplier":1},"minecraft:breedable":{"require_tame":true,"require_full_health":true,"allow_sitting":true,"breeds_with":{"mate_type":"minecraft:cat","baby_type":"minecraft:cat","breed_event":{"event":"minecraft:entity_born","target":"baby"}},"breed_items":["fish","salmon"]}},"minecraft:cat_wild":{"minecraft:health":{"value":10,"max":10},"minecraft:tameable":{"probability":0.33,"tame_items":["fish","salmon"],"tame_event":{"event":"minecraft:on_tame","target":"self"}},"minecraft:rideable":{"seat_count":1,"family_types":["zombie"],"seats":{"position":[0,0.35,0]}},"minecraft:behavior.nearest_attackable_target":{"priority":1,"reselect_targets":true,"within_radius":16,"entity_types":[{"filters":{"test":"is_family","subject":"other","value":"rabbit"},"max_dist":8},{"filters":{"all_of":[{"test":"is_family","subject":"other","value":"baby_turtle"},{"test":"in_water","subject":"other","operator":"!=","value":true}]},"max_dist":8}]},"minecraft:behavior.tempt":{"priority":5,"speed_multiplier":0.5,"within_radius":16,"can_get_scared":true,"items":["fish","salmon"]},"minecraft:behavior.avoid_mob_type":{"priority":6,"entity_types":[{"filters":{"test":"is_family","subject":"other","value":"player"},"max_dist":10,"walk_speed_multiplier":0.8,"sprint_speed_multiplier":1.33}]},"minecraft:behavior.move_towards_dwelling_restriction":{"priority":7}},"minecraft:cat_tame":{"minecraft:is_tamed":{},"minecraft:health":{"value":20,"max":20},"minecraft:color":{"value":14},"minecraft:sittable":{},"minecraft:behavior.tempt":{"priority":5,"speed_multiplier":0.5,"within_radius":16,"items":["fish","salmon"]},"minecraft:is_dyeable":{"interact_text":"action.interact.dye"},"minecraft:behavior.follow_owner":{"priority":4,"speed_multiplier":1,"start_distance":10,"stop_distance":2},"minecraft:behavior.stay_while_sitting":{"priority":3},"minecraft:behavior.ocelot_sit_on_block":{"priority":7,"speed_multiplier":1},"minecraft:behavior.pet_sleep_with_owner":{"priority":2,"speed_multiplier":1.2,"search_radius":10,"search_height":10,"goal_radius":1},"minecraft:on_wake_with_owner":{"event":"minecraft:pet_slept_with_owner","target":"self"}},"minecraft:cat_gift_for_owner":{"minecraft:behavior.drop_item_for":{"priority":1,"seconds_before_pickup":0,"cooldown":0.25,"drop_item_chance":0.7,"offering_distance":5,"minimum_teleport_distance":2,"max_head_look_at_height":10,"target_range":[5,5,5],"teleport_offset":[0,1,0],"time_of_day_range":[0.74999,0.8],"speed_multiplier":1,"search_range":5,"search_height":2,"search_count":0,"goal_radius":1,"entity_types":[{"filters":{"test":"is_family","subject":"other","value":"player"},"max_dist":6}],"loot_table":"loot_tables/entities/cat_gift.json","on_drop_attempt":{"event":"minecraft:cat_gifted_owner","target":"self"}}},"minecraft:cat_white":{"minecraft:variant":{"value":0}},"minecraft:cat_tuxedo":{"minecraft:variant":{"value":1}},"minecraft:cat_red":{"minecraft:variant":{"value":2}},"minecraft:cat_siamese":{"minecraft:variant":{"value":3}},"minecraft:cat_british":{"minecraft:variant":{"value":4}},"minecraft:cat_calico":{"minecraft:variant":{"value":5}},"minecraft:cat_persian":{"minecraft:variant":{"value":6}},"minecraft:cat_ragdoll":{"minecraft:variant":{"value":7}},"minecraft:cat_tabby":{"minecraft:variant":{"value":8}},"minecraft:cat_black":{"minecraft:variant":{"value":9}},"minecraft:cat_jellie":{"minecraft:variant":{"value":10}}},"components":{"minecraft:leashable":{"soft_distance":4,"hard_distance":6,"max_distance":10},"minecraft:balloonable":{"mass":0.6},"minecraft:is_hidden_when_invisible":{},"minecraft:attack_damage":{"value":4},"minecraft:nameable":{},"minecraft:type_family":{"family":["cat","mob"]},"minecraft:breathable":{"total_supply":15,"suffocate_time":0},"minecraft:collision_box":{"width":0.6,"height":0.7},"minecraft:healable":{"items":[{"item":"fish","heal_amount":2},{"item":"salmon","heal_amount":2}]},"minecraft:hurt_on_condition":{"damage_conditions":[{"filters":{"test":"in_lava","subject":"self","operator":"==","value":true},"cause":"lava","damage_per_tick":4}]},"minecraft:movement":{"value":0.3},"minecraft:navigation.walk":{"can_float":true,"avoid_water":true,"avoid_damage_blocks":true},"minecraft:movement.basic":{},"minecraft:jump.static":{},"minecraft:can_climb":{},"minecraft:damage_sensor":{"triggers":{"cause":"fall","deals_damage":false}},"minecraft:dweller":{"dwelling_type":"village","dweller_role":"passive","update_interval_base":60,"update_interval_variant":40,"can_find_poi":false,"can_migrate":true,"first_founding_reward":0},"minecraft:despawn":{"despawn_from_distance":{}},"minecraft:behavior.float":{"priority":0},"minecraft:behavior.panic":{"priority":1,"speed_multiplier":1.25},"minecraft:behavior.mount_pathing":{"priority":1,"speed_multiplier":1.25,"target_dist":0,"track_target":true},"minecraft:behavior.leap_at_target":{"priority":3,"target_dist":0.3},"minecraft:behavior.ocelotattack":{"priority":4,"cooldown_time":1,"x_max_rotation":30,"y_max_head_rotation":30,"max_distance":15,"max_sneak_range":15,"max_sprint_range":4,"reach_multiplier":2,"sneak_speed_multiplier":0.6,"sprint_speed_multiplier":1.33,"walk_speed_multiplier":0.8},"minecraft:behavior.random_stroll":{"priority":8,"speed_multiplier":0.8},"minecraft:behavior.look_at_player":{"priority":9},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:conditional_bandwidth_optimization":{}},"events":{"minecraft:entity_spawned":{"sequence":[{"randomize":[{"weight":3,"remove":{},"add":{"component_groups":["minecraft:cat_adult","minecraft:cat_wild"]}},{"weight":1,"remove":{},"add":{"component_groups":["minecraft:cat_baby","minecraft:cat_wild"]}}]},{"randomize":[{"weight":15,"add":{"component_groups":["minecraft:cat_white"]}},{"weight":15,"add":{"component_groups":["minecraft:cat_tuxedo"]}},{"weight":15,"add":{"component_groups":["minecraft:cat_red"]}},{"weight":15,"add":{"component_groups":["minecraft:cat_siamese"]}},{"weight":15,"add":{"component_groups":["minecraft:cat_british"]}},{"weight":15,"add":{"component_groups":["minecraft:cat_calico"]}},{"weight":15,"add":{"component_groups":["minecraft:cat_persian"]}},{"weight":15,"add":{"component_groups":["minecraft:cat_ragdoll"]}},{"weight":15,"add":{"component_groups":["minecraft:cat_tabby"]}},{"weight":15,"add":{"component_groups":["minecraft:cat_black"]}},{"weight":15,"add":{"component_groups":["minecraft:cat_jellie"]}}]}]},"minecraft:spawn_from_village":{"sequence":[{"randomize":[{"weight":3,"remove":{},"add":{"component_groups":["minecraft:cat_adult","minecraft:cat_wild"]}},{"weight":1,"remove":{},"add":{"component_groups":["minecraft:cat_baby","minecraft:cat_wild"]}}]},{"randomize":[{"weight":15,"add":{"component_groups":["minecraft:cat_tuxedo"]}},{"weight":15,"add":{"component_groups":["minecraft:cat_red"]}},{"weight":15,"add":{"component_groups":["minecraft:cat_siamese"]}},{"weight":15,"add":{"component_groups":["minecraft:cat_white"]}},{"weight":15,"add":{"component_groups":["minecraft:cat_british"]}},{"weight":15,"add":{"component_groups":["minecraft:cat_calico"]}},{"weight":15,"add":{"component_groups":["minecraft:cat_persian"]}},{"weight":15,"add":{"component_groups":["minecraft:cat_ragdoll"]}},{"weight":15,"add":{"component_groups":["minecraft:cat_tabby"]}},{"weight":15,"add":{"component_groups":["minecraft:cat_jellie"]}}]}]},"minecraft:spawn_midnight_cat":{"sequence":[{"add":{"component_groups":["minecraft:cat_adult","minecraft:cat_wild","minecraft:cat_black"]}}]},"minecraft:entity_born":{"sequence":[{"filters":{"test":"has_component","operator":"!=","value":"minecraft:is_baby"},"remove":{},"add":{"component_groups":["minecraft:cat_baby","minecraft:cat_tame"]}}]},"minecraft:ageable_grow_up":{"remove":{"component_groups":["minecraft:cat_baby"]},"add":{"component_groups":["minecraft:cat_adult"]}},"minecraft:on_tame":{"sequence":[{"remove":{"component_groups":["minecraft:cat_wild"]}},{"add":{"component_groups":["minecraft:cat_tame"]}}]},"minecraft:pet_slept_with_owner":{"add":{"component_groups":["minecraft:cat_gift_for_owner"]}},"minecraft:cat_gifted_owner":{"remove":{"component_groups":["minecraft:cat_gift_for_owner"]}}}}},"minecraft:cave_spider":{"format_version":"1.16.0","minecraft:entity":{"description":{"identifier":"minecraft:cave_spider","is_spawnable":true,"is_summonable":true,"is_experimental":false},"component_groups":{"minecraft:spider_jockey":{"minecraft:addrider":{"entity_type":"minecraft:skeleton"},"minecraft:rideable":{"seat_count":1,"family_types":["skeleton"],"seats":{"position":[0,0.3,-0.1]}}},"minecraft:spider_stray_jockey":{"minecraft:addrider":{"entity_type":"minecraft:skeleton.stray"},"minecraft:rideable":{"seat_count":1,"family_types":["skeleton"],"seats":{"position":[0,0.3,-0.1]}}},"minecraft:spider_wither_jockey":{"minecraft:addrider":{"entity_type":"minecraft:skeleton.wither"},"minecraft:rideable":{"seat_count":1,"family_types":["skeleton"],"seats":{"position":[0,0.25,-0.1]}}},"minecraft:spider_neutral":{"minecraft:environment_sensor":{"triggers":{"filters":{"test":"is_brightness","operator":"<","value":0.49},"event":"minecraft:become_hostile"}},"minecraft:on_target_acquired":{"event":"minecraft:become_angry"}},"minecraft:spider_hostile":{"minecraft:environment_sensor":{"triggers":{"filters":{"test":"is_brightness","operator":">","value":0.49},"event":"minecraft:become_neutral"}},"minecraft:behavior.nearest_attackable_target":{"priority":2,"must_see":true,"attack_interval":5,"entity_types":[{"filters":{"any_of":[{"test":"is_family","subject":"other","value":"player"},{"test":"is_family","subject":"other","value":"snowgolem"},{"test":"is_family","subject":"other","value":"irongolem"}]},"max_dist":16}]},"minecraft:behavior.leap_at_target":{"priority":4,"yd":0.4,"must_be_on_ground":false},"minecraft:behavior.melee_attack":{"priority":3,"track_target":true,"random_stop_interval":100,"reach_multiplier":0.8}},"minecraft:spider_angry":{"minecraft:angry":{"duration":10,"duration_delta":3,"calm_event":{"event":"minecraft:on_calm","target":"self"}},"minecraft:behavior.nearest_attackable_target":{"priority":2,"must_see":true,"attack_interval":10,"entity_types":[{"filters":{"any_of":[{"test":"is_family","subject":"other","value":"player"},{"test":"is_family","subject":"other","value":"snowgolem"},{"test":"is_family","subject":"other","value":"irongolem"}]},"max_dist":16}]},"minecraft:behavior.leap_at_target":{"priority":4,"yd":0.4,"must_be_on_ground":false},"minecraft:behavior.melee_attack":{"priority":3,"track_target":true,"reach_multiplier":1.4}},"minecraft:spider_poison_easy":{"minecraft:attack":{"damage":2,"effect_name":"poison","effect_duration":0}},"minecraft:spider_poison_normal":{"minecraft:attack":{"damage":2,"effect_name":"poison","effect_duration":7}},"minecraft:spider_poison_hard":{"minecraft:attack":{"damage":2,"effect_name":"poison","effect_duration":15}}},"components":{"minecraft:is_hidden_when_invisible":{},"minecraft:experience_reward":{"on_death":"query.last_hit_by_player ? 5 : 0"},"minecraft:type_family":{"family":["cavespider","monster","arthropod","mob"]},"minecraft:breathable":{"total_supply":15,"suffocate_time":0},"minecraft:nameable":{},"minecraft:loot":{"table":"loot_tables/entities/spider.json"},"minecraft:collision_box":{"width":0.7,"height":0.5},"minecraft:health":{"value":12,"max":12},"minecraft:hurt_on_condition":{"damage_conditions":[{"filters":{"test":"in_lava","subject":"self","operator":"==","value":true},"cause":"lava","damage_per_tick":4}]},"minecraft:movement":{"value":0.3},"minecraft:navigation.climb":{"can_path_over_water":true},"minecraft:movement.basic":{},"minecraft:jump.static":{},"minecraft:can_climb":{},"minecraft:despawn":{"despawn_from_distance":{}},"minecraft:behavior.float":{"priority":1},"minecraft:behavior.mount_pathing":{"priority":5,"speed_multiplier":1.25,"target_dist":0,"track_target":true},"minecraft:behavior.random_stroll":{"priority":6,"speed_multiplier":0.8},"minecraft:behavior.look_at_player":{"priority":7,"look_distance":6,"probability":0.02},"minecraft:behavior.random_look_around":{"priority":7},"minecraft:behavior.hurt_by_target":{"priority":1},"minecraft:rideable":{"seat_count":1,"family_types":["zombie"],"seats":{"position":[0,0.3,0]}},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:conditional_bandwidth_optimization":{}},"events":{"minecraft:entity_spawned":{"randomize":[{"weight":1,"randomize":[{"weight":80,"filters":{"all_of":[{"test":"is_daytime","value":false},{"test":"is_snow_covered","value":true},{"test":"is_underground","value":false}]},"remove":{},"add":{"component_groups":["minecraft:spider_stray_jockey","minecraft:spider_neutral"]}},{"weight":80,"filters":{"test":"is_biome","value":"the_nether"},"remove":{},"add":{"component_groups":["minecraft:spider_wither_jockey","minecraft:spider_neutral"]}},{"weight":20,"filters":{"all_of":[{"test":"is_daytime","value":false},{"test":"is_underground","value":true}]},"remove":{},"add":{"component_groups":["minecraft:spider_jockey","minecraft:spider_neutral"]}}]},{"weight":99,"remove":{},"add":{"component_groups":["minecraft:spider_neutral"]}}]},"minecraft:become_hostile":{"sequence":[{"remove":{"component_groups":["minecraft:spider_neutral"]},"add":{"component_groups":["minecraft:spider_hostile"]}},{"filters":{"test":"is_difficulty","value":"easy"},"remove":{"component_groups":["minecraft:spider_poison_hard","minecraft:spider_poison_normal"]},"add":{"component_groups":["minecraft:spider_poison_easy"]}},{"filters":{"test":"is_difficulty","value":"normal"},"remove":{"component_groups":["minecraft:spider_poison_easy","minecraft:spider_poison_hard"]},"add":{"component_groups":["minecraft:spider_poison_normal"]}},{"filters":{"test":"is_difficulty","value":"hard"},"remove":{"component_groups":["minecraft:spider_poison_easy","minecraft:spider_poison_normal"]},"add":{"component_groups":["minecraft:spider_poison_hard"]}}]},"minecraft:become_neutral":{"remove":{"component_groups":["minecraft:spider_hostile"]},"add":{"component_groups":["minecraft:spider_neutral"]}},"minecraft:become_angry":{"sequence":[{"remove":{"component_groups":["minecraft:spider_neutral"]},"add":{"component_groups":["minecraft:spider_angry"]}},{"filters":{"test":"is_difficulty","value":"easy"},"remove":{"component_groups":["minecraft:spider_poison_hard","minecraft:spider_poison_normal"]},"add":{"component_groups":["minecraft:spider_poison_easy"]}},{"filters":{"test":"is_difficulty","value":"normal"},"remove":{"component_groups":["minecraft:spider_poison_easy","minecraft:spider_poison_hard"]},"add":{"component_groups":["minecraft:spider_poison_normal"]}},{"filters":{"test":"is_difficulty","value":"hard"},"remove":{"component_groups":["minecraft:spider_poison_easy","minecraft:spider_poison_normal"]},"add":{"component_groups":["minecraft:spider_poison_hard"]}}]},"minecraft:on_calm":{"remove":{"component_groups":["minecraft:spider_angry"]},"add":{"component_groups":["minecraft:spider_neutral"]}}}}},"minecraft:chest_boat":{"format_version":"1.18.10","minecraft:entity":{"description":{"identifier":"minecraft:chest_boat","is_spawnable":false,"is_summonable":true,"is_experimental":false},"component_groups":{"minecraft:floating":{"minecraft:buoyant":{"base_buoyancy":1,"apply_gravity":true,"simulate_waves":true,"big_wave_probability":0.03,"big_wave_speed":10,"liquid_blocks":["minecraft:water","minecraft:flowing_water"]}},"minecraft:can_ride":{"minecraft:rideable":{"seat_count":1,"interact_text":"action.interact.ride.boat","pull_in_entities":true,"seats":[{"position":[0.2,-0.2,0],"min_rider_count":0,"max_rider_count":1,"rotate_rider_by":"query.has_any_family('blaze', 'creeper', 'enderman', 'illager', 'magmacube', 'piglin', 'player', 'skeleton', 'slime', 'villager', 'wandering_trader', 'witch', 'zombie', 'zombie_pigman') ? -90 : 0","lock_rider_rotation":90}]}},"minecraft:above_bubble_column_down":{"minecraft:buoyant":{"base_buoyancy":1,"apply_gravity":true,"simulate_waves":false,"liquid_blocks":["minecraft:water","minecraft:flowing_water"],"drag_down_on_buoyancy_removed":0.7},"minecraft:timer":{"looping":false,"time":3,"time_down_event":{"event":"minecraft:sink","target":"self"}},"minecraft:out_of_control":{}},"minecraft:above_bubble_column_up":{"minecraft:buoyant":{"base_buoyancy":1,"apply_gravity":true,"simulate_waves":false,"liquid_blocks":["minecraft:water","minecraft:flowing_water"],"drag_down_on_buoyancy_removed":0.7},"minecraft:out_of_control":{}}},"components":{"minecraft:type_family":{"family":["boat","inanimate"]},"minecraft:collision_box":{"width":1.4,"height":0.455},"minecraft:hurt_on_condition":{"damage_conditions":[{"filters":{"test":"in_lava","subject":"self","operator":"==","value":true},"cause":"lava","damage_per_tick":4}]},"minecraft:leashable":{"soft_distance":4,"hard_distance":6,"max_distance":10},"minecraft:balloonable":{},"minecraft:inventory":{"container_type":"chest_boat","inventory_size":27,"can_be_siphoned_from":true},"minecraft:rideable":{"seat_count":1,"interact_text":"action.interact.ride.boat","pull_in_entities":true,"seats":[{"position":[0.2,-0.2,0],"min_rider_count":0,"max_rider_count":1,"rotate_rider_by":"query.has_any_family('blaze', 'creeper', 'enderman', 'illager', 'magmacube', 'piglin', 'player', 'skeleton', 'slime', 'villager', 'wandering_trader', 'witch', 'zombie', 'zombie_pigman') ? -90 : 0","lock_rider_rotation":90}]},"minecraft:is_stackable":{},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:buoyant":{"base_buoyancy":1,"apply_gravity":true,"simulate_waves":true,"big_wave_probability":0.03,"big_wave_speed":10,"liquid_blocks":["minecraft:water","minecraft:flowing_water"]},"minecraft:conditional_bandwidth_optimization":{"default_values":{"max_optimized_distance":60,"max_dropped_ticks":20,"use_motion_prediction_hints":true},"conditional_values":[{"max_optimized_distance":0,"max_dropped_ticks":0,"use_motion_prediction_hints":true,"conditional_values":[{"test":"is_moving","subject":"self","operator":"==","value":true}]}]},"minecraft:inside_block_notifier":{"block_list":[{"block":{"name":"minecraft:bubble_column","states":{"drag_down":true}},"entered_block_event":{"event":"minecraft:entered_bubble_column_down","target":"self"},"exited_block_event":{"event":"minecraft:exited_bubble_column","target":"self"}},{"block":{"name":"minecraft:bubble_column","states":{"drag_down":false}},"entered_block_event":{"event":"minecraft:entered_bubble_column_up","target":"self"},"exited_block_event":{"event":"minecraft:exited_bubble_column","target":"self"}}]}},"events":{"minecraft:entered_bubble_column_down":{"remove":{"component_groups":["minecraft:floating"]},"add":{"component_groups":["minecraft:above_bubble_column_down"]}},"minecraft:entered_bubble_column_up":{"remove":{"component_groups":["minecraft:floating"]},"add":{"component_groups":["minecraft:above_bubble_column_up"]}},"minecraft:exited_bubble_column":{"remove":{"component_groups":["minecraft:above_bubble_column_down","minecraft:above_bubble_column_up"]},"add":{"component_groups":["minecraft:floating","minecraft:can_ride"]}},"minecraft:sink":{"remove":{"component_groups":["minecraft:floating","minecraft:can_ride","minecraft:above_bubble_column_down","minecraft:above_bubble_column_up"]}}}}},"minecraft:chest_minecart":{"format_version":"1.12.0","minecraft:entity":{"description":{"identifier":"minecraft:chest_minecart","is_spawnable":false,"is_summonable":true,"is_experimental":false},"components":{"minecraft:type_family":{"family":["minecart","inanimate"]},"minecraft:collision_box":{"width":0.98,"height":0.7},"minecraft:rail_movement":{},"minecraft:inventory":{"container_type":"minecart_chest","inventory_size":27,"can_be_siphoned_from":true},"minecraft:is_stackable":{"value":true},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:conditional_bandwidth_optimization":{"default_values":{"max_optimized_distance":60,"max_dropped_ticks":20,"use_motion_prediction_hints":true},"conditional_values":[{"max_optimized_distance":0,"max_dropped_ticks":0,"conditional_values":[{"test":"is_moving","subject":"self","operator":"==","value":true}]}]}}}},"minecraft:chicken":{"format_version":"1.16.0","minecraft:entity":{"description":{"identifier":"minecraft:chicken","is_spawnable":true,"is_summonable":true,"is_experimental":false},"component_groups":{"minecraft:chicken_baby":{"minecraft:is_baby":{},"minecraft:scale":{"value":0.5},"minecraft:ageable":{"duration":1200,"feed_items":["wheat_seeds","beetroot_seeds","melon_seeds","pumpkin_seeds"],"grow_up":{"event":"minecraft:ageable_grow_up","target":"self"}},"minecraft:behavior.follow_parent":{"priority":5,"speed_multiplier":1.1}},"minecraft:chicken_adult":{"minecraft:experience_reward":{"on_bred":"Math.Random(1,7)","on_death":"query.last_hit_by_player ? Math.Random(1,3) : 0"},"minecraft:loot":{"table":"loot_tables/entities/chicken.json"},"minecraft:breedable":{"require_tame":false,"breeds_with":{"mate_type":"minecraft:chicken","baby_type":"minecraft:chicken","breed_event":{"event":"minecraft:entity_born","target":"baby"}},"breed_items":["wheat_seeds","beetroot_seeds","melon_seeds","pumpkin_seeds"]},"minecraft:behavior.breed":{"priority":3,"speed_multiplier":1},"minecraft:rideable":{"seat_count":1,"family_types":["zombie"],"seats":{"position":[0,0.4,0]}},"minecraft:spawn_entity":{"entities":{"min_wait_time":300,"max_wait_time":600,"spawn_sound":"plop","spawn_item":"egg","filters":{"test":"rider_count","subject":"self","operator":"==","value":0}}}}},"components":{"minecraft:is_hidden_when_invisible":{},"minecraft:type_family":{"family":["chicken","mob"]},"minecraft:breathable":{"total_supply":15,"suffocate_time":0},"minecraft:collision_box":{"width":0.6,"height":0.8},"minecraft:nameable":{},"minecraft:health":{"value":4,"max":4},"minecraft:hurt_on_condition":{"damage_conditions":[{"filters":{"test":"in_lava","subject":"self","operator":"==","value":true},"cause":"lava","damage_per_tick":4}]},"minecraft:movement":{"value":0.25},"minecraft:damage_sensor":{"triggers":{"cause":"fall","deals_damage":false}},"minecraft:leashable":{"soft_distance":4,"hard_distance":6,"max_distance":10},"minecraft:balloonable":{"mass":0.5},"minecraft:navigation.walk":{"can_path_over_water":true,"avoid_damage_blocks":true},"minecraft:movement.basic":{},"minecraft:jump.static":{},"minecraft:can_climb":{},"minecraft:despawn":{"despawn_from_distance":{}},"minecraft:behavior.float":{"priority":0},"minecraft:behavior.panic":{"priority":1,"speed_multiplier":1.5},"minecraft:behavior.mount_pathing":{"priority":2,"speed_multiplier":1.5,"target_dist":0,"track_target":true},"minecraft:behavior.tempt":{"priority":4,"speed_multiplier":1,"items":["wheat_seeds","beetroot_seeds","melon_seeds","pumpkin_seeds"]},"minecraft:behavior.random_stroll":{"priority":6,"speed_multiplier":1},"minecraft:behavior.look_at_player":{"priority":7,"look_distance":6,"probability":0.02},"minecraft:behavior.random_look_around":{"priority":8},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:conditional_bandwidth_optimization":{},"minecraft:game_event_movement_tracking":{"emit_flap":true}},"events":{"from_egg":{"add":{"component_groups":["minecraft:chicken_baby"]}},"minecraft:entity_spawned":{"randomize":[{"weight":95,"trigger":"minecraft:spawn_adult"},{"weight":5,"add":{"component_groups":["minecraft:chicken_baby"]}}]},"minecraft:entity_born":{"remove":{},"add":{"component_groups":["minecraft:chicken_baby"]}},"minecraft:ageable_grow_up":{"remove":{"component_groups":["minecraft:chicken_baby"]},"add":{"component_groups":["minecraft:chicken_adult"]}},"minecraft:spawn_adult":{"add":{"component_groups":["minecraft:chicken_adult"]}}}}},"minecraft:command_block_minecart":{"format_version":"1.12.0","minecraft:entity":{"description":{"identifier":"minecraft:command_block_minecart","is_spawnable":false,"is_summonable":true,"is_experimental":false},"component_groups":{"minecraft:command_block_active":{"minecraft:rail_sensor":{"check_block_types":true,"eject_on_activate":false,"eject_on_deactivate":false,"tick_command_block_on_activate":true,"tick_command_block_on_deactivate":false,"on_deactivate":{"event":"minecraft:command_block_deactivate"}}},"minecraft:command_block_inactive":{"minecraft:rail_sensor":{"check_block_types":false,"eject_on_activate":false,"eject_on_deactivate":false,"tick_command_block_on_activate":true,"tick_command_block_on_deactivate":false,"on_activate":{"event":"minecraft:command_block_activate"}}}},"components":{"minecraft:type_family":{"family":["minecart","inanimate"]},"minecraft:collision_box":{"width":0.98,"height":0.7},"minecraft:rail_movement":{},"minecraft:inventory":{},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:conditional_bandwidth_optimization":{"default_values":{"max_optimized_distance":60,"max_dropped_ticks":20,"use_motion_prediction_hints":true},"conditional_values":[{"max_optimized_distance":0,"max_dropped_ticks":0,"conditional_values":[{"test":"is_moving","subject":"self","operator":"==","value":true}]}]}},"events":{"minecraft:entity_spawned":{"add":{"component_groups":["minecraft:command_block_inactive"]}},"minecraft:command_block_activate":{"remove":{"component_groups":["minecraft:command_block_inactive"]},"add":{"component_groups":["minecraft:command_block_active"]}},"minecraft:command_block_deactivate":{"remove":{"component_groups":["minecraft:command_block_active"]},"add":{"component_groups":["minecraft:command_block_inactive"]}}}}},"minecraft:cow":{"format_version":"1.16.0","minecraft:entity":{"description":{"identifier":"minecraft:cow","is_spawnable":true,"is_summonable":true,"is_experimental":false},"component_groups":{"minecraft:cow_baby":{"minecraft:is_baby":{},"minecraft:scale":{"value":0.5},"minecraft:ageable":{"duration":1200,"feed_items":"wheat","grow_up":{"event":"minecraft:ageable_grow_up","target":"self"}},"minecraft:behavior.follow_parent":{"priority":6,"speed_multiplier":1.1}},"minecraft:cow_adult":{"minecraft:experience_reward":{"on_bred":"Math.Random(1,7)","on_death":"query.last_hit_by_player ? Math.Random(1,3) : 0"},"minecraft:loot":{"table":"loot_tables/entities/cow.json"},"minecraft:behavior.breed":{"priority":3,"speed_multiplier":1},"minecraft:breedable":{"require_tame":false,"breed_items":"wheat","breeds_with":{"mate_type":"minecraft:cow","baby_type":"minecraft:cow","breed_event":{"event":"minecraft:entity_born","target":"baby"}}},"minecraft:interact":{"interactions":[{"on_interact":{"filters":{"all_of":[{"test":"is_family","subject":"other","value":"player"},{"test":"has_equipment","domain":"hand","subject":"other","value":"bucket:0"}]}},"use_item":true,"transform_to_item":"bucket:1","play_sounds":"milk","interact_text":"action.interact.milk"}]}}},"components":{"minecraft:is_hidden_when_invisible":{},"minecraft:type_family":{"family":["cow","mob"]},"minecraft:breathable":{"total_supply":15,"suffocate_time":0},"minecraft:navigation.walk":{"can_path_over_water":true,"avoid_water":true,"avoid_damage_blocks":true},"minecraft:movement.basic":{},"minecraft:jump.static":{},"minecraft:can_climb":{},"minecraft:collision_box":{"width":0.9,"height":1.3},"minecraft:nameable":{},"minecraft:health":{"value":10,"max":10},"minecraft:hurt_on_condition":{"damage_conditions":[{"filters":{"test":"in_lava","subject":"self","operator":"==","value":true},"cause":"lava","damage_per_tick":4}]},"minecraft:movement":{"value":0.25},"minecraft:despawn":{"despawn_from_distance":{}},"minecraft:behavior.float":{"priority":0},"minecraft:behavior.panic":{"priority":1,"speed_multiplier":1.25},"minecraft:behavior.mount_pathing":{"priority":2,"speed_multiplier":1.5,"target_dist":0,"track_target":true},"minecraft:behavior.breed":{"priority":3,"speed_multiplier":1},"minecraft:behavior.tempt":{"priority":4,"speed_multiplier":1.25,"items":["wheat"]},"minecraft:behavior.follow_parent":{"priority":5,"speed_multiplier":1.1},"minecraft:behavior.random_stroll":{"priority":6,"speed_multiplier":0.8},"minecraft:behavior.look_at_player":{"priority":7,"look_distance":6,"probability":0.02},"minecraft:behavior.random_look_around":{"priority":9},"minecraft:leashable":{"soft_distance":4,"hard_distance":6,"max_distance":10},"minecraft:balloonable":{},"minecraft:rideable":{"seat_count":1,"family_types":["zombie"],"seats":{"position":[0,1.105,0]}},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:conditional_bandwidth_optimization":{}},"events":{"minecraft:entity_spawned":{"randomize":[{"weight":95,"trigger":"minecraft:spawn_adult"},{"weight":5,"add":{"component_groups":["minecraft:cow_baby"]}}]},"minecraft:entity_born":{"add":{"component_groups":["minecraft:cow_baby"]}},"minecraft:entity_transformed":{"remove":{},"add":{"component_groups":["minecraft:cow_adult"]}},"minecraft:ageable_grow_up":{"remove":{"component_groups":["minecraft:cow_baby"]},"add":{"component_groups":["minecraft:cow_adult"]}},"minecraft:spawn_adult":{"add":{"component_groups":["minecraft:cow_adult"]}}}}},"minecraft:creeper":{"format_version":"1.16.0","minecraft:entity":{"description":{"identifier":"minecraft:creeper","is_spawnable":true,"is_summonable":true,"is_experimental":false},"component_groups":{"minecraft:exploding":{"minecraft:explode":{"fuse_length":1.5,"fuse_lit":true,"power":3,"causes_fire":false,"destroy_affected_by_griefing":true}},"minecraft:charged_creeper":{"minecraft:is_charged":{}},"minecraft:charged_exploding":{"minecraft:explode":{"fuse_length":1.5,"fuse_lit":true,"power":6,"causes_fire":false,"destroy_affected_by_griefing":true}},"minecraft:forced_exploding":{"minecraft:target_nearby_sensor":{},"minecraft:explode":{"fuse_length":1.5,"fuse_lit":true,"power":3,"causes_fire":false,"destroy_affected_by_griefing":true},"minecraft:on_target_escape":{}},"minecraft:forced_charged_exploding":{"minecraft:target_nearby_sensor":{},"minecraft:explode":{"fuse_length":1.5,"fuse_lit":true,"power":6,"causes_fire":false,"destroy_affected_by_griefing":true},"minecraft:on_target_escape":{}}},"components":{"minecraft:is_hidden_when_invisible":{},"minecraft:experience_reward":{"on_death":"query.last_hit_by_player ? 5 : 0"},"minecraft:type_family":{"family":["creeper","monster","mob"]},"minecraft:breathable":{"total_supply":15,"suffocate_time":0},"minecraft:nameable":{},"minecraft:collision_box":{"width":0.6,"height":1.8},"minecraft:movement":{"value":0.2},"minecraft:navigation.walk":{"can_path_over_water":true},"minecraft:movement.basic":{},"minecraft:jump.static":{},"minecraft:can_climb":{},"minecraft:loot":{"table":"loot_tables/entities/creeper.json"},"minecraft:health":{"value":20,"max":20},"minecraft:hurt_on_condition":{"damage_conditions":[{"filters":{"test":"in_lava","subject":"self","operator":"==","value":true},"cause":"lava","damage_per_tick":4}]},"minecraft:attack":{"damage":3},"minecraft:damage_sensor":{"triggers":{"on_damage":{"filters":{"test":"is_family","subject":"other","value":"lightning"},"event":"minecraft:become_charged"},"deals_damage":false}},"minecraft:target_nearby_sensor":{"inside_range":2.5,"outside_range":6,"must_see":true,"on_inside_range":{"event":"minecraft:start_exploding","target":"self"},"on_outside_range":{"event":"minecraft:stop_exploding","target":"self"},"on_vision_lost_inside_range":{"event":"minecraft:stop_exploding","target":"self"}},"minecraft:interact":{"interactions":{"on_interact":{"filters":{"all_of":[{"test":"is_family","subject":"other","value":"player"},{"test":"has_equipment","domain":"hand","subject":"other","value":"flint_and_steel"},{"test":"has_component","operator":"!=","value":"minecraft:explode"}]},"event":"minecraft:start_exploding_forced","target":"self"},"hurt_item":1,"swing":true,"play_sounds":"ignite","interact_text":"action.interact.creeper"}},"minecraft:despawn":{"despawn_from_distance":{}},"minecraft:behavior.float":{"priority":0},"minecraft:behavior.swell":{"start_distance":2.5,"stop_distance":6,"priority":2},"minecraft:behavior.melee_attack":{"priority":4,"speed_multiplier":1.25,"track_target":false,"reach_multiplier":0},"minecraft:behavior.avoid_mob_type":{"priority":3,"entity_types":[{"filters":{"any_of":[{"test":"is_family","subject":"other","value":"ocelot"},{"test":"is_family","subject":"other","value":"cat"}]},"max_dist":6,"sprint_speed_multiplier":1.2}]},"minecraft:behavior.random_stroll":{"priority":5,"speed_multiplier":1},"minecraft:behavior.look_at_player":{"priority":6,"look_distance":8},"minecraft:behavior.random_look_around":{"priority":6},"minecraft:behavior.nearest_attackable_target":{"priority":1,"must_see":true,"must_see_forget_duration":3,"entity_types":[{"filters":{"test":"is_family","subject":"other","value":"player"},"max_dist":16}]},"minecraft:behavior.hurt_by_target":{"priority":2},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:on_target_escape":{"event":"minecraft:stop_exploding","target":"self"},"minecraft:conditional_bandwidth_optimization":{}},"events":{"minecraft:start_exploding_forced":{"sequence":[{"filters":{"test":"has_component","operator":"!=","value":"minecraft:is_charged"},"add":{"component_groups":["minecraft:forced_exploding"]}},{"filters":{"test":"has_component","value":"minecraft:is_charged"},"add":{"component_groups":["minecraft:forced_charged_exploding"]}}]},"minecraft:start_exploding":{"sequence":[{"filters":{"test":"has_component","operator":"!=","value":"minecraft:is_charged"},"add":{"component_groups":["minecraft:exploding"]}},{"filters":{"test":"has_component","value":"minecraft:is_charged"},"add":{"component_groups":["minecraft:charged_exploding"]}}]},"minecraft:stop_exploding":{"remove":{"component_groups":["minecraft:exploding"]}},"minecraft:become_charged":{"remove":{"component_groups":["minecraft:exploding"]},"add":{"component_groups":["minecraft:charged_creeper"]}}}}},"minecraft:dolphin":{"format_version":"1.18.10","minecraft:entity":{"description":{"identifier":"minecraft:dolphin","is_spawnable":true,"is_summonable":true,"is_experimental":false},"component_groups":{"dolphin_adult":{"minecraft:experience_reward":{"on_death":"query.last_hit_by_player ? Math.Random(1,3) : 0"},"minecraft:loot":{"table":"loot_tables/entities/dolphin.json"},"minecraft:bribeable":{"bribe_items":["fish","salmon"]},"minecraft:behavior.melee_attack":{"priority":2,"track_target":true}},"dolphin_baby":{"minecraft:is_baby":{},"minecraft:scale":{"value":0.65},"minecraft:ageable":{"duration":1200,"feed_items":["fish","salmon"],"grow_up":{"event":"ageable_grow_up","target":"self"}},"minecraft:behavior.follow_parent":{"priority":4,"speed_multiplier":1.1},"minecraft:behavior.panic":{"priority":1,"speed_multiplier":1.25}},"dolphin_angry":{"minecraft:angry":{"duration":25,"broadcast_anger":true,"broadcast_range":16,"calm_event":{"event":"on_calm","target":"self"}},"minecraft:on_target_acquired":{}},"dolphin_dried":{"minecraft:damage_over_time":{"damage_per_hurt":1,"time_between_hurt":0}},"dolphin_swimming_navigation":{"minecraft:behavior.look_at_player":{"priority":8,"look_distance":6},"minecraft:navigation.generic":{"is_amphibious":true,"can_path_over_water":false,"can_swim":true,"can_walk":false,"can_breach":true,"can_sink":false},"minecraft:environment_sensor":{"triggers":[{"filters":{"all_of":[{"test":"on_ground","operator":"==","value":true},{"test":"in_water","operator":"!=","value":true}]},"event":"navigation_on_land"}]}},"dolphin_on_land":{"minecraft:navigation.generic":{"is_amphibious":true,"can_path_over_water":true,"can_swim":true,"can_walk":true,"can_breach":false,"can_jump":false},"minecraft:drying_out_timer":{"total_time":120,"water_bottle_refill_time":0,"dried_out_event":{"event":"dried_out"},"stopped_drying_out_event":{"event":"stop_dryingout"},"recover_after_dried_out_event":{"event":"recover_after_dried_out"}}},"dolphin_on_land_in_rain":{"minecraft:navigation.generic":{"is_amphibious":true,"can_path_over_water":true,"can_swim":true,"can_walk":true,"can_breach":false,"can_jump":false},"minecraft:environment_sensor":{"triggers":[{"filters":{"test":"in_water","operator":"==","value":true},"event":"navigation_off_land"},{"filters":{"test":"in_water_or_rain","operator":"!=","value":true},"event":"start_dryingout"}]}}},"components":{"minecraft:is_hidden_when_invisible":{},"minecraft:nameable":{},"minecraft:type_family":{"family":["dolphin","mob"]},"minecraft:collision_box":{"width":0.9,"height":0.6},"minecraft:health":{"value":10,"max":10},"minecraft:hurt_on_condition":{"damage_conditions":[{"filters":{"test":"in_lava","subject":"self","operator":"==","value":true},"cause":"lava","damage_per_tick":4}]},"minecraft:follow_range":{"value":48,"max":48},"minecraft:breathable":{"total_supply":240,"suffocate_time":0,"breathes_air":true,"breathes_water":false,"generates_bubbles":false},"minecraft:attack":{"damage":3},"minecraft:movement":{"value":0.1},"minecraft:navigation.generic":{"is_amphibious":true,"can_path_over_water":true,"can_swim":true,"can_walk":false,"can_breach":true,"can_sink":false},"minecraft:underwater_movement":{"value":0.15},"minecraft:jump.static":{"jump_power":0.6},"minecraft:can_climb":{},"minecraft:behavior.swim_with_entity":{"priority":4,"success_rate":0.1,"chance_to_stop":0.0333,"state_check_interval":0.5,"catch_up_threshold":12,"match_direction_threshold":2,"catch_up_multiplier":2.5,"speed_multiplier":1.5,"search_range":20,"stop_distance":5,"entity_types":[{"filters":{"test":"is_family","subject":"other","value":"player"}}]},"minecraft:despawn":{"despawn_from_distance":{}},"minecraft:behavior.random_swim":{"priority":5,"interval":0,"xz_dist":20},"minecraft:behavior.random_breach":{"priority":6,"interval":50,"xz_dist":6,"cooldown_time":2},"minecraft:behavior.random_look_around":{"priority":7},"minecraft:behavior.avoid_mob_type":{"priority":2,"entity_types":[{"filters":{"any_of":[{"test":"is_family","subject":"other","value":"guardian_elder"},{"test":"is_family","subject":"other","value":"guardian"}]},"max_dist":8,"walk_speed_multiplier":1,"sprint_speed_multiplier":1}],"probability_per_strength":0.14},"minecraft:behavior.find_underwater_treasure":{"priority":2,"speed_multiplier":2,"search_range":30,"stop_distance":50},"minecraft:behavior.move_to_water":{"priority":1,"search_range":15,"search_height":5},"minecraft:behavior.hurt_by_target":{"priority":1},"minecraft:flocking":{"in_water":false,"match_variants":false,"use_center_of_mass":false,"low_flock_limit":4,"high_flock_limit":8,"goal_weight":2,"loner_chance":0.1,"influence_radius":6,"breach_influence":0,"separation_weight":1.75,"separation_threshold":3,"cohesion_weight":1.85,"cohesion_threshold":6.5,"innner_cohesion_threshold":3.5,"min_height":4,"max_height":4,"block_distance":1,"block_weight":0},"minecraft:on_target_acquired":{"event":"become_angry","target":"self"},"minecraft:on_target_escape":{"target":"self"},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:leashable":{"soft_distance":4,"hard_distance":6,"max_distance":10},"minecraft:balloonable":{},"minecraft:conditional_bandwidth_optimization":{}},"events":{"minecraft:entity_spawned":{"randomize":[{"weight":90,"add":{"component_groups":["dolphin_adult","dolphin_swimming_navigation"]}},{"weight":10,"add":{"component_groups":["dolphin_baby","dolphin_swimming_navigation"]}}]},"ageable_grow_up":{"remove":{"component_groups":["dolphin_baby"]},"add":{"component_groups":["dolphin_adult"]}},"become_angry":{"add":{"component_groups":["dolphin_angry"]}},"on_calm":{"remove":{"component_groups":["dolphin_angry"]}},"stop_dryingout":{"remove":{"component_groups":["dolphin_on_land","dolphin_dried"]},"add":{"component_groups":["dolphin_on_land_in_rain"]}},"start_dryingout":{"remove":{"component_groups":["dolphin_on_land_in_rain"]},"add":{"component_groups":["dolphin_on_land"]}},"dried_out":{"add":{"component_groups":["dolphin_dried"]}},"recover_after_dried_out":{"remove":{"component_groups":["dolphin_dried"]}},"navigation_on_land":{"add":{"component_groups":["dolphin_on_land"]},"remove":{"component_groups":["dolphin_swimming_navigation"]}},"navigation_off_land":{"add":{"component_groups":["dolphin_swimming_navigation"]},"remove":{"component_groups":["dolphin_on_land_in_rain","dolphin_on_land","dolphin_dried"]}}}}},"minecraft:donkey":{"format_version":"1.16.0","minecraft:entity":{"description":{"identifier":"minecraft:donkey","is_spawnable":true,"is_summonable":true,"is_experimental":false},"component_groups":{"minecraft:donkey_baby":{"minecraft:is_baby":{},"minecraft:scale_by_age":{"start_scale":0.5,"end_scale":1},"minecraft:ageable":{"duration":1200,"feed_items":[{"item":"wheat","growth":0.016667},{"item":"sugar","growth":0.025},{"item":"hay_block","growth":0.15},{"item":"apple","growth":0.05},{"item":"golden_carrot","growth":0.05},{"item":"golden_apple","growth":0.2},{"item":"appleEnchanted","growth":0.2}],"grow_up":{"event":"minecraft:ageable_grow_up","target":"self"}},"minecraft:behavior.follow_parent":{"priority":4,"speed_multiplier":1}},"minecraft:donkey_adult":{"minecraft:experience_reward":{"on_bred":"Math.Random(1,7)","on_death":"query.last_hit_by_player ? Math.Random(1,3) : 0"},"minecraft:loot":{"table":"loot_tables/entities/horse.json"},"minecraft:behavior.run_around_like_crazy":{"priority":1,"speed_multiplier":1.2},"minecraft:behavior.breed":{"priority":2,"speed_multiplier":1}},"minecraft:donkey_wild":{"minecraft:rideable":{"seat_count":1,"family_types":["player","zombie"],"interact_text":"action.interact.mount","seats":{"position":[0,0.925,-0.2]}},"minecraft:behavior.mount_pathing":{"priority":2,"speed_multiplier":1.5,"target_dist":0,"track_target":true},"minecraft:tamemount":{"min_temper":0,"max_temper":100,"feed_text":"action.interact.feed","ride_text":"action.interact.mount","feed_items":[{"item":"wheat","temper_mod":3},{"item":"sugar","temper_mod":3},{"item":"apple","temper_mod":3},{"item":"golden_carrot","temper_mod":5},{"item":"golden_apple","temper_mod":10},{"item":"appleEnchanted","temper_mod":10}],"auto_reject_items":[{"item":"horsearmorleather"},{"item":"horsearmoriron"},{"item":"horsearmorgold"},{"item":"horsearmordiamond"},{"item":"saddle"}],"tame_event":{"event":"minecraft:on_tame","target":"self"}}},"minecraft:donkey_tamed":{"minecraft:is_tamed":{},"minecraft:equippable":{"slots":[{"slot":0,"item":"saddle","accepted_items":["saddle"],"on_equip":{"event":"minecraft:donkey_saddled"},"on_unequip":{"event":"minecraft:donkey_unsaddled"}}]},"minecraft:rideable":{"seat_count":1,"crouching_skip_interact":true,"family_types":["player"],"interact_text":"action.interact.ride.horse","seats":{"position":[0,0.925,-0.2]}},"minecraft:behavior.player_ride_tamed":{},"minecraft:inventory":{"inventory_size":16,"container_type":"horse"},"minecraft:breedable":{"require_tame":true,"inherit_tamed":false,"breeds_with":[{"mate_type":"minecraft:donkey","baby_type":"minecraft:donkey","breed_event":{"event":"minecraft:entity_born","target":"baby"}},{"mate_type":"minecraft:horse","baby_type":"minecraft:mule","breed_event":{"event":"minecraft:entity_born","target":"baby"}}],"breed_items":["golden_carrot","golden_apple","appleEnchanted"]},"minecraft:behavior.tempt":{"priority":5,"speed_multiplier":1.2,"items":["apple","carrot","golden_apple","appleEnchanted","golden_carrot","carrotOnAStick","hay_block","sugar","bread","wheat"]}},"minecraft:donkey_unchested":{"minecraft:interact":{"interactions":[{"play_sounds":"armor.equip_generic","on_interact":{"filters":{"all_of":[{"test":"is_family","subject":"other","value":"player"},{"test":"has_equipment","domain":"hand","subject":"other","value":"chest"}]},"event":"minecraft:on_chest","target":"self"},"use_item":true,"interact_text":"action.interact.attachchest"}]}},"minecraft:donkey_chested":{"minecraft:is_chested":{}},"minecraft:donkey_saddled":{"minecraft:is_saddled":{},"minecraft:input_ground_controlled":{},"minecraft:can_power_jump":{}}},"components":{"minecraft:is_hidden_when_invisible":{},"minecraft:type_family":{"family":["donkey","mob"]},"minecraft:breathable":{"total_supply":15,"suffocate_time":0},"minecraft:collision_box":{"width":1.4,"height":1.6},"minecraft:health":{"value":{"range_min":15,"range_max":30}},"minecraft:hurt_on_condition":{"damage_conditions":[{"filters":{"test":"in_lava","subject":"self","operator":"==","value":true},"cause":"lava","damage_per_tick":4}]},"minecraft:movement":{"value":0.175},"minecraft:navigation.walk":{"can_path_over_water":true,"avoid_water":true,"avoid_damage_blocks":true},"minecraft:movement.basic":{},"minecraft:jump.static":{},"minecraft:nameable":{},"minecraft:horse.jump_strength":{"value":0.5},"minecraft:leashable":{"soft_distance":4,"hard_distance":6,"max_distance":10},"minecraft:balloonable":{},"minecraft:healable":{"items":[{"item":"wheat","heal_amount":2},{"item":"sugar","heal_amount":1},{"item":"hay_block","heal_amount":20},{"item":"apple","heal_amount":3},{"item":"golden_carrot","heal_amount":4},{"item":"golden_apple","heal_amount":10},{"item":"appleEnchanted","heal_amount":10}]},"minecraft:despawn":{"despawn_from_distance":{}},"minecraft:behavior.float":{"priority":0},"minecraft:behavior.panic":{"priority":1,"speed_multiplier":1.2},"minecraft:behavior.random_stroll":{"priority":6,"speed_multiplier":0.7},"minecraft:behavior.look_at_player":{"priority":7,"look_distance":6,"probability":0.02},"minecraft:behavior.random_look_around":{"priority":8},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:conditional_bandwidth_optimization":{}},"events":{"minecraft:entity_spawned":{"randomize":[{"weight":80,"add":{"component_groups":["minecraft:donkey_adult","minecraft:donkey_wild"]}},{"weight":20,"add":{"component_groups":["minecraft:donkey_baby"]}}]},"minecraft:entity_born":{"add":{"component_groups":["minecraft:donkey_baby"]}},"minecraft:on_tame":{"remove":{"component_groups":["minecraft:donkey_wild"]},"add":{"component_groups":["minecraft:donkey_tamed","minecraft:donkey_unchested"]}},"minecraft:ageable_grow_up":{"remove":{"component_groups":["minecraft:donkey_baby"]},"add":{"component_groups":["minecraft:donkey_adult","minecraft:donkey_wild"]}},"minecraft:on_chest":{"remove":{"component_groups":["minecraft:donkey_unchested"]},"add":{"component_groups":["minecraft:donkey_chested"]}},"minecraft:donkey_saddled":{"add":{"component_groups":["minecraft:donkey_saddled"]}},"minecraft:donkey_unsaddled":{"remove":{"component_groups":["minecraft:donkey_saddled"]}}}}},"minecraft:dragon_fireball":{"format_version":"1.12.0","minecraft:entity":{"description":{"identifier":"minecraft:dragon_fireball","is_spawnable":false,"is_summonable":false,"is_experimental":false},"components":{"minecraft:collision_box":{"width":0.31,"height":0.31},"minecraft:projectile":{"on_hit":{"spawn_aoe_cloud":{"radius":6,"radius_on_use":0,"potion":23,"particle":"dragonbreath","duration":120,"color":[220,0,239],"affect_owner":false,"reapplication_delay":20},"remove_on_hit":{}},"power":1.3,"gravity":0,"inertia":1,"anchor":2,"offset":[0,0.5,0],"semi_random_diff_damage":true,"uncertainty_base":10,"reflect_on_hurt":true,"hit_sound":"explode"}},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:conditional_bandwidth_optimization":{"default_values":{"max_optimized_distance":80,"max_dropped_ticks":7,"use_motion_prediction_hints":true}}}},"minecraft:drowned":{"format_version":"1.17.20","minecraft:entity":{"description":{"identifier":"minecraft:drowned","is_spawnable":true,"is_summonable":true,"is_experimental":false},"component_groups":{"minecraft:baby_drowned":{"minecraft:experience_reward":{"on_death":"query.last_hit_by_player ? 12 + (query.equipment_count * Math.Random(1,3)) : 0"},"minecraft:is_baby":{},"minecraft:scale":{"value":0.5},"minecraft:movement":{"value":0.25},"minecraft:underwater_movement":{"value":0.08}},"minecraft:adult_drowned":{"minecraft:experience_reward":{"on_death":"query.last_hit_by_player ? 5 + (query.equipment_count * Math.Random(1,3)) : 0"},"minecraft:loot":{"table":"loot_tables/entities/drowned.json"}},"minecraft:mode_switcher":{"minecraft:target_nearby_sensor":{"inside_range":3,"outside_range":5,"on_inside_range":{"event":"minecraft:switch_to_melee","target":"self"},"on_outside_range":{"event":"minecraft:switch_to_ranged","target":"self"}}},"minecraft:ranged_mode":{"minecraft:shooter":{"def":"minecraft:thrown_trident"},"minecraft:behavior.ranged_attack":{"priority":3,"attack_interval_min":1,"attack_interval_max":3,"attack_radius":10,"swing":true}},"minecraft:ranged_equipment":{"minecraft:equipment":{"table":"loot_tables/entities/drowned_ranged_equipment.json","slot_drop_chance":[{"slot":"slot.weapon.offhand","drop_chance":1}]}},"minecraft:melee_mode":{"minecraft:attack":{"damage":3},"minecraft:behavior.melee_attack":{"priority":3,"speed_multiplier":1,"track_target":false,"require_complete_path":true}},"minecraft:melee_equipment":{"minecraft:equipment":{"table":"loot_tables/entities/drowned_equipment.json","slot_drop_chance":[{"slot":"slot.weapon.offhand","drop_chance":1}]}},"minecraft:hunter_mode":{"minecraft:navigation.generic":{"is_amphibious":true,"can_path_over_water":false,"can_break_doors":true,"can_swim":true,"can_walk":true,"avoid_sun":true}},"minecraft:wander_mode":{"minecraft:navigation.generic":{"is_amphibious":true,"can_path_over_water":false,"can_break_doors":true,"can_swim":false,"can_walk":true,"avoid_sun":true}},"minecraft:can_break_doors":{"minecraft:annotation.break_door":{}}},"components":{"minecraft:nameable":{},"minecraft:type_family":{"family":["drowned","zombie","undead","monster","mob"]},"minecraft:equip_item":{},"minecraft:collision_box":{"width":0.6,"height":1.9},"minecraft:underwater_movement":{"value":0.06},"minecraft:movement.generic":{},"minecraft:jump.static":{},"minecraft:can_climb":{},"minecraft:health":{"value":20,"max":20},"minecraft:hurt_on_condition":{"damage_conditions":[{"filters":{"test":"in_lava","subject":"self","operator":"==","value":true},"cause":"lava","damage_per_tick":4}]},"minecraft:movement":{"value":0.23},"minecraft:burns_in_daylight":{},"minecraft:breathable":{"total_supply":15,"suffocate_time":0,"breathes_air":true,"breathes_water":true},"minecraft:navigation.generic":{"is_amphibious":true,"can_path_over_water":false,"can_break_doors":true,"can_swim":false,"can_walk":true,"avoid_sun":true},"minecraft:shareables":{"items":[{"item":"minecraft:nautilus_shell","want_amount":1,"surplus_amount":1,"priority":0},{"item":"minecraft:trident","want_amount":1,"surplus_amount":1,"priority":1},{"item":"minecraft:netherite_sword","want_amount":1,"surplus_amount":1,"priority":2},{"item":"minecraft:diamond_sword","want_amount":1,"surplus_amount":1,"priority":3},{"item":"minecraft:iron_sword","want_amount":1,"surplus_amount":1,"priority":4},{"item":"minecraft:stone_sword","want_amount":1,"surplus_amount":1,"priority":5},{"item":"minecraft:golden_sword","want_amount":1,"surplus_amount":1,"priority":6},{"item":"minecraft:wooden_sword","want_amount":1,"surplus_amount":1,"priority":7},{"item":"minecraft:netherite_helmet","want_amount":1,"surplus_amount":1,"priority":0},{"item":"minecraft:diamond_helmet","want_amount":1,"surplus_amount":1,"priority":1},{"item":"minecraft:iron_helmet","want_amount":1,"surplus_amount":1,"priority":2},{"item":"minecraft:chainmail_helmet","want_amount":1,"surplus_amount":1,"priority":3},{"item":"minecraft:golden_helmet","want_amount":1,"surplus_amount":1,"priority":4},{"item":"minecraft:leather_helmet","want_amount":1,"surplus_amount":1,"priority":5},{"item":"minecraft:turtle_helmet","want_amount":1,"surplus_amount":1,"priority":6},{"item":"minecraft:skull:0","want_amount":1,"surplus_amount":1,"priority":7},{"item":"minecraft:skull:1","want_amount":1,"surplus_amount":1,"priority":7},{"item":"minecraft:carved_pumpkin","want_amount":1,"surplus_amount":1,"priority":7},{"item":"minecraft:netherite_chestplate","want_amount":1,"surplus_amount":1,"priority":0},{"item":"minecraft:diamond_chestplate","want_amount":1,"surplus_amount":1,"priority":1},{"item":"minecraft:iron_chestplate","want_amount":1,"surplus_amount":1,"priority":2},{"item":"minecraft:chainmail_chestplate","want_amount":1,"surplus_amount":1,"priority":3},{"item":"minecraft:golden_chestplate","want_amount":1,"surplus_amount":1,"priority":4},{"item":"minecraft:leather_chestplate","want_amount":1,"surplus_amount":1,"priority":5},{"item":"minecraft:netherite_leggings","want_amount":1,"surplus_amount":1,"priority":0},{"item":"minecraft:diamond_leggings","want_amount":1,"surplus_amount":1,"priority":1},{"item":"minecraft:iron_leggings","want_amount":1,"surplus_amount":1,"priority":2},{"item":"minecraft:chainmail_leggings","want_amount":1,"surplus_amount":1,"priority":3},{"item":"minecraft:golden_leggings","want_amount":1,"surplus_amount":1,"priority":4},{"item":"minecraft:leather_leggings","want_amount":1,"surplus_amount":1,"priority":5},{"item":"minecraft:netherite_boots","want_amount":1,"surplus_amount":1,"priority":0},{"item":"minecraft:diamond_boots","want_amount":1,"surplus_amount":1,"priority":1},{"item":"minecraft:iron_boots","want_amount":1,"surplus_amount":1,"priority":2},{"item":"minecraft:chainmail_boots","want_amount":1,"surplus_amount":1,"priority":3},{"item":"minecraft:golden_boots","want_amount":1,"surplus_amount":1,"priority":4},{"item":"minecraft:leather_boots","want_amount":1,"surplus_amount":1,"priority":5}]},"minecraft:despawn":{"despawn_from_distance":{}},"minecraft:behavior.flee_sun":{"priority":2,"speed_multiplier":1},"minecraft:behavior.equip_item":{"priority":3},"minecraft:behavior.stomp_turtle_egg":{"priority":4,"speed_multiplier":1,"search_range":10,"search_height":2,"goal_radius":1.14,"interval":20},"minecraft:behavior.pickup_items":{"priority":6,"max_dist":3,"goal_radius":2,"speed_multiplier":1,"pickup_based_on_chance":true,"can_pickup_any_item":true,"excluded_items":["minecraft:glow_ink_sac"]},"minecraft:behavior.random_stroll":{"priority":7,"speed_multiplier":1},"minecraft:behavior.look_at_player":{"priority":8,"look_distance":6,"probability":0.02},"minecraft:behavior.random_look_around":{"priority":9},"minecraft:behavior.hurt_by_target":{"priority":1},"minecraft:behavior.nearest_attackable_target":{"priority":2,"reselect_targets":true,"must_see":true,"within_radius":12,"must_see_forget_duration":17,"persist_time":0.5,"entity_types":[{"filters":{"all_of":[{"any_of":[{"test":"is_family","subject":"other","value":"player"},{"test":"is_family","subject":"other","value":"snowgolem"},{"test":"is_family","subject":"other","value":"irongolem"},{"test":"is_family","subject":"other","value":"axolotl"}]},{"any_of":[{"test":"in_water","subject":"other","value":true},{"test":"is_daytime","value":false}]}]},"max_dist":20},{"filters":{"all_of":[{"any_of":[{"test":"is_family","subject":"other","value":"villager"},{"test":"is_family","subject":"other","value":"wandering_trader"}]},{"any_of":[{"test":"in_water","subject":"other","value":true},{"test":"is_daytime","value":false}]}]},"max_dist":20,"must_see":false},{"filters":{"all_of":[{"test":"is_family","subject":"other","value":"baby_turtle"},{"test":"in_water","subject":"other","operator":"!=","value":true}]},"max_dist":20}]},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:on_target_acquired":{"event":"minecraft:has_target","target":"self"},"minecraft:on_target_escape":{"event":"minecraft:lost_target","target":"self"},"minecraft:conditional_bandwidth_optimization":{}},"events":{"minecraft:entity_spawned":{"sequence":[{"randomize":[{"weight":15,"remove":{},"add":{"component_groups":["minecraft:mode_switcher","minecraft:ranged_equipment","minecraft:ranged_mode","minecraft:adult_drowned"]}},{"weight":85,"randomize":[{"weight":95,"remove":{},"add":{"component_groups":["minecraft:melee_equipment","minecraft:melee_mode","minecraft:adult_drowned"]}},{"weight":5,"remove":{},"add":{"component_groups":["minecraft:melee_equipment","minecraft:melee_mode","minecraft:baby_drowned"]}}]}]},{"randomize":[{"weight":10,"add":{"component_groups":["minecraft:can_break_doors"]}},{"weight":90}]}]},"minecraft:as_baby":{"add":{"component_groups":["minecraft:melee_equipment","minecraft:melee_mode","minecraft:baby_drowned"]}},"minecraft:as_adult":{"add":{"component_groups":["minecraft:melee_equipment","minecraft:melee_mode","minecraft:adult_drowned"]}},"minecraft:switch_to_melee":{"remove":{"component_groups":["minecraft:ranged_mode"]},"add":{"component_groups":["minecraft:melee_mode"]}},"minecraft:switch_to_ranged":{"remove":{"component_groups":["minecraft:melee_mode"]},"add":{"component_groups":["minecraft:ranged_mode"]}},"minecraft:has_target":{"remove":{"component_groups":["minecraft:wander_mode"]},"add":{"component_groups":["minecraft:hunter_mode"]}},"minecraft:lost_target":{"remove":{"component_groups":["minecraft:hunter_mode"]},"add":{"component_groups":["minecraft:wander_mode"]}}}}},"minecraft:egg":{"format_version":"1.12.0","minecraft:entity":{"description":{"identifier":"minecraft:egg","is_spawnable":false,"is_summonable":true,"is_experimental":false},"components":{"minecraft:collision_box":{"width":0.25,"height":0.25},"minecraft:projectile":{"on_hit":{"impact_damage":{"damage":0,"knockback":true,"destroy_on_hit":true},"spawn_chance":{"first_spawn_chance":8,"second_spawn_chance":32,"first_spawn_count":1,"second_spawn_count":4,"spawn_definition":"minecraft:chicken","spawn_baby":true},"remove_on_hit":{},"particle_on_hit":{"particle_type":"iconcrack","num_particles":6,"on_entity_hit":true,"on_other_hit":true}},"power":1.5,"gravity":0.03,"angle_offset":0},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:conditional_bandwidth_optimization":{"default_values":{"max_optimized_distance":80,"max_dropped_ticks":7,"use_motion_prediction_hints":true}}}}},"minecraft:elder_guardian":{"format_version":"1.16.0","minecraft:entity":{"description":{"identifier":"minecraft:elder_guardian","is_spawnable":true,"is_summonable":true,"is_experimental":false},"components":{"minecraft:is_hidden_when_invisible":{},"minecraft:experience_reward":{"on_death":"query.last_hit_by_player ? 10 : 0"},"minecraft:collision_box":{"width":1.99,"height":1.99},"minecraft:nameable":{},"minecraft:loot":{"table":"loot_tables/entities/elder_guardian.json"},"minecraft:navigation.generic":{"is_amphibious":true,"can_path_over_water":false,"can_swim":true,"can_walk":false,"can_breach":true},"minecraft:movement.sway":{},"minecraft:jump.static":{},"minecraft:health":{"value":80,"max":80},"minecraft:hurt_on_condition":{"damage_conditions":[{"filters":{"test":"in_lava","subject":"self","operator":"==","value":true},"cause":"lava","damage_per_tick":4}]},"minecraft:movement":{"value":0.3},"minecraft:underwater_movement":{"value":0.3},"minecraft:attack":{"damage":5},"minecraft:follow_range":{"value":16,"max":16},"minecraft:breathable":{"breathes_water":true},"minecraft:home":{"restriction_radius":16},"minecraft:behavior.nearest_attackable_target":{"priority":1,"entity_types":[{"filters":{"any_of":[{"test":"is_family","subject":"other","value":"player"},{"test":"is_family","subject":"other","value":"squid"},{"test":"is_family","subject":"other","value":"axolotl"}]},"max_dist":16}],"attack_interval_min":1,"must_see":true},"minecraft:behavior.guardian_attack":{"priority":4},"minecraft:behavior.move_towards_home_restriction":{"priority":5,"speed_multiplier":1},"minecraft:behavior.random_swim":{"priority":7,"speed_multiplier":0.5,"avoid_surface":false},"minecraft:behavior.look_at_player":{"priority":8,"look_distance":12,"probability":0.01},"minecraft:behavior.random_look_around":{"priority":9},"minecraft:type_family":{"family":["guardian_elder","monster","mob"]},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:conditional_bandwidth_optimization":{}}}},"minecraft:enderman":{"format_version":"1.16.0","minecraft:entity":{"description":{"identifier":"minecraft:enderman","is_spawnable":true,"is_summonable":true,"is_experimental":false},"component_groups":{"minecraft:enderman_calm":{"minecraft:on_target_acquired":{"event":"minecraft:become_angry","target":"self"},"minecraft:movement":{"value":0.3}},"minecraft:enderman_angry":{"minecraft:angry":{"duration":25,"calm_event":{"event":"minecraft:on_calm","target":"self"}},"minecraft:movement":{"value":0.45},"minecraft:behavior.melee_attack":{"priority":2}}},"components":{"minecraft:is_hidden_when_invisible":{},"minecraft:experience_reward":{"on_death":"query.last_hit_by_player ? 5 : 0"},"minecraft:type_family":{"family":["enderman","monster","mob"]},"minecraft:breathable":{"total_supply":15,"suffocate_time":0},"minecraft:nameable":{},"minecraft:loot":{"table":"loot_tables/entities/enderman.json"},"minecraft:health":{"value":40,"max":40},"minecraft:hurt_on_condition":{"damage_conditions":[{"filters":{"test":"in_lava","subject":"self","operator":"==","value":true},"cause":"lava","damage_per_tick":4},{"filters":{"test":"in_contact_with_water","operator":"==","value":true},"cause":"drowning","damage_per_tick":1}]},"minecraft:attack":{"damage":7},"minecraft:follow_range":{"value":32,"max":32},"minecraft:collision_box":{"width":0.6,"height":2.9},"minecraft:teleport":{"random_teleports":true,"max_random_teleport_time":30,"random_teleport_cube":[32,32,32],"target_distance":16,"target_teleport_chance":0.05,"light_teleport_chance":0.05},"minecraft:lookat":{"search_radius":64,"set_target":true,"look_cooldown":5,"filters":{"all_of":[{"subject":"other","test":"is_family","value":"player"},{"test":"has_equipment","domain":"head","subject":"other","operator":"not","value":"carved_pumpkin"}]}},"minecraft:despawn":{"despawn_from_distance":{}},"minecraft:behavior.nearest_attackable_target":{"priority":5,"must_see":true,"attack_interval":10,"entity_types":[{"filters":{"test":"is_family","subject":"other","value":"endermite"},"max_dist":64}]},"minecraft:navigation.walk":{"can_path_over_water":false,"avoid_water":true},"minecraft:movement.basic":{},"minecraft:jump.static":{},"minecraft:can_climb":{},"minecraft:behavior.float":{"priority":0},"minecraft:behavior.random_stroll":{"priority":7,"speed_multiplier":1},"minecraft:behavior.look_at_player":{"priority":8,"look_distance":8,"probability":8},"minecraft:behavior.random_look_around":{"priority":8},"minecraft:behavior.hurt_by_target":{"priority":3},"minecraft:behavior.enderman_leave_block":{"priority":10},"minecraft:behavior.enderman_take_block":{"priority":11},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:conditional_bandwidth_optimization":{"default_values":{"max_optimized_distance":80,"max_dropped_ticks":10,"use_motion_prediction_hints":true}}},"events":{"minecraft:entity_spawned":{"remove":{},"add":{"component_groups":["minecraft:enderman_calm"]}},"minecraft:become_angry":{"remove":{"component_groups":["minecraft:enderman_calm"]},"add":{"component_groups":["minecraft:enderman_angry"]}},"minecraft:on_calm":{"remove":{"component_groups":["minecraft:enderman_angry"]},"add":{"component_groups":["minecraft:enderman_calm"]}}}}},"minecraft:endermite":{"format_version":"1.17.10","minecraft:entity":{"description":{"identifier":"minecraft:endermite","is_spawnable":true,"is_summonable":true,"is_experimental":false},"components":{"minecraft:is_hidden_when_invisible":{},"minecraft:experience_reward":{"on_death":"query.last_hit_by_player ? 3 : 0"},"minecraft:breathable":{"total_supply":15,"suffocate_time":0},"minecraft:nameable":{},"minecraft:type_family":{"family":["endermite","arthropod","monster","lightweight","mob"]},"minecraft:collision_box":{"width":0.4,"height":0.3},"minecraft:movement":{"value":0.25},"minecraft:navigation.walk":{"can_path_over_water":true},"minecraft:movement.basic":{},"minecraft:jump.static":{},"minecraft:can_climb":{},"minecraft:health":{"value":8,"max":8},"minecraft:hurt_on_condition":{"damage_conditions":[{"filters":{"test":"in_lava","subject":"self","operator":"==","value":true},"cause":"lava","damage_per_tick":4}]},"minecraft:attack":{"damage":2},"minecraft:despawn":{"despawn_from_distance":{}},"minecraft:behavior.float":{"priority":0},"minecraft:behavior.melee_attack":{"priority":3,"track_target":true},"minecraft:behavior.nearest_attackable_target":{"priority":5,"must_see":true,"within_radius":16,"entity_types":[{"filters":{"any_of":[{"test":"is_family","subject":"other","value":"player"},{"test":"is_family","subject":"other","value":"enderman"}]},"max_dist":16}]},"minecraft:behavior.random_stroll":{"priority":6,"speed_multiplier":1},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:conditional_bandwidth_optimization":{},"minecraft:block_climber":{}}}},"minecraft:ender_crystal":{"format_version":"1.12.0","minecraft:entity":{"description":{"identifier":"minecraft:ender_crystal","is_spawnable":false,"is_summonable":true,"is_experimental":false},"component_groups":{"crystal_exploding":{"minecraft:explode":{"fuse_length":0,"fuse_lit":true,"power":6,"causes_fire":false,"destroy_affected_by_griefing":true}}},"components":{"minecraft:collision_box":{"width":0.98,"height":0.98},"minecraft:health":{"value":1,"max":1},"minecraft:fire_immune":true,"minecraft:on_hurt":{"event":"minecraft:crystal_explode","target":"self"},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:conditional_bandwidth_optimization":{}},"events":{"minecraft:crystal_explode":{"remove":{},"add":{"component_groups":["crystal_exploding"]}}}}},"minecraft:ender_dragon":{"format_version":"1.13.0","minecraft:entity":{"description":{"identifier":"minecraft:ender_dragon","is_spawnable":false,"is_summonable":true,"is_experimental":false},"component_groups":{"dragon_sitting":{"minecraft:behavior.dragonlanding":{"priority":0},"minecraft:behavior.dragonflaming":{"priority":1},"minecraft:behavior.dragonscanning":{"priority":2}},"dragon_flying":{"minecraft:behavior.dragontakeoff":{"priority":0},"minecraft:behavior.dragonchargeplayer":{"priority":1},"minecraft:behavior.dragonstrafeplayer":{"priority":2},"minecraft:behavior.dragonholdingpattern":{"priority":3},"minecraft:shooter":{"type":"dragonfireball","def":"minecraft:dragon_fireball"}},"dragon_death":{"minecraft:behavior.dragondeath":{"priority":0}}},"components":{"minecraft:is_hidden_when_invisible":{},"minecraft:type_family":{"family":["dragon","mob"]},"minecraft:health":{"value":200,"max":200},"minecraft:boss":{"should_darken_sky":false,"hud_range":125},"minecraft:collision_box":{"width":13,"height":4},"minecraft:movement":{"value":0.3},"minecraft:fire_immune":true,"minecraft:knockback_resistance":{"value":100,"max":100},"minecraft:flying_speed":{"value":0.6},"minecraft:attack":{"damage":3},"minecraft:damage_sensor":{"triggers":{"cause":"fall","deals_damage":false}},"minecraft:on_start_landing":{"event":"minecraft:start_land","target":"self"},"minecraft:on_start_takeoff":{"event":"minecraft:start_fly","target":"self"},"minecraft:on_death":{"event":"minecraft:start_death","target":"self"},"minecraft:persistent":{},"minecraft:physics":{"has_gravity":false,"has_collision":false},"minecraft:game_event_movement_tracking":{"emit_flap":true}},"events":{"minecraft:entity_spawned":{"remove":{},"add":{"component_groups":["dragon_flying"]}},"minecraft:start_land":{"remove":{"component_groups":["dragon_flying"]},"add":{"component_groups":["dragon_sitting"]}},"minecraft:start_fly":{"remove":{"component_groups":["dragon_sitting"]},"add":{"component_groups":["dragon_flying"]}},"minecraft:start_death":{"remove":{"component_groups":["dragon_sitting","dragon_flying"]},"add":{"component_groups":["dragon_death"]}}}}},"minecraft:ender_pearl":{"format_version":"1.12.0","minecraft:entity":{"description":{"identifier":"minecraft:ender_pearl","is_spawnable":false,"is_summonable":false,"is_experimental":false},"component_groups":{"minecraft:no_spawn":{"minecraft:projectile":{"on_hit":{"teleport_owner":{},"remove_on_hit":{}},"power":1.5,"gravity":0.025,"angle_offset":0,"inertia":1,"liquid_inertia":1}}},"components":{"minecraft:collision_box":{"width":0.25,"height":0.25},"minecraft:projectile":{"on_hit":{"teleport_owner":{},"spawn_chance":{"first_spawn_percent_chance":5,"first_spawn_count":1,"spawn_definition":"minecraft:endermite"},"remove_on_hit":{}},"power":1.5,"gravity":0.025,"angle_offset":0,"inertia":1,"liquid_inertia":1},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:conditional_bandwidth_optimization":{"default_values":{"max_optimized_distance":80,"max_dropped_ticks":7,"use_motion_prediction_hints":true}}},"events":{"minecraft:entity_spawned":{"sequence":[{"filters":{"test":"is_game_rule","domain":"domobspawning","value":false},"add":{"component_groups":["minecraft:no_spawn"]}}]}}}},"minecraft:evocation_illager":{"format_version":"1.16.0","minecraft:entity":{"description":{"identifier":"minecraft:evocation_illager","is_spawnable":true,"is_summonable":true,"is_experimental":false},"component_groups":{"minecraft:celebrate":{"minecraft:behavior.celebrate":{"priority":5,"celebration_sound":"celebrate","sound_interval":{"range_min":2,"range_max":7},"jump_interval":{"range_min":1,"range_max":3.5},"duration":30,"on_celebration_end_event":{"event":"minecraft:stop_celebrating","target":"self"}}},"minecraft:raid_configuration":{"minecraft:dweller":{"dwelling_type":"village","dweller_role":"hostile","update_interval_base":60,"update_interval_variant":40,"can_find_poi":false,"can_migrate":true,"first_founding_reward":0},"minecraft:behavior.move_to_village":{"priority":6,"speed_multiplier":0.7},"minecraft:ambient_sound_interval":{"value":2,"range":4,"event_name":"ambient.in.raid"}},"minecraft:raid_persistence":{"minecraft:persistent":{}},"minecraft:raid_despawn":{"minecraft:despawn":{"despawn_from_distance":{}}}},"components":{"minecraft:is_hidden_when_invisible":{},"minecraft:experience_reward":{"on_death":"10"},"minecraft:type_family":{"family":["evocation_illager","monster","illager","mob"]},"minecraft:breathable":{"total_supply":15,"suffocate_time":0},"minecraft:nameable":{},"minecraft:loot":{"table":"loot_tables/entities/evocation_illager.json"},"minecraft:health":{"value":24,"max":24},"minecraft:hurt_on_condition":{"damage_conditions":[{"filters":{"test":"in_lava","subject":"self","operator":"==","value":true},"cause":"lava","damage_per_tick":4}]},"minecraft:collision_box":{"width":0.6,"height":1.9},"minecraft:movement":{"value":0.5},"minecraft:navigation.walk":{"can_path_over_water":true,"can_pass_doors":true,"can_open_doors":true,"avoid_water":true},"minecraft:movement.basic":{},"minecraft:jump.static":{},"minecraft:can_climb":{},"minecraft:behavior.float":{"priority":0},"minecraft:behavior.summon_entity":{"priority":2,"summon_choices":[{"min_activation_range":0,"max_activation_range":3,"cooldown_time":5,"weight":3,"cast_duration":2,"particle_color":"#FF664D59","start_sound_event":"cast.spell","sequence":[{"shape":"circle","target":"self","base_delay":1,"delay_per_summon":0,"num_entities_spawned":5,"entity_type":"minecraft:evocation_fang","size":1.5,"entity_lifespan":1.1,"sound_event":"prepare.attack"},{"shape":"circle","target":"self","base_delay":0.15,"delay_per_summon":0,"num_entities_spawned":8,"entity_type":"minecraft:evocation_fang","size":2.5,"entity_lifespan":1.1}]},{"min_activation_range":3,"weight":3,"cooldown_time":5,"cast_duration":2,"particle_color":"#FF664D59","start_sound_event":"cast.spell","sequence":[{"shape":"line","target":"self","base_delay":1,"delay_per_summon":0.05,"num_entities_spawned":16,"entity_type":"minecraft:evocation_fang","size":20,"entity_lifespan":1.1}]},{"weight":1,"cooldown_time":17,"cast_duration":5,"particle_color":"#FFB3B3CC","sequence":[{"shape":"circle","target":"self","base_delay":5,"num_entities_spawned":3,"entity_type":"minecraft:vex","summon_cap":8,"summon_cap_radius":16,"size":1,"sound_event":"prepare.summon"}]}]},"minecraft:behavior.send_event":{"priority":3,"event_choices":[{"min_activation_range":0,"max_activation_range":16,"cooldown_time":5,"cast_duration":3,"particle_color":"#FFB38033","weight":3,"filters":{"all_of":[{"test":"is_family","subject":"other","value":"sheep"},{"test":"is_color","subject":"other","value":"blue"}]},"start_sound_event":"cast.spell","sequence":[{"base_delay":2,"event":"wololo","sound_event":"prepare.wololo"}]}]},"minecraft:behavior.avoid_mob_type":{"priority":5,"entity_types":[{"filters":{"test":"is_family","subject":"other","value":"player"},"max_dist":8,"walk_speed_multiplier":0.6,"sprint_speed_multiplier":1}]},"minecraft:behavior.random_stroll":{"priority":8,"speed_multiplier":0.6},"minecraft:behavior.nearest_attackable_target":{"priority":2,"entity_types":[{"filters":{"any_of":[{"test":"is_family","subject":"other","value":"player"},{"test":"is_family","subject":"other","value":"snowgolem"},{"test":"is_family","subject":"other","value":"irongolem"},{"test":"is_family","subject":"other","value":"wandering_trader"}]},"max_dist":20},{"filters":{"all_of":[{"test":"is_family","subject":"other","value":"villager"},{"test":"has_component","subject":"other","operator":"!=","value":"minecraft:is_baby"}]},"max_dist":20}],"must_see":true},"minecraft:behavior.look_at_player":{"priority":9,"look_distance":3,"probability":1},"minecraft:behavior.look_at_entity":{"priority":10,"look_distance":8,"filters":{"test":"is_family","subject":"other","value":"mob"}},"minecraft:behavior.hurt_by_target":{"priority":1},"minecraft:persistent":{},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:follow_range":{"value":64},"minecraft:conditional_bandwidth_optimization":{}},"events":{"minecraft:spawn_for_raid":{"add":{"component_groups":["minecraft:raid_configuration","minecraft:raid_despawn","minecraft:raid_persistence"]}},"minecraft:start_celebrating":{"sequence":[{"add":{"component_groups":["minecraft:celebrate"]}},{"filters":{"test":"has_nametag","value":false},"remove":{"component_groups":["minecraft:raid_persistence"]}}]},"minecraft:stop_celebrating":{"remove":{"component_groups":["minecraft:celebrate"]}},"minecraft:raid_expired":{"sequence":[{"filters":{"test":"has_nametag","value":false},"remove":{"component_groups":["minecraft:raid_persistence"]}}]}}}},"minecraft:eye_of_ender_signal":{"format_version":"1.12.0","minecraft:entity":{"description":{"identifier":"minecraft:eye_of_ender_signal","is_spawnable":false,"is_summonable":false,"is_experimental":false},"components":{"minecraft:collision_box":{"width":0.25,"height":0.25},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:conditional_bandwidth_optimization":{"default_values":{"max_optimized_distance":80,"max_dropped_ticks":10,"use_motion_prediction_hints":true}}}}},"minecraft:fireball":{"format_version":"1.12.0","minecraft:entity":{"description":{"identifier":"minecraft:fireball","is_spawnable":false,"is_summonable":false,"is_experimental":false},"component_groups":{"minecraft:exploding":{"minecraft:explode":{"fuse_length":0,"fuse_lit":true,"power":1,"causes_fire":true,"fire_affected_by_griefing":true,"destroy_affected_by_griefing":true}}},"components":{"minecraft:collision_box":{"width":1,"height":1},"minecraft:projectile":{"on_hit":{"impact_damage":{"damage":6,"knockback":false,"semi_random_diff_damage":false},"definition_event":{"affect_projectile":true,"event_trigger":{"event":"minecraft:explode","target":"self"}}},"power":1.6,"gravity":0,"inertia":1,"liquid_inertia":1,"uncertainty_base":0,"uncertainty_multiplier":0,"anchor":1,"offset":[0,-0.1,0],"reflect_on_hurt":true,"catch_fire":true},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:conditional_bandwidth_optimization":{"default_values":{"max_optimized_distance":80,"max_dropped_ticks":7,"use_motion_prediction_hints":true}}},"events":{"minecraft:explode":{"add":{"component_groups":["minecraft:exploding"]}}}}},"minecraft:fireworks_rocket":{"format_version":"1.12.0","minecraft:entity":{"description":{"identifier":"minecraft:fireworks_rocket","is_spawnable":false,"is_summonable":true,"is_experimental":false},"components":{"minecraft:collision_box":{"width":0.25,"height":0.25},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:conditional_bandwidth_optimization":{"default_values":{"max_optimized_distance":80,"max_dropped_ticks":10,"use_motion_prediction_hints":true}}}}},"minecraft:fish":{"format_version":"1.16.0","minecraft:entity":{"description":{"identifier":"minecraft:cod","is_spawnable":true,"is_summonable":true,"is_experimental":false},"components":{"minecraft:is_hidden_when_invisible":{},"minecraft:experience_reward":{"on_death":"query.last_hit_by_player ? Math.Random(1,3) : 0"},"minecraft:type_family":{"family":["cod","fish"]},"minecraft:collision_box":{"width":0.6,"height":0.3},"minecraft:health":{"value":3,"max":3},"minecraft:hurt_on_condition":{"damage_conditions":[{"filters":{"test":"in_lava","subject":"self","operator":"==","value":true},"cause":"lava","damage_per_tick":4}]},"minecraft:loot":{"table":"loot_tables/entities/fish.json"},"minecraft:scale":{"value":1},"minecraft:breathable":{"total_supply":15,"suffocate_time":0,"breathes_air":false,"breathes_water":true},"minecraft:movement":{"value":0.1},"minecraft:underwater_movement":{"value":0.1},"minecraft:navigation.generic":{"is_amphibious":false,"can_path_over_water":false,"can_swim":true,"can_walk":false,"can_breach":false,"can_sink":false},"minecraft:physics":{"has_gravity":false},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:movement.sway":{"sway_amplitude":0},"minecraft:despawn":{"despawn_from_distance":{"min_distance":32,"max_distance":40}},"minecraft:behavior.swim_idle":{"priority":5,"idle_time":5,"success_rate":0.1},"minecraft:behavior.random_swim":{"priority":3,"speed_multiplier":1,"xz_dist":16,"y_dist":4,"interval":0},"minecraft:behavior.swim_wander":{"priority":4,"interval":0.1,"look_ahead":2,"speed_multiplier":1,"wander_time":5},"minecraft:behavior.avoid_mob_type":{"priority":1,"entity_types":[{"filters":{"any_of":[{"test":"is_family","subject":"other","value":"player"},{"test":"is_family","subject":"other","value":"axolotl"}]},"max_dist":6,"walk_speed_multiplier":1.5,"sprint_speed_multiplier":2}]},"minecraft:flocking":{"in_water":true,"match_variants":false,"use_center_of_mass":true,"low_flock_limit":4,"high_flock_limit":8,"goal_weight":2,"loner_chance":0.1,"influence_radius":3,"breach_influence":7,"separation_weight":1.75,"separation_threshold":0.95,"cohesion_weight":2,"cohesion_threshold":1.95,"innner_cohesion_threshold":1.25,"min_height":1.5,"max_height":6,"block_distance":2,"block_weight":0.85},"minecraft:nameable":{},"minecraft:conditional_bandwidth_optimization":{}}}},"minecraft:fishing_hook":{"format_version":"1.12.0","minecraft:entity":{"description":{"identifier":"minecraft:fishing_hook","is_spawnable":false,"is_summonable":false,"is_experimental":false},"component_groups":{"loot_jungle":{"minecraft:loot":{"table":"loot_tables/gameplay/jungle_fishing.json"}}},"components":{"minecraft:collision_box":{"width":0.15,"height":0.15},"minecraft:projectile":{"on_hit":{"stick_in_ground":{}}},"minecraft:loot":{"table":"loot_tables/gameplay/fishing.json"},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":false,"is_pushable_by_piston":true},"minecraft:conditional_bandwidth_optimization":{"default_values":{"max_optimized_distance":80,"max_dropped_ticks":7,"use_motion_prediction_hints":true}}},"events":{"minecraft:entity_spawned":{"sequence":[{"filters":{"test":"is_biome","value":"jungle"},"add":{"component_groups":["loot_jungle"]}}]}}}},"minecraft:fox":{"format_version":"1.17.10","minecraft:entity":{"description":{"identifier":"minecraft:fox","is_spawnable":true,"is_summonable":true,"is_experimental":false},"component_groups":{"minecraft:fox_baby":{"minecraft:is_baby":{},"minecraft:scale":{"value":0.5},"minecraft:ageable":{"duration":1200,"feed_items":["sweet_berries","glow_berries"],"grow_up":{"event":"minecraft:ageable_grow_up","target":"self"}},"minecraft:behavior.follow_parent":{"priority":9,"speed_multiplier":1.1}},"minecraft:fox_adult":{"minecraft:experience_reward":{"on_bred":"Math.Random(1,7)","on_death":"query.last_hit_by_player ? Math.Random(1,3) : 0"},"minecraft:loot":{"table":"loot_tables/entities/fox.json"},"minecraft:behavior.breed":{"priority":3,"speed_multiplier":1},"minecraft:breedable":{"require_tame":false,"breed_items":["sweet_berries","glow_berries"],"breeds_with":{"mate_type":"minecraft:fox","baby_type":"minecraft:fox","breed_event":{"event":"minecraft:entity_born","target":"baby"}}}},"minecraft:fox_with_item":{"minecraft:equipment":{"table":"loot_tables/entities/fox_equipment.json","slot_drop_chance":[{"slot":"slot.weapon.mainhand","drop_chance":1}]}},"minecraft:trusting_fox":{"minecraft:trust":{},"minecraft:behavior.defend_trusted_target":{"priority":0,"within_radius":25,"must_see":false,"aggro_sound":"mad","sound_chance":0.05,"on_defend_start":{"event":"minecraft:fox_configure_defending","target":"self"}}},"minecraft:docile_fox":{"minecraft:behavior.panic":{"priority":1,"speed_multiplier":1.25},"minecraft:behavior.melee_attack":{"priority":10,"track_target":true,"require_complete_path":true,"reach_multiplier":1.5}},"minecraft:defending_fox":{"minecraft:behavior.melee_attack":{"priority":1,"track_target":true,"require_complete_path":true,"reach_multiplier":1.5},"minecraft:behavior.panic":{"priority":2,"speed_multiplier":1.25},"minecraft:environment_sensor":{"triggers":[{"filters":{"all_of":[{"test":"is_daytime","value":true},{"test":"has_target","operator":"==","value":false}]},"event":"minecraft:fox_configure_docile_day"},{"filters":{"all_of":[{"test":"is_daytime","value":false},{"test":"has_target","operator":"==","value":false}]},"event":"minecraft:fox_configure_docile_night"}]}},"minecraft:fox_red":{"minecraft:variant":{"value":0},"minecraft:behavior.nearest_prioritized_attackable_target":{"priority":6,"attack_interval":2,"reselect_targets":true,"target_search_height":5,"entity_types":[{"filters":{"test":"is_family","subject":"other","value":"rabbit"},"max_dist":12,"priority":0},{"filters":{"test":"is_family","subject":"other","value":"chicken"},"max_dist":12,"priority":0},{"filters":{"test":"is_family","subject":"other","value":"cod"},"max_dist":12,"priority":1},{"filters":{"test":"is_family","subject":"other","value":"salmon"},"max_dist":12,"priority":1},{"filters":{"test":"is_family","subject":"other","value":"tropicalfish"},"max_dist":12,"priority":1},{"filters":{"all_of":[{"test":"is_family","subject":"other","value":"baby_turtle"},{"test":"in_water","subject":"other","operator":"!=","value":true}]},"max_dist":12,"priority":0}]}},"minecraft:fox_arctic":{"minecraft:variant":{"value":1},"minecraft:behavior.nearest_prioritized_attackable_target":{"priority":6,"attack_interval":2,"reselect_targets":true,"target_search_height":5,"entity_types":[{"filters":{"test":"is_family","subject":"other","value":"rabbit"},"max_dist":12,"priority":1},{"filters":{"test":"is_family","subject":"other","value":"chicken"},"max_dist":12,"priority":1},{"filters":{"test":"is_family","subject":"other","value":"cod"},"max_dist":12,"priority":0},{"filters":{"test":"is_family","subject":"other","value":"salmon"},"max_dist":12,"priority":0},{"filters":{"test":"is_family","subject":"other","value":"tropicalfish"},"max_dist":12,"priority":0},{"filters":{"all_of":[{"test":"is_family","subject":"other","value":"baby_turtle"},{"test":"in_water","subject":"other","operator":"!=","value":true}]},"max_dist":12,"priority":1}]}},"minecraft:fox_thunderstorm":{"minecraft:environment_sensor":{"triggers":[{"filters":{"all_of":[{"test":"weather_at_position","operator":"!=","value":"thunderstorm"},{"test":"is_daytime","value":true}]},"event":"minecraft:fox_configure_day"},{"filters":{"all_of":[{"test":"weather_at_position","operator":"!=","value":"thunderstorm"},{"test":"is_daytime","value":false}]},"event":"minecraft:fox_configure_night"}]},"minecraft:behavior.find_cover":{"priority":0,"speed_multiplier":1,"cooldown_time":0}},"minecraft:fox_day":{"minecraft:environment_sensor":{"triggers":[{"filters":{"test":"weather_at_position","value":"thunderstorm"},"event":"minecraft:fox_configure_thunderstorm"},{"filters":{"test":"is_daytime","value":false},"event":"minecraft:fox_configure_night"}]},"minecraft:behavior.nap":{"priority":8,"cooldown_min":2,"cooldown_max":7,"mob_detect_dist":12,"mob_detect_height":6,"can_nap_filters":{"all_of":[{"test":"in_water","subject":"self","operator":"==","value":false},{"test":"on_ground","subject":"self","operator":"==","value":true},{"test":"is_underground","subject":"self","operator":"==","value":true},{"test":"weather_at_position","subject":"self","operator":"!=","value":"thunderstorm"}]},"wake_mob_exceptions":{"any_of":[{"test":"trusts","subject":"other","operator":"==","value":true},{"test":"is_family","subject":"other","operator":"==","value":"fox"},{"test":"is_sneaking","subject":"other","operator":"==","value":true}]}},"minecraft:behavior.find_cover":{"priority":9,"speed_multiplier":1,"cooldown_time":5}},"minecraft:fox_night":{"minecraft:environment_sensor":{"triggers":[{"filters":{"test":"weather_at_position","value":"thunderstorm"},"event":"minecraft:fox_configure_thunderstorm"},{"filters":{"test":"is_daytime","value":true},"event":"minecraft:fox_configure_day"}]},"minecraft:behavior.stroll_towards_village":{"priority":11,"speed_multiplier":1,"goal_radius":3,"cooldown_time":10,"search_range":32,"start_chance":0.005}},"minecraft:fox_ambient_normal":{"minecraft:ambient_sound_interval":{"event_name":"ambient"}},"minecraft:fox_ambient_sleep":{"minecraft:ambient_sound_interval":{"event_name":"sleep"}},"minecraft:fox_ambient_night":{"minecraft:ambient_sound_interval":{"event_name":"screech","value":80,"range":160}}},"components":{"minecraft:is_hidden_when_invisible":{},"minecraft:type_family":{"family":["fox","lightweight","mob"]},"minecraft:breathable":{"totalSupply":15,"suffocateTime":0},"minecraft:equip_item":{},"minecraft:navigation.walk":{"can_path_over_water":true,"avoid_water":true,"avoid_damage_blocks":true},"minecraft:movement.basic":{},"minecraft:jump.static":{},"minecraft:can_climb":{},"minecraft:collision_box":{"width":0.6,"height":0.7},"minecraft:nameable":{},"minecraft:health":{"value":20,"max":20},"minecraft:movement":{"value":0.3},"minecraft:attack":{"damage":2},"minecraft:shareables":{"all_items":true,"all_items_max_amount":1,"items":[{"item":"minecraft:apple","priority":0,"max_amount":1},{"item":"minecraft:appleEnchanted","priority":0,"max_amount":1},{"item":"minecraft:baked_potato","priority":0,"max_amount":1},{"item":"minecraft:beef","priority":0,"max_amount":1},{"item":"minecraft:beetroot","priority":0,"max_amount":1},{"item":"minecraft:beetroot_soup","priority":0,"max_amount":1},{"item":"minecraft:bread","priority":0,"max_amount":1},{"item":"minecraft:carrot","priority":0,"max_amount":1},{"item":"minecraft:chicken","priority":0,"max_amount":1},{"item":"minecraft:chorus_fruit","priority":0,"max_amount":1},{"item":"minecraft:clownfish","priority":0,"max_amount":1},{"item":"minecraft:cooked_beef","priority":0,"max_amount":1},{"item":"minecraft:cooked_chicken","priority":0,"max_amount":1},{"item":"minecraft:cooked_fish","priority":0,"max_amount":1},{"item":"minecraft:cooked_porkchop","priority":0,"max_amount":1},{"item":"minecraft:cooked_rabbit","priority":0,"max_amount":1},{"item":"minecraft:cooked_salmon","priority":0,"max_amount":1},{"item":"minecraft:cookie","priority":0,"max_amount":1},{"item":"minecraft:dried_kelp","priority":0,"max_amount":1},{"item":"minecraft:fish","priority":0,"max_amount":1},{"item":"minecraft:golden_apple","priority":0,"max_amount":1},{"item":"minecraft:golden_carrot","priority":0,"max_amount":1},{"item":"minecraft:melon","priority":0,"max_amount":1},{"item":"minecraft:mushroom_stew","priority":0,"max_amount":1},{"item":"minecraft:muttonCooked","priority":0,"max_amount":1},{"item":"minecraft:muttonRaw","priority":0,"max_amount":1},{"item":"minecraft:poisonous_potato","priority":0,"max_amount":1},{"item":"minecraft:porkchop","priority":0,"max_amount":1},{"item":"minecraft:potato","priority":0,"max_amount":1},{"item":"minecraft:pufferfish","priority":0,"max_amount":1},{"item":"minecraft:pumpkin_pie","priority":0,"max_amount":1},{"item":"minecraft:rabbit","priority":0,"max_amount":1},{"item":"minecraft:rabbit_stew","priority":0,"max_amount":1},{"item":"minecraft:rotten_flesh","priority":0,"max_amount":1},{"item":"minecraft:salmon","priority":0,"max_amount":1},{"item":"minecraft:spider_eye","priority":0,"max_amount":1},{"item":"minecraft:sweet_berries","priority":0,"max_amount":1},{"item":"minecraft:glow_berries","priority":0,"max_amount":1},{"item":"minecraft:suspicious_stew","priority":0,"max_amount":1}]},"minecraft:damage_sensor":{"triggers":[{"on_damage":{"filters":{"test":"is_block","subject":"block","value":"minecraft:sweet_berry_bush"}},"deals_damage":false}]},"minecraft:despawn":{"despawn_from_distance":{}},"minecraft:behavior.float":{"priority":0},"minecraft:behavior.equip_item":{"priority":2},"minecraft:behavior.avoid_mob_type":{"priority":5,"entity_types":[{"filters":{"any_of":[{"all_of":[{"test":"is_family","subject":"other","value":"player"},{"test":"trusts","subject":"other","operator":"!=","value":true},{"test":"is_sneaking","subject":"other","operator":"!=","value":true}]},{"test":"is_family","subject":"other","value":"polarbear"},{"test":"is_family","subject":"other","value":"wolf"}]},"max_dist":10,"walk_speed_multiplier":1,"sprint_speed_multiplier":1.5}]},"minecraft:behavior.tempt":{"priority":3,"speed_multiplier":0.5,"within_radius":16,"can_get_scared":true,"items":["sweet_berries","glow_berries"]},"minecraft:behavior.stalk_and_pounce_on_target":{"priority":7,"stalk_speed":1.2,"max_stalk_dist":12,"leap_height":0.9,"leap_dist":0.8,"pounce_max_dist":5,"interest_time":2,"stuck_time":2,"strike_dist":2,"stuck_blocks":{"test":"is_block","subject":"block","operator":"==","value":"snow_layer"}},"minecraft:behavior.pickup_items":{"priority":11,"max_dist":3,"goal_radius":2,"speed_multiplier":0.5},"minecraft:behavior.eat_carried_item":{"priority":12,"delay_before_eating":28},"minecraft:behavior.random_look_around_and_sit":{"priority":12,"min_look_count":2,"max_look_count":5,"min_look_time":80,"max_look_time":100,"probability":0.001},"minecraft:behavior.raid_garden":{"priority":12,"blocks":["minecraft:sweet_berry_bush","minecraft:cave_vines_head_with_berries","minecraft:cave_vines_body_with_berries"],"speed_multiplier":1.2,"search_range":12,"search_height":2,"goal_radius":0.8,"max_to_eat":0,"initial_eat_delay":2},"minecraft:behavior.random_stroll":{"priority":13,"speed_multiplier":0.8},"minecraft:behavior.look_at_player":{"priority":14,"look_distance":6,"probability":0.02},"minecraft:behavior.random_look_around":{"priority":15},"minecraft:leashable":{"soft_distance":4,"hard_distance":6,"max_distance":10},"minecraft:balloonable":{"mass":0.6},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:conditional_bandwidth_optimization":{},"minecraft:scheduler":{"min_delay_secs":0,"max_delay_secs":0,"scheduled_events":[{"filters":[{"test":"is_sleeping","value":true}],"event":"minecraft:ambient_sleep"},{"filters":{"all_of":[{"test":"is_daytime","value":false},{"test":"distance_to_nearest_player","operator":">","value":16}]},"event":"minecraft:ambient_night"},{"filters":{"all_of":[{"test":"is_sleeping","value":false},{"any_of":[{"test":"is_daytime","value":true},{"test":"distance_to_nearest_player","operator":"<=","value":16}]}]},"event":"minecraft:ambient_normal"}]},"minecraft:environment_sensor":{"triggers":[{"filters":{"test":"is_daytime","value":false},"event":"minecraft:fox_configure_night"},{"filters":{"test":"is_daytime","value":true},"event":"minecraft:fox_configure_day"}]},"minecraft:block_climber":{}},"events":{"minecraft:entity_spawned":{"sequence":[{"randomize":[{"weight":95,"add":{"component_groups":["minecraft:fox_adult","minecraft:fox_with_item","minecraft:docile_fox"]}},{"weight":5,"add":{"component_groups":["minecraft:fox_baby","minecraft:docile_fox"]}}]},{"filters":{"test":"is_snow_covered","value":true},"add":{"component_groups":["minecraft:fox_arctic"]}},{"filters":{"test":"is_snow_covered","value":false},"add":{"component_groups":["minecraft:fox_red"]}}]},"minecraft:entity_born":{"add":{"component_groups":["minecraft:fox_baby","minecraft:trusting_fox","minecraft:docile_fox"]}},"minecraft:ageable_grow_up":{"remove":{"component_groups":["minecraft:fox_baby"]},"add":{"component_groups":["minecraft:fox_adult"]}},"minecraft:fox_configure_thunderstorm":{"remove":{"component_groups":["minecraft:fox_night","minecraft:fox_day"]},"add":{"component_groups":["minecraft:fox_thunderstorm"]}},"minecraft:fox_configure_day":{"remove":{"component_groups":["minecraft:fox_night","minecraft:fox_thunderstorm"]},"add":{"component_groups":["minecraft:fox_day"]}},"minecraft:fox_configure_night":{"remove":{"component_groups":["minecraft:fox_day","minecraft:fox_thunderstorm"]},"add":{"component_groups":["minecraft:fox_night"]}},"minecraft:ambient_normal":{"add":{"component_groups":["minecraft:fox_ambient_normal"]}},"minecraft:ambient_sleep":{"add":{"component_groups":["minecraft:fox_ambient_sleep"]}},"minecraft:ambient_night":{"add":{"component_groups":["minecraft:fox_ambient_night"]}},"minecraft:fox_configure_defending":{"remove":{"component_groups":["minecraft:docile_fox","minecraft:fox_day","minecraft:fox_night"]},"add":{"component_groups":["minecraft:defending_fox"]}},"minecraft:fox_configure_docile_day":{"remove":{"component_groups":["minecraft:defending_fox","minecraft:fox_night"]},"add":{"component_groups":["minecraft:docile_fox","minecraft:fox_day"]}},"minecraft:fox_configure_docile_night":{"remove":{"component_groups":["minecraft:defending_fox","minecraft:fox_day"]},"add":{"component_groups":["minecraft:docile_fox","minecraft:fox_night"]}}}}},"minecraft:frog":{"format_version":"1.16.0","minecraft:entity":{"description":{"identifier":"minecraft:frog","is_spawnable":true,"is_summonable":true,"is_experimental":false},"component_groups":{"temperate_frog":{"minecraft:variant":{"value":0}},"cold_frog":{"minecraft:variant":{"value":1}},"warm_frog":{"minecraft:variant":{"value":2}},"pregnant":{"minecraft:behavior.lay_egg":{"priority":2,"speed_multiplier":1,"search_range":10,"search_height":3,"goal_radius":1.7,"target_blocks":["minecraft:water"],"target_materials_above_block":["Air"],"allow_laying_from_below":true,"use_default_animation":false,"lay_seconds":2,"egg_type":"minecraft:frog_spawn","lay_egg_sound":"lay_spawn","on_lay":{"event":"laid_egg","target":"self"}},"minecraft:behavior.move_to_water":{"priority":3,"search_range":20,"search_height":5,"goal_radius":1.5}}},"components":{"minecraft:is_hidden_when_invisible":{},"minecraft:type_family":{"family":["frog","mob"]},"minecraft:collision_box":{"width":0.5,"height":0.55},"minecraft:experience_reward":{"on_bred":"Math.Random(1,7)","on_death":"query.last_hit_by_player ? Math.Random(1,3) : 0"},"minecraft:breathable":{"total_supply":15,"suffocate_time":0,"breathes_water":true,"breathes_air":true,"generates_bubbles":false},"minecraft:nameable":{},"minecraft:health":{"value":10},"minecraft:hurt_on_condition":{"damage_conditions":[{"filters":{"test":"in_lava","subject":"self","operator":"==","value":true},"cause":"lava","damage_per_tick":4}]},"minecraft:damage_sensor":{"triggers":{"cause":"fall","deals_damage":true,"damage_modifier":-5}},"minecraft:navigation.generic":{"is_amphibious":true,"can_path_over_water":true,"can_swim":true,"can_walk":true,"can_sink":false,"avoid_damage_blocks":true},"minecraft:movement.amphibious":{},"minecraft:movement":{"value":0.1},"minecraft:underwater_movement":{"value":0.15},"minecraft:jump.static":{},"minecraft:physics":{},"minecraft:pushable":{},"minecraft:leashable":{},"minecraft:despawn":{"despawn_from_distance":{}},"minecraft:breedable":{"require_tame":false,"causes_pregnancy":true,"breeds_with":{"mate_type":"minecraft:frog","baby_type":"minecraft:tadpole","breed_event":{"event":"become_pregnant"}},"breed_items":["slime_ball"]},"minecraft:behavior.panic":{"priority":1,"speed_multiplier":2},"minecraft:behavior.breed":{"priority":4},"minecraft:behavior.tempt":{"priority":5,"speed_multiplier":1.25,"can_tempt_vertically":true,"items":["slime_ball"]},"minecraft:behavior.move_to_land":{"priority":6,"search_range":30,"search_height":8,"search_count":80,"goal_radius":2},"minecraft:behavior.eat_mob":{"priority":7,"run_speed":2,"eat_animation_time":0.3,"pull_in_force":0.75,"reach_mob_distance":1.75,"eat_mob_sound":"tongue","loot_table":"loot_tables/entities/frog.json"},"minecraft:behavior.nearest_attackable_target":{"priority":8,"within_radius":16,"entity_types":[{"filters":{"all_of":[{"test":"is_family","subject":"other","value":"slime"},{"test":"is_variant","subject":"other","operator":"==","value":1}]},"max_dist":16},{"filters":{"all_of":[{"test":"is_family","subject":"other","value":"magmacube"},{"test":"is_variant","subject":"other","operator":"==","value":1}]},"max_dist":16}],"must_see":true},"minecraft:behavior.croak":{"priority":9,"interval":[10,20],"duration":4.5,"filters":{"all_of":[{"test":"in_water","value":false},{"test":"in_lava","value":false}]}},"minecraft:behavior.jump_to_block":{"priority":10,"search_width":8,"search_height":4,"minimum_path_length":2,"minimum_distance":1,"scale_factor":0.6,"max_velocity":1,"cooldown_range":[5,7],"preferred_blocks":["minecraft:waterlily","minecraft:big_dripleaf"],"preferred_blocks_chance":0.5,"forbidden_blocks":["minecraft:water"]},"minecraft:behavior.random_stroll":{"priority":11},"minecraft:behavior.look_at_player":{"priority":12,"target_distance":6,"probability":0.02}},"events":{"minecraft:entity_spawned":{"sequence":[{"add":{"component_groups":["temperate_frog"]}},{"filters":{"any_of":[{"test":"has_biome_tag","value":"desert"},{"test":"has_biome_tag","value":"jungle"},{"test":"has_biome_tag","value":"savanna"},{"test":"has_biome_tag","value":"mesa"},{"test":"has_biome_tag","value":"nether"},{"all_of":[{"test":"has_biome_tag","value":"warm"},{"test":"has_biome_tag","value":"ocean"}]},{"all_of":[{"test":"has_biome_tag","value":"lukewarm"},{"test":"has_biome_tag","value":"ocean"}]},{"test":"has_biome_tag","value":"mangrove_swamp"}]},"add":{"component_groups":["warm_frog"]}},{"filters":{"any_of":[{"test":"has_biome_tag","value":"mountain"},{"all_of":[{"test":"has_biome_tag","value":"mountains"},{"test":"has_biome_tag","operator":"!=","value":"meadow"},{"test":"has_biome_tag","operator":"!=","value":"stony_peaks"}]},{"test":"has_biome_tag","value":"ice"},{"test":"has_biome_tag","value":"cold"},{"test":"has_biome_tag","value":"frozen"},{"test":"has_biome_tag","value":"the_end"},{"test":"has_biome_tag","value":"deep_dark"}]},"add":{"component_groups":["cold_frog"]}}]},"spawn_temperate":{"add":{"component_groups":["temperate_frog"]}},"spawn_cold":{"add":{"component_groups":["cold_frog"]}},"spawn_warm":{"add":{"component_groups":["warm_frog"]}},"minecraft:entity_transformed":{"sequence":[{"add":{"component_groups":["temperate_frog"]}},{"filters":{"any_of":[{"test":"has_biome_tag","value":"desert"},{"test":"has_biome_tag","value":"jungle"},{"test":"has_biome_tag","value":"savanna"},{"test":"has_biome_tag","value":"mesa"},{"test":"has_biome_tag","value":"nether"},{"all_of":[{"test":"has_biome_tag","value":"warm"},{"test":"has_biome_tag","value":"ocean"}]},{"all_of":[{"test":"has_biome_tag","value":"lukewarm"},{"test":"has_biome_tag","value":"ocean"}]},{"test":"has_biome_tag","value":"mangrove_swamp"}]},"add":{"component_groups":["warm_frog"]}},{"filters":{"any_of":[{"test":"has_biome_tag","value":"mountain"},{"all_of":[{"test":"has_biome_tag","value":"mountains"},{"test":"has_biome_tag","operator":"!=","value":"meadow"},{"test":"has_biome_tag","operator":"!=","value":"stony_peaks"}]},{"test":"has_biome_tag","value":"ice"},{"test":"has_biome_tag","value":"cold"},{"test":"has_biome_tag","value":"frozen"},{"test":"has_biome_tag","value":"the_end"},{"test":"has_biome_tag","value":"deep_dark"}]},"add":{"component_groups":["cold_frog"]}}]},"become_pregnant":{"add":{"component_groups":["pregnant"]}},"laid_egg":{"remove":{"component_groups":["pregnant"]}}}}},"minecraft:ghast":{"format_version":"1.16.0","minecraft:entity":{"description":{"identifier":"minecraft:ghast","is_spawnable":true,"is_summonable":true,"is_experimental":false},"components":{"minecraft:is_hidden_when_invisible":{},"minecraft:experience_reward":{"on_death":"query.last_hit_by_player ? 5 + (query.equipment_count * Math.Random(1,3)) : 0"},"minecraft:breathable":{"total_supply":15,"suffocate_time":0},"minecraft:fire_immune":{},"minecraft:nameable":{},"minecraft:health":{"value":10,"max":10},"minecraft:collision_box":{"width":4.02,"height":4},"minecraft:movement":{"value":0.03},"minecraft:navigation.float":{"can_path_over_water":true},"minecraft:behavior.float_wander":{"priority":2,"must_reach":true},"minecraft:can_fly":{},"minecraft:loot":{"table":"loot_tables/entities/ghast.json"},"minecraft:shooter":{"def":"minecraft:fireball"},"minecraft:type_family":{"family":["ghast","monster","mob"]},"minecraft:damage_sensor":{"triggers":{"cause":"fall","deals_damage":false}},"minecraft:jump.static":{},"minecraft:despawn":{"despawn_from_distance":{}},"minecraft:behavior.float":{"priority":0},"minecraft:behavior.ranged_attack":{"priority":1,"attack_radius":64,"charge_shoot_trigger":2,"charge_charged_trigger":1},"minecraft:follow_range":{"value":64,"max":64},"minecraft:behavior.hurt_by_target":{"priority":1},"minecraft:behavior.nearest_attackable_target":{"priority":2,"entity_types":[{"filters":{"test":"is_family","subject":"other","value":"player"},"max_dist":28}],"must_see":true},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:conditional_bandwidth_optimization":{}}}},"minecraft:glow_squid":{"format_version":"1.18.10","minecraft:entity":{"description":{"identifier":"minecraft:glow_squid","is_spawnable":true,"is_summonable":true,"is_experimental":false},"component_groups":{"minecraft:squid_baby":{"minecraft:is_baby":{},"minecraft:scale":{"value":0.5}}},"components":{"minecraft:is_hidden_when_invisible":{},"minecraft:experience_reward":{"on_death":"!query.is_baby && query.last_hit_by_player ? Math.Random(1,3) : 0"},"minecraft:nameable":{},"minecraft:type_family":{"family":["squid","mob"]},"minecraft:collision_box":{"width":0.95,"height":0.95},"minecraft:health":{"value":10,"max":10},"minecraft:despawn":{"despawn_from_distance":{}},"minecraft:hurt_on_condition":{"damage_conditions":[{"filters":{"test":"in_lava","subject":"self","operator":"==","value":true},"cause":"lava","damage_per_tick":4}]},"minecraft:loot":{"table":"loot_tables/entities/glow_squid.json"},"minecraft:breathable":{"total_supply":15,"suffocate_time":0,"breathes_air":false,"breathes_water":true},"minecraft:movement":{"value":0.2},"minecraft:navigation.walk":{"can_path_over_water":true,"can_sink":false},"minecraft:movement.basic":{},"minecraft:jump.static":{},"minecraft:can_climb":{},"minecraft:leashable":{"soft_distance":4,"hard_distance":6,"max_distance":10},"minecraft:balloonable":{"mass":0.5},"minecraft:behavior.squid_move_away_from_ground":{"priority":1},"minecraft:behavior.squid_flee":{"priority":2},"minecraft:behavior.squid_idle":{"priority":2},"minecraft:behavior.squid_dive":{"priority":2},"minecraft:behavior.squid_out_of_water":{"priority":2},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true}},"events":{"minecraft:entity_spawned":{"randomize":[{"weight":95,"remove":{},"add":{}},{"weight":5,"remove":{},"add":{"component_groups":["minecraft:squid_baby"]}}]}}}},"minecraft:goat":{"format_version":"1.18.10","minecraft:entity":{"description":{"identifier":"minecraft:goat","is_spawnable":true,"is_summonable":true,"is_experimental":false},"component_groups":{"goat_baby":{"minecraft:is_baby":{},"minecraft:scale":{"value":0.5},"minecraft:behavior.follow_parent":{"priority":6,"speed_multiplier":1},"minecraft:ageable":{"duration":1200,"feed_items":"wheat","grow_up":{"event":"minecraft:ageable_grow_up","target":"self"}},"minecraft:attack":{"damage":1}},"goat_adult":{"minecraft:experience_reward":{"on_bred":"Math.Random(1,7)","on_death":"query.last_hit_by_player ? Math.Random(1,3) : 0"},"minecraft:loot":{"table":"loot_tables/entities/goat.json"},"minecraft:behavior.breed":{"priority":3,"speed_multiplier":0.6},"minecraft:breedable":{"require_tame":false,"breed_items":"wheat","breeds_with":{"mate_type":"minecraft:goat","baby_type":"minecraft:goat","breed_event":{"event":"minecraft:entity_born","target":"baby"}},"mutation_factor":{"variant":0}},"minecraft:attack":{"damage":2}},"goat_default":{"minecraft:variant":{"value":0}},"goat_screamer":{"minecraft:variant":{"value":1}},"interact_default":{"minecraft:interact":{"interactions":[{"on_interact":{"filters":{"all_of":[{"test":"has_component","subject":"self","operator":"!=","value":"minecraft:is_baby"},{"test":"is_family","subject":"other","value":"player"},{"test":"has_equipment","domain":"hand","subject":"other","value":"bucket:0"}]}},"use_item":true,"transform_to_item":"bucket:1","play_sounds":"milk_suspiciously","interact_text":"action.interact.milk"}]}},"interact_screamer":{"minecraft:interact":{"interactions":[{"on_interact":{"filters":{"all_of":[{"test":"has_component","subject":"self","operator":"!=","value":"minecraft:is_baby"},{"test":"is_family","subject":"other","value":"player"},{"test":"has_equipment","domain":"hand","subject":"other","value":"bucket:0"}]}},"use_item":true,"transform_to_item":"bucket:1","play_sounds":"milk.screamer","interact_text":"action.interact.milk"}]}},"ram_default":{"minecraft:behavior.ram_attack":{"priority":5,"run_speed":0.7,"ram_speed":1.8,"min_ram_distance":4,"ram_distance":7,"knockback_force":2.5,"knockback_height":0.04,"pre_ram_sound":"pre_ram","ram_impact_sound":"ram_impact","cooldown_range":[30,300],"on_start":[{"event":"start_event","target":"self"}]}},"ram_screamer":{"minecraft:behavior.ram_attack":{"priority":5,"run_speed":0.7,"ram_speed":1.8,"min_ram_distance":4,"ram_distance":7,"knockback_force":2.5,"knockback_height":0.04,"pre_ram_sound":"pre_ram.screamer","ram_impact_sound":"ram_impact.screamer","cooldown_range":[5,15],"on_start":[{"event":"start_event","target":"self"}]}},"attack_cooldown":{"minecraft:attack_cooldown":{"attack_cooldown_time":[30,40],"attack_cooldown_complete_event":{"event":"attack_cooldown_complete_event","target":"self"}}}},"components":{"minecraft:is_hidden_when_invisible":{},"minecraft:behavior.jump_to_block":{"priority":8,"search_width":10,"search_height":10,"minimum_path_length":8,"minimum_distance":1,"scale_factor":0.6,"cooldown_range":[30,60]},"minecraft:genetics":{"mutation_rate":0.02,"genes":[{"name":"goat_variant","use_simplified_breeding":true,"allele_range":{"range_min":1,"range_max":100},"genetic_variants":[{"main_allele":{"range_min":1,"range_max":2},"birth_event":{"event":"minecraft:born_screamer","target":"self"}},{"main_allele":{"range_min":3,"range_max":100},"birth_event":{"event":"minecraft:born_default","target":"self"}}]}]},"minecraft:type_family":{"family":["goat","animal"]},"minecraft:breathable":{"total_supply":15,"suffocate_time":0},"minecraft:navigation.walk":{"can_path_over_water":true,"avoid_water":true,"avoid_damage_blocks":true,"blocks_to_avoid":[{"name":"minecraft:powder_snow"}]},"minecraft:movement.basic":{},"minecraft:jump.static":{},"minecraft:can_climb":{},"minecraft:collision_box":{"width":0.9,"height":1.3},"minecraft:nameable":{},"minecraft:health":{"value":10,"max":10},"minecraft:hurt_on_condition":{"damage_conditions":[{"filters":{"test":"in_lava","subject":"self","operator":"==","value":true},"cause":"lava","damage_per_tick":4}]},"minecraft:movement":{"value":0.4},"minecraft:despawn":{"despawn_from_distance":{}},"minecraft:behavior.float":{"priority":0},"minecraft:behavior.panic":{"priority":1,"speed_multiplier":1},"minecraft:behavior.tempt":{"priority":4,"speed_multiplier":0.75,"items":["wheat"]},"minecraft:behavior.nearest_attackable_target":{"priority":6,"within_radius":16,"entity_types":[{"filters":{"all_of":[{"test":"is_family","subject":"other","operator":"!=","value":"goat"},{"test":"has_component","subject":"self","operator":"!=","value":"minecraft:attack_cooldown"}]},"max_dist":16}],"must_see":true},"minecraft:damage_sensor":{"triggers":{"cause":"fall","deals_damage":true,"damage_modifier":-10}},"minecraft:behavior.random_stroll":{"priority":9,"speed_multiplier":0.6},"minecraft:behavior.look_at_player":{"priority":10,"look_distance":6,"probability":0.02},"minecraft:behavior.random_look_around":{"priority":11},"minecraft:leashable":{"soft_distance":4,"hard_distance":6,"max_distance":10},"minecraft:balloonable":{},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true}},"events":{"minecraft:entity_spawned":{"randomize":[{"weight":95,"add":{"component_groups":["goat_adult"]}},{"weight":5,"add":{"component_groups":["goat_baby"]}}]},"minecraft:entity_born":{"add":{"component_groups":["goat_baby"]}},"minecraft:born_default":{"add":{"component_groups":["goat_default","ram_default","interact_default"]}},"minecraft:born_screamer":{"add":{"component_groups":["goat_screamer","ram_screamer","interact_screamer"]}},"minecraft:ageable_grow_up":{"remove":{"component_groups":["goat_baby"]},"add":{"component_groups":["goat_adult"]}},"start_event":{"add":{"component_groups":["attack_cooldown"]}},"attack_cooldown_complete_event":{"remove":{"component_groups":["attack_cooldown"]}}}}},"minecraft:guardian":{"format_version":"1.16.0","minecraft:entity":{"description":{"identifier":"minecraft:guardian","is_spawnable":true,"is_summonable":true,"is_experimental":false},"component_groups":{"minecraft:guardian_aggressive":{"minecraft:behavior.nearest_attackable_target":{"priority":1,"entity_types":[{"filters":{"any_of":[{"test":"is_family","subject":"other","value":"player"},{"test":"is_family","subject":"other","value":"squid"},{"test":"is_family","subject":"other","value":"axolotl"}]},"max_dist":16}],"attack_interval_min":1,"must_see":true},"minecraft:target_nearby_sensor":{"inside_range":3,"outside_range":4,"on_inside_range":{"event":"minecraft:target_too_close","target":"self"}},"minecraft:behavior.guardian_attack":{"priority":4}},"minecraft:guardian_passive":{"minecraft:timer":{"time":[1,3],"looping":false,"time_down_event":{"event":"minecraft:target_far_enough","target":"self"}},"minecraft:behavior.avoid_mob_type":{"priority":1,"entity_types":[{"filters":{"test":"is_family","subject":"other","value":"player"},"max_dist":8,"walk_speed_multiplier":1,"sprint_speed_multiplier":1}]}}},"components":{"minecraft:is_hidden_when_invisible":{},"minecraft:experience_reward":{"on_death":"query.last_hit_by_player ? 10 : 0"},"minecraft:nameable":{},"minecraft:collision_box":{"width":0.85,"height":0.85},"minecraft:health":{"value":30,"max":30},"minecraft:hurt_on_condition":{"damage_conditions":[{"filters":{"test":"in_lava","subject":"self","operator":"==","value":true},"cause":"lava","damage_per_tick":4}]},"minecraft:movement":{"value":0.12},"minecraft:underwater_movement":{"value":0.12},"minecraft:attack":{"damage":5},"minecraft:follow_range":{"value":16,"max":16},"minecraft:navigation.generic":{"is_amphibious":true,"can_path_over_water":false,"can_swim":true,"can_walk":false,"can_breach":true},"minecraft:movement.sway":{},"minecraft:jump.static":{},"minecraft:breathable":{"breathes_water":true},"minecraft:loot":{"table":"loot_tables/entities/guardian.json"},"minecraft:despawn":{"despawn_from_distance":{}},"minecraft:home":{"restriction_radius":16},"minecraft:behavior.nearest_attackable_target":{"priority":1,"entity_types":[{"filters":{"any_of":[{"test":"is_family","subject":"other","value":"player"},{"test":"is_family","subject":"other","value":"squid"},{"test":"is_family","subject":"other","value":"axolotl"}]},"max_dist":16}],"attack_interval_min":1,"must_see":true},"minecraft:target_nearby_sensor":{"inside_range":3,"outside_range":4,"on_inside_range":{"event":"minecraft:target_too_close","target":"self"}},"minecraft:behavior.guardian_attack":{"priority":4},"minecraft:behavior.move_towards_home_restriction":{"priority":5,"speed_multiplier":1},"minecraft:behavior.random_swim":{"priority":7,"speed_multiplier":1,"interval":80,"avoid_surface":false},"minecraft:behavior.look_at_player":{"priority":8,"look_distance":12,"probability":0.01},"minecraft:behavior.random_look_around":{"priority":9},"minecraft:type_family":{"family":["guardian","monster","mob"]},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:conditional_bandwidth_optimization":{}},"events":{"minecraft:target_too_close":{"remove":{"component_groups":["minecraft:guardian_aggressive"]},"add":{"component_groups":["minecraft:guardian_passive"]}},"minecraft:target_far_enough":{"remove":{"component_groups":["minecraft:guardian_passive"]},"add":{"component_groups":["minecraft:guardian_aggressive"]}}}}},"minecraft:hoglin":{"format_version":"1.18.30","minecraft:entity":{"description":{"identifier":"minecraft:hoglin","is_spawnable":true,"is_summonable":true,"is_experimental":false},"component_groups":{"zombification_sensor":{"minecraft:environment_sensor":{"triggers":{"filters":{"test":"in_nether","subject":"self","operator":"==","value":false},"event":"start_zombification_event"}}},"start_zombification":{"minecraft:is_shaking":{},"minecraft:environment_sensor":{"triggers":{"filters":{"test":"in_nether","subject":"self","operator":"==","value":true},"event":"stop_zombification_event"}},"minecraft:timer":{"looping":false,"time":15,"time_down_event":{"event":"become_zombie_event"}}},"become_zombie":{"minecraft:transformation":{"into":"minecraft:zoglin","transformation_sound":"converted_to_zombified","keep_level":true}},"angry_hoglin":{"minecraft:angry":{"duration":10,"broadcast_anger":true,"broadcast_range":16,"calm_event":{"event":"become_calm_event","target":"self"},"angry_sound":"angry","sound_interval":{"range_min":2,"range_max":5}}},"attack_cooldown":{"minecraft:attack_cooldown":{"attack_cooldown_time":[10,15],"attack_cooldown_complete_event":{"event":"attack_cooldown_complete_event","target":"self"}}},"minecraft:hoglin_baby":{"minecraft:type_family":{"family":["hoglin","hoglin_baby","mob"]},"minecraft:is_baby":{},"minecraft:movement":{"value":0.36},"minecraft:behavior.melee_attack":{"priority":4,"speed_multiplier":1,"track_target":true,"reach_multiplier":1,"cooldown_time":0.75},"minecraft:attack":{"damage":1},"minecraft:scale":{"value":0.5},"minecraft:collision_box":{"width":0.85,"height":0.85},"minecraft:custom_hit_test":{"hitboxes":[{"width":1,"height":0.85,"pivot":[0,0.5,0]}]},"minecraft:ageable":{"duration":1200,"feed_items":["crimson_fungus"],"grow_up":{"event":"minecraft:ageable_grow_up","target":"self"}},"minecraft:behavior.follow_parent":{"priority":6,"speed_multiplier":1},"minecraft:rideable":{"seat_count":3,"family_types":["piglin"],"seats":[{"position":[0,0.9,-0.3],"lock_rider_rotation":0},{"position":[0,2.4,-0.3],"lock_rider_rotation":0},{"position":[0,3.9,-0.3],"lock_rider_rotation":0}]},"minecraft:behavior.panic":{"priority":1,"speed_multiplier":1}},"minecraft:hoglin_adult":{"minecraft:collision_box":{"width":1.4,"height":1.4},"minecraft:movement":{"value":0.3},"minecraft:custom_hit_test":{"hitboxes":[{"width":2,"height":1.75,"pivot":[0,1,0]}]},"minecraft:group_size":{"radius":32,"filters":{"all_of":[{"test":"has_component","operator":"!=","value":"minecraft:is_baby"},{"test":"is_family","value":"hoglin"}]}},"minecraft:behavior.hurt_by_target":{"priority":2},"minecraft:on_target_acquired":{"event":"become_angry_event","target":"self"},"minecraft:loot":{"table":"loot_tables/entities/hoglin.json"},"minecraft:behavior.melee_attack":{"priority":4,"speed_multiplier":1,"track_target":true,"reach_multiplier":2.15,"cooldown_time":2},"minecraft:attack":{"damage":[3,9]},"minecraft:behavior.breed":{"priority":3,"speed_multiplier":0.6},"minecraft:breedable":{"require_tame":false,"love_filters":{"test":"has_component","subject":"self","operator":"!=","value":"minecraft:attack_cooldown"},"breeds_with":{"mate_type":"minecraft:hoglin","baby_type":"minecraft:hoglin","breed_event":{"event":"minecraft:entity_born","target":"baby"}},"breed_items":["crimson_fungus"]}},"unhuntable_adult":{"minecraft:type_family":{"family":["hoglin","hoglin_adult","mob"]}},"huntable_adult":{"minecraft:type_family":{"family":["hoglin","hoglin_adult","hoglin_huntable","mob"]}}},"components":{"minecraft:is_hidden_when_invisible":{},"minecraft:nameable":{},"minecraft:health":{"value":40,"max":40},"minecraft:experience_reward":{"on_bred":"Math.Random(1,7)","on_death":"query.last_hit_by_player ? 5 : 0"},"minecraft:knockback_resistance":{"value":0.6},"minecraft:behavior.nearest_attackable_target":{"priority":4,"within_radius":16,"entity_types":[{"filters":{"all_of":[{"test":"is_family","subject":"other","value":"player"},{"test":"has_component","subject":"self","operator":"!=","value":"minecraft:attack_cooldown"}]},"max_dist":16}],"must_see":true},"minecraft:breathable":{"total_supply":15,"suffocate_time":0},"minecraft:hurt_on_condition":{"damage_conditions":[{"filters":{"test":"in_lava","subject":"self","operator":"==","value":true},"cause":"lava","damage_per_tick":4}]},"minecraft:behavior.avoid_mob_type":{"priority":0,"remove_target":true,"entity_types":[{"filters":{"all_of":[{"test":"has_target","subject":"other","value":true},{"test":"is_family","subject":"other","value":"piglin"}]},"check_if_outnumbered":true,"max_dist":10,"sprint_speed_multiplier":1.2}],"avoid_mob_sound":"retreat","sound_interval":{"range_min":2,"range_max":5}},"minecraft:behavior.avoid_block":{"priority":1,"tick_interval":5,"search_range":8,"search_height":4,"walk_speed_modifier":1,"sprint_speed_modifier":1,"avoid_block_sound":"retreat","sound_interval":{"range_min":2,"range_max":5},"target_selection_method":"nearest","target_blocks":["minecraft:warped_fungus","minecraft:portal","minecraft:respawn_anchor"],"on_escape":[{"event":"escaped_event","target":"self"}]},"minecraft:navigation.walk":{"can_path_over_water":true,"avoid_water":true,"avoid_damage_blocks":true},"minecraft:movement.basic":{},"minecraft:jump.static":{},"minecraft:can_climb":{},"minecraft:leashable":{"soft_distance":4,"hard_distance":6,"max_distance":10},"minecraft:despawn":{"despawn_from_distance":{}},"minecraft:behavior.random_stroll":{"priority":7,"speed_multiplier":0.4},"minecraft:behavior.random_look_around":{"priority":9},"minecraft:behavior.look_at_player":{"priority":8,"look_distance":6,"probability":0.02},"minecraft:balloonable":{},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:conditional_bandwidth_optimization":{}},"events":{"minecraft:entity_spawned":{"randomize":[{"weight":95,"trigger":"spawn_adult"},{"weight":5,"trigger":"spawn_baby"}]},"minecraft:entity_born":{"trigger":"spawn_baby"},"spawn_adult":{"add":{"component_groups":["minecraft:hoglin_adult","huntable_adult","zombification_sensor"]}},"spawn_baby":{"add":{"component_groups":["minecraft:hoglin_baby","zombification_sensor"]}},"stop_zombification_event":{"add":{"component_groups":["zombification_sensor"]},"remove":{"component_groups":["start_zombification"]}},"become_zombie_event":{"add":{"component_groups":["become_zombie"]}},"start_zombification_event":{"add":{"component_groups":["start_zombification"]},"remove":{"component_groups":["zombification_sensor"]}},"spawn_adult_unhuntable":{"add":{"component_groups":["minecraft:hoglin_adult","unhuntable_adult","zombification_sensor"]}},"minecraft:ageable_grow_up":{"remove":{"component_groups":["minecraft:hoglin_baby"]},"add":{"component_groups":["minecraft:hoglin_adult","huntable_adult"]}},"become_angry_event":{"add":{"component_groups":["angry_hoglin"]}},"become_calm_event":{"remove":{"component_groups":["angry_hoglin"]}},"escaped_event":{"add":{"component_groups":["attack_cooldown"]},"remove":{"component_groups":["angry_hoglin"]}},"attack_cooldown_complete_event":{"remove":{"component_groups":["attack_cooldown"]}}}}},"minecraft:hopper_minecart":{"format_version":"1.12.0","minecraft:entity":{"description":{"identifier":"minecraft:hopper_minecart","is_spawnable":false,"is_summonable":true,"is_experimental":false},"component_groups":{"minecraft:hopper_active":{"minecraft:item_hopper":{},"minecraft:rail_sensor":{"on_activate":{"event":"minecraft:hopper_deactivate"}}},"minecraft:hopper_inactive":{"minecraft:rail_sensor":{"on_deactivate":{"event":"minecraft:hopper_activate"}}}},"components":{"minecraft:type_family":{"family":["minecart","inanimate"]},"minecraft:collision_box":{"width":0.98,"height":0.7},"minecraft:rail_movement":{},"minecraft:inventory":{"container_type":"minecart_hopper","inventory_size":5,"can_be_siphoned_from":true},"minecraft:is_stackable":{},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:conditional_bandwidth_optimization":{"default_values":{"max_optimized_distance":60,"max_dropped_ticks":20,"use_motion_prediction_hints":true},"conditional_values":[{"max_optimized_distance":0,"max_dropped_ticks":0,"conditional_values":[{"test":"is_moving","subject":"self","operator":"==","value":true}]}]}},"events":{"minecraft:entity_spawned":{"add":{"component_groups":["minecraft:hopper_active"]}},"minecraft:hopper_activate":{"remove":{"component_groups":["minecraft:hopper_inactive"]},"add":{"component_groups":["minecraft:hopper_active"]}},"minecraft:hopper_deactivate":{"remove":{"component_groups":["minecraft:hopper_active"]},"add":{"component_groups":["minecraft:hopper_inactive"]}}}}},"minecraft:horse":{"format_version":"1.16.0","minecraft:entity":{"description":{"identifier":"minecraft:horse","is_spawnable":true,"is_summonable":true,"is_experimental":false},"component_groups":{"minecraft:horse_baby":{"minecraft:is_baby":{},"minecraft:scale_by_age":{"start_scale":0.5,"end_scale":1},"minecraft:ageable":{"duration":1200,"feed_items":[{"item":"wheat","growth":0.016667},{"item":"sugar","growth":0.025},{"item":"hay_block","growth":0.15},{"item":"apple","growth":0.05},{"item":"golden_carrot","growth":0.05},{"item":"golden_apple","growth":0.2},{"item":"appleEnchanted","growth":0.2}],"grow_up":{"event":"minecraft:ageable_grow_up","target":"self"}},"minecraft:behavior.follow_parent":{"priority":4,"speed_multiplier":1}},"minecraft:horse_adult":{"minecraft:experience_reward":{"on_bred":"Math.Random(1,7)","on_death":"query.last_hit_by_player ? Math.Random(1,3) : 0"},"minecraft:loot":{"table":"loot_tables/entities/horse.json"},"minecraft:behavior.run_around_like_crazy":{"priority":1,"speed_multiplier":1.2},"minecraft:behavior.breed":{"priority":2,"speed_multiplier":1}},"minecraft:horse_wild":{"minecraft:rideable":{"seat_count":1,"family_types":["player","zombie"],"interact_text":"action.interact.mount","seats":{"position":[0,1.1,-0.2]}},"minecraft:behavior.mount_pathing":{"priority":2,"speed_multiplier":1.5,"target_dist":0,"track_target":true},"minecraft:tamemount":{"min_temper":0,"max_temper":100,"feed_text":"action.interact.feed","ride_text":"action.interact.mount","feed_items":[{"item":"wheat","temper_mod":3},{"item":"sugar","temper_mod":3},{"item":"apple","temper_mod":3},{"item":"golden_carrot","temper_mod":5},{"item":"golden_apple","temper_mod":10},{"item":"appleEnchanted","temper_mod":10}],"auto_reject_items":[{"item":"horsearmorleather"},{"item":"horsearmoriron"},{"item":"horsearmorgold"},{"item":"horsearmordiamond"},{"item":"saddle"}],"tame_event":{"event":"minecraft:on_tame","target":"self"}}},"minecraft:horse_tamed":{"minecraft:is_tamed":{},"minecraft:rideable":{"seat_count":1,"crouching_skip_interact":true,"family_types":["player"],"interact_text":"action.interact.ride.horse","seats":{"position":[0,1.1,-0.2]}},"minecraft:inventory":{"inventory_size":2,"container_type":"horse"},"minecraft:breedable":{"require_tame":true,"inherit_tamed":false,"breeds_with":[{"mate_type":"minecraft:horse","baby_type":"minecraft:horse","breed_event":{"event":"minecraft:entity_born","target":"baby"}},{"mate_type":"minecraft:donkey","baby_type":"minecraft:mule","breed_event":{"event":"minecraft:entity_born","target":"baby"}}],"breed_items":["golden_carrot","golden_apple","appleEnchanted"]},"minecraft:behavior.tempt":{"priority":5,"speed_multiplier":1.2,"items":["golden_apple","appleEnchanted","golden_carrot"]}},"minecraft:horse_saddled":{"minecraft:is_saddled":{},"minecraft:input_ground_controlled":{},"minecraft:can_power_jump":{},"minecraft:behavior.player_ride_tamed":{}},"minecraft:base_white":{"minecraft:variant":{"value":0}},"minecraft:base_creamy":{"minecraft:variant":{"value":1}},"minecraft:base_chestnut":{"minecraft:variant":{"value":2}},"minecraft:base_brown":{"minecraft:variant":{"value":3}},"minecraft:base_black":{"minecraft:variant":{"value":4}},"minecraft:base_gray":{"minecraft:variant":{"value":5}},"minecraft:base_darkbrown":{"minecraft:variant":{"value":6}},"minecraft:markings_none":{"minecraft:mark_variant":{"value":0}},"minecraft:markings_white_details":{"minecraft:mark_variant":{"value":1}},"minecraft:markings_white_fields":{"minecraft:mark_variant":{"value":2}},"minecraft:markings_white_dots":{"minecraft:mark_variant":{"value":3}},"minecraft:markings_black_dots":{"minecraft:mark_variant":{"value":4}}},"components":{"minecraft:is_hidden_when_invisible":{},"minecraft:equippable":{"slots":[{"slot":0,"item":"saddle","accepted_items":["saddle"],"on_equip":{"event":"minecraft:horse_saddled"},"on_unequip":{"event":"minecraft:horse_unsaddled"}},{"slot":1,"item":"horsearmoriron","accepted_items":["horsearmorleather","horsearmoriron","horsearmorgold","horsearmordiamond"]}]},"minecraft:type_family":{"family":["horse","mob"]},"minecraft:breathable":{"total_supply":15,"suffocate_time":0},"minecraft:collision_box":{"width":1.4,"height":1.6},"minecraft:health":{"value":{"range_min":15,"range_max":30}},"minecraft:hurt_on_condition":{"damage_conditions":[{"filters":{"test":"in_lava","subject":"self","operator":"==","value":true},"cause":"lava","damage_per_tick":4}]},"minecraft:movement":{"value":{"range_min":0.1125,"range_max":0.3375}},"minecraft:navigation.walk":{"can_path_over_water":true,"avoid_water":true,"avoid_damage_blocks":true},"minecraft:movement.basic":{},"minecraft:jump.static":{},"minecraft:nameable":{},"minecraft:horse.jump_strength":{"value":{"range_min":0.4,"range_max":1}},"minecraft:leashable":{"soft_distance":4,"hard_distance":6,"max_distance":10},"minecraft:balloonable":{},"minecraft:healable":{"items":[{"item":"wheat","heal_amount":2},{"item":"sugar","heal_amount":1},{"item":"hay_block","heal_amount":20},{"item":"apple","heal_amount":3},{"item":"golden_carrot","heal_amount":4},{"item":"golden_apple","heal_amount":10},{"item":"appleEnchanted","heal_amount":10}]},"minecraft:despawn":{"despawn_from_distance":{}},"minecraft:behavior.float":{"priority":0},"minecraft:behavior.panic":{"priority":3,"speed_multiplier":1.2},"minecraft:behavior.random_stroll":{"priority":6,"speed_multiplier":0.7},"minecraft:behavior.look_at_player":{"priority":7,"look_distance":6,"probability":0.02},"minecraft:behavior.random_look_around":{"priority":8},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:conditional_bandwidth_optimization":{}},"events":{"minecraft:entity_spawned":{"sequence":[{"randomize":[{"weight":36,"add":{"component_groups":["minecraft:horse_adult","minecraft:horse_wild"]}},{"weight":9,"add":{"component_groups":["minecraft:horse_baby"]}}]},{"randomize":[{"weight":1,"add":{"component_groups":["minecraft:base_white"]}},{"weight":1,"add":{"component_groups":["minecraft:base_creamy"]}},{"weight":1,"add":{"component_groups":["minecraft:base_chestnut"]}},{"weight":1,"add":{"component_groups":["minecraft:base_brown"]}},{"weight":1,"add":{"component_groups":["minecraft:base_black"]}},{"weight":1,"add":{"component_groups":["minecraft:base_gray"]}},{"weight":1,"add":{"component_groups":["minecraft:base_darkbrown"]}}]},{"randomize":[{"weight":1,"add":{"component_groups":["minecraft:markings_none"]}},{"weight":1,"add":{"component_groups":["minecraft:markings_white_details"]}},{"weight":1,"add":{"component_groups":["minecraft:markings_white_fields"]}},{"weight":1,"add":{"component_groups":["minecraft:markings_white_dots"]}},{"weight":1,"add":{"component_groups":["minecraft:markings_black_dots"]}}]}]},"minecraft:entity_born":{"add":{"component_groups":["minecraft:horse_baby"]}},"minecraft:on_tame":{"remove":{"component_groups":["minecraft:horse_wild"]},"add":{"component_groups":["minecraft:horse_tamed"]}},"minecraft:ageable_grow_up":{"remove":{"component_groups":["minecraft:horse_baby"]},"add":{"component_groups":["minecraft:horse_adult","minecraft:horse_wild"]}},"minecraft:horse_saddled":{"add":{"component_groups":["minecraft:horse_saddled"]}},"minecraft:horse_unsaddled":{"remove":{"component_groups":["minecraft:horse_saddled"]}},"minecraft:make_white":{"add":{"component_groups":["minecraft:base_white"]}},"minecraft:make_creamy":{"add":{"component_groups":["minecraft:base_creamy"]}},"minecraft:make_chestnut":{"add":{"component_groups":["minecraft:base_chestnut"]}},"minecraft:make_brown":{"add":{"component_groups":["minecraft:base_brown"]}},"minecraft:make_black":{"add":{"component_groups":["minecraft:base_black"]}},"minecraft:make_gray":{"add":{"component_groups":["minecraft:base_gray"]}},"minecraft:make_darkbrown":{"add":{"component_groups":["minecraft:base_darkbrown"]}}}}},"minecraft:husk":{"format_version":"1.17.20","minecraft:entity":{"description":{"identifier":"minecraft:husk","is_spawnable":true,"is_summonable":true,"is_experimental":false},"component_groups":{"minecraft:look_to_start_zombie_transformation":{"minecraft:environment_sensor":{"triggers":{"filters":{"test":"is_underwater","subject":"self","operator":"==","value":true},"event":"minecraft:start_transforming"}}},"minecraft:start_zombie_transformation":{"minecraft:environment_sensor":{"triggers":{"filters":{"test":"is_underwater","subject":"self","operator":"==","value":false},"event":"minecraft:stop_transforming"}},"minecraft:timer":{"looping":false,"time":30,"time_down_event":{"event":"minecraft:convert_to_zombie"}}},"minecraft:convert_to_zombie":{"minecraft:transformation":{"into":"minecraft:zombie<minecraft:as_adult>","transformation_sound":"convert_to_drowned","drop_equipment":true,"delay":{"value":15}},"minecraft:is_shaking":{}},"minecraft:convert_to_baby_zombie":{"minecraft:transformation":{"into":"minecraft:zombie<minecraft:as_baby>","transformation_sound":"convert_to_drowned","drop_equipment":true,"delay":{"value":15}},"minecraft:is_shaking":{}},"minecraft:zombie_husk_baby":{"minecraft:experience_reward":{"on_death":"query.last_hit_by_player ? 12 + (query.equipment_count * Math.Random(1,3)) : 0"},"minecraft:is_baby":{},"minecraft:scale":{"value":0.53125},"minecraft:movement":{"value":0.35}},"minecraft:zombie_husk_adult":{"minecraft:experience_reward":{"on_death":"query.last_hit_by_player ? 5 + (query.equipment_count * Math.Random(1,3)) : 0"},"minecraft:movement":{"value":0.23},"minecraft:rideable":{"seat_count":1,"family_types":["zombie"],"seats":{"position":[0,1.1,-0.35],"lock_rider_rotation":0}},"minecraft:behavior.mount_pathing":{"priority":2,"speed_multiplier":1.25,"target_dist":0,"track_target":true},"minecraft:scale":{"value":1.0625}},"minecraft:zombie_husk_jockey":{"minecraft:behavior.find_mount":{"priority":1,"within_radius":16}},"minecraft:can_break_doors":{"minecraft:annotation.break_door":{}}},"components":{"minecraft:is_hidden_when_invisible":{},"minecraft:breathable":{"total_supply":15,"suffocate_time":0,"breathes_water":true},"minecraft:equip_item":{},"minecraft:collision_box":{"width":0.6,"height":1.9},"minecraft:nameable":{},"minecraft:type_family":{"family":["husk","zombie","undead","monster","mob"]},"minecraft:loot":{"table":"loot_tables/entities/zombie.json"},"minecraft:equipment":{"table":"loot_tables/entities/zombie_equipment.json"},"minecraft:health":{"value":20,"max":20},"minecraft:hurt_on_condition":{"damage_conditions":[{"filters":{"test":"in_lava","subject":"self","operator":"==","value":true},"cause":"lava","damage_per_tick":4}]},"minecraft:attack":{"damage":3,"effect_name":"hunger","effect_duration":30},"minecraft:variant":{"value":2},"minecraft:conditional_bandwidth_optimization":{},"minecraft:navigation.walk":{"is_amphibious":true,"can_pass_doors":true,"can_break_doors":true,"avoid_portals":false},"minecraft:movement.basic":{},"minecraft:jump.static":{},"minecraft:can_climb":{},"minecraft:shareables":{"items":[{"item":"minecraft:netherite_sword","want_amount":1,"surplus_amount":1,"priority":0},{"item":"minecraft:diamond_sword","want_amount":1,"surplus_amount":1,"priority":1},{"item":"minecraft:iron_sword","want_amount":1,"surplus_amount":1,"priority":2},{"item":"minecraft:golden_sword","want_amount":1,"surplus_amount":1,"priority":3},{"item":"minecraft:stone_sword","want_amount":1,"surplus_amount":1,"priority":4},{"item":"minecraft:wooden_sword","want_amount":1,"surplus_amount":1,"priority":5},{"item":"minecraft:netherite_helmet","want_amount":1,"surplus_amount":1,"priority":0},{"item":"minecraft:diamond_helmet","want_amount":1,"surplus_amount":1,"priority":1},{"item":"minecraft:iron_helmet","want_amount":1,"surplus_amount":1,"priority":2},{"item":"minecraft:chainmail_helmet","want_amount":1,"surplus_amount":1,"priority":3},{"item":"minecraft:golden_helmet","want_amount":1,"surplus_amount":1,"priority":4},{"item":"minecraft:leather_helmet","want_amount":1,"surplus_amount":1,"priority":5},{"item":"minecraft:turtle_helmet","want_amount":1,"surplus_amount":1,"priority":6},{"item":"minecraft:skull:0","want_amount":1,"surplus_amount":1,"priority":7},{"item":"minecraft:skull:1","want_amount":1,"surplus_amount":1,"priority":7},{"item":"minecraft:carved_pumpkin","want_amount":1,"surplus_amount":1,"priority":7},{"item":"minecraft:netherite_chestplate","want_amount":1,"surplus_amount":1,"priority":0},{"item":"minecraft:diamond_chestplate","want_amount":1,"surplus_amount":1,"priority":1},{"item":"minecraft:iron_chestplate","want_amount":1,"surplus_amount":1,"priority":2},{"item":"minecraft:chainmail_chestplate","want_amount":1,"surplus_amount":1,"priority":3},{"item":"minecraft:golden_chestplate","want_amount":1,"surplus_amount":1,"priority":4},{"item":"minecraft:leather_chestplate","want_amount":1,"surplus_amount":1,"priority":5},{"item":"minecraft:netherite_leggings","want_amount":1,"surplus_amount":1,"priority":0},{"item":"minecraft:diamond_leggings","want_amount":1,"surplus_amount":1,"priority":1},{"item":"minecraft:iron_leggings","want_amount":1,"surplus_amount":1,"priority":2},{"item":"minecraft:chainmail_leggings","want_amount":1,"surplus_amount":1,"priority":3},{"item":"minecraft:golden_leggings","want_amount":1,"surplus_amount":1,"priority":4},{"item":"minecraft:leather_leggings","want_amount":1,"surplus_amount":1,"priority":5},{"item":"minecraft:netherite_boots","want_amount":1,"surplus_amount":1,"priority":0},{"item":"minecraft:diamond_boots","want_amount":1,"surplus_amount":1,"priority":1},{"item":"minecraft:iron_boots","want_amount":1,"surplus_amount":1,"priority":2},{"item":"minecraft:chainmail_boots","want_amount":1,"surplus_amount":1,"priority":3},{"item":"minecraft:golden_boots","want_amount":1,"surplus_amount":1,"priority":4},{"item":"minecraft:leather_boots","want_amount":1,"surplus_amount":1,"priority":5}]},"minecraft:environment_sensor":{"triggers":[{"filters":{"test":"is_underwater","subject":"self","operator":"==","value":true},"event":"minecraft:start_transforming"}]},"minecraft:despawn":{"despawn_from_distance":{}},"minecraft:behavior.equip_item":{"priority":2},"minecraft:behavior.melee_attack":{"priority":3},"minecraft:behavior.stomp_turtle_egg":{"priority":4,"speed_multiplier":1,"search_range":10,"search_height":2,"goal_radius":1.14,"interval":20},"minecraft:behavior.pickup_items":{"priority":6,"max_dist":3,"goal_radius":2,"speed_multiplier":1,"pickup_based_on_chance":true,"can_pickup_any_item":true,"excluded_items":["minecraft:glow_ink_sac"]},"minecraft:behavior.random_stroll":{"priority":7,"speed_multiplier":1},"minecraft:behavior.look_at_player":{"priority":8,"look_distance":6,"probability":0.02},"minecraft:behavior.random_look_around":{"priority":9},"minecraft:behavior.hurt_by_target":{"priority":1},"minecraft:behavior.nearest_attackable_target":{"priority":2,"must_see":true,"reselect_targets":true,"within_radius":25,"entity_types":[{"filters":{"any_of":[{"test":"is_family","subject":"other","value":"player"},{"test":"is_family","subject":"other","value":"snowgolem"},{"test":"is_family","subject":"other","value":"irongolem"}]},"max_dist":35},{"filters":{"any_of":[{"test":"is_family","subject":"other","value":"villager"},{"test":"is_family","subject":"other","value":"wandering_trader"}]},"max_dist":35,"must_see":false},{"filters":{"all_of":[{"test":"is_family","subject":"other","value":"baby_turtle"},{"test":"in_water","subject":"other","operator":"!=","value":true}]},"max_dist":35}]},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true}},"events":{"minecraft:entity_spawned":{"sequence":[{"randomize":[{"weight":9500,"remove":{},"add":{"component_groups":["minecraft:zombie_husk_adult"]}},{"weight":425,"remove":{},"add":{"component_groups":["minecraft:zombie_husk_baby"]}},{"weight":75,"remove":{},"add":{"component_groups":["minecraft:zombie_husk_baby","minecraft:zombie_husk_jockey"]}}]},{"randomize":[{"weight":10,"add":{"component_groups":["minecraft:can_break_doors"]}},{"weight":90}]}]},"minecraft:start_transforming":{"add":{"component_groups":["minecraft:start_zombie_transformation"]},"remove":{"component_groups":["minecraft:look_to_start_zombie_transformation"]}},"minecraft:stop_transforming":{"add":{"component_groups":["minecraft:look_to_start_zombie_transformation"]},"remove":{"component_groups":["minecraft:start_zombie_transformation"]}},"minecraft:convert_to_zombie":{"sequence":[{"filters":{"test":"has_component","operator":"!=","value":"minecraft:is_baby"},"add":{"component_groups":["minecraft:convert_to_zombie"]},"remove":{"component_groups":["minecraft:start_zombie_transformation"]}},{"filters":{"test":"has_component","value":"minecraft:is_baby"},"add":{"component_groups":["minecraft:convert_to_baby_zombie"]},"remove":{"component_groups":["minecraft:start_zombie_transformation"]}}]}}}},"minecraft:iron_golem":{"format_version":"1.18.10","minecraft:entity":{"description":{"identifier":"minecraft:iron_golem","is_spawnable":false,"is_summonable":true,"is_experimental":false},"component_groups":{"minecraft:player_created":{"minecraft:behavior.hurt_by_target":{"priority":2,"entity_types":{"filters":{"all_of":[{"test":"is_family","subject":"other","operator":"!=","value":"player"},{"test":"is_family","subject":"other","operator":"!=","value":"creeper"}]}}}},"minecraft:village_created":{"minecraft:behavior.defend_village_target":{"priority":1,"must_reach":true,"attack_chance":0.05,"entity_types":{"filters":{"any_of":[{"test":"is_family","subject":"other","value":"mob"},{"test":"is_family","subject":"other","value":"player"}]}}},"minecraft:dweller":{"dwelling_type":"village","dweller_role":"defender","update_interval_base":60,"update_interval_variant":40,"can_find_poi":false,"can_migrate":true,"first_founding_reward":0}}},"components":{"minecraft:is_hidden_when_invisible":{},"minecraft:type_family":{"family":["irongolem","mob"]},"minecraft:nameable":{},"minecraft:collision_box":{"width":1.4,"height":2.9},"minecraft:loot":{"table":"loot_tables/entities/iron_golem.json"},"minecraft:health":{"value":100,"max":100},"minecraft:hurt_on_condition":{"damage_conditions":[{"filters":{"test":"in_lava","subject":"self","operator":"==","value":true},"cause":"lava","damage_per_tick":4}]},"minecraft:movement":{"value":0.25},"minecraft:navigation.walk":{"can_path_over_water":false,"avoid_water":true,"avoid_damage_blocks":true},"minecraft:movement.basic":{},"minecraft:jump.static":{},"minecraft:can_climb":{},"minecraft:interact":{"interactions":[{"on_interact":{"filters":{"all_of":[{"test":"is_family","subject":"other","value":"player"},{"test":"has_equipment","domain":"hand","subject":"other","value":"iron_ingot"},{"test":"is_missing_health","value":true}]}},"use_item":true,"health_amount":25,"play_sounds":"irongolem.repair","interact_text":"action.interact.repair"}]},"minecraft:attack":{"damage":{"range_min":7,"range_max":21}},"minecraft:damage_sensor":{"triggers":{"cause":"fall","deals_damage":false}},"minecraft:knockback_resistance":{"value":1},"minecraft:leashable":{"soft_distance":4,"hard_distance":6,"max_distance":10},"minecraft:balloonable":{"mass":2},"minecraft:preferred_path":{"max_fall_blocks":1,"jump_cost":5,"default_block_cost":1.5,"preferred_path_blocks":[{"cost":0,"blocks":["grass_path"]},{"cost":1,"blocks":["cobblestone","stone","stonebrick","sandstone","mossy_cobblestone","stone_slab","stone_slab2","stone_slab3","stone_slab4","double_stone_slab","double_stone_slab2","double_stone_slab3","double_stone_slab4","wooden_slab","double_wooden_slab","planks","brick_block","nether_brick","red_nether_brick","end_bricks","red_sandstone","stained_glass","glass","glowstone","prismarine","emerald_block","diamond_block","lapis_block","gold_block","redstone_block","purple_glazed_terracotta","white_glazed_terracotta","orange_glazed_terracotta","magenta_glazed_terracotta","light_blue_glazed_terracotta","yellow_glazed_terracotta","lime_glazed_terracotta","pink_glazed_terracotta","gray_glazed_terracotta","silver_glazed_terracotta","cyan_glazed_terracotta","blue_glazed_terracotta","brown_glazed_terracotta","green_glazed_terracotta","red_glazed_terracotta","black_glazed_terracotta"]},{"cost":50,"blocks":["bed","lectern","composter","grindstone","blast_furnace","smoker","fletching_table","cartography_table","brewing_stand","smithing_table","cauldron","barrel","loom","stonecutter"]}]},"minecraft:behavior.target_when_pushed":{"priority":1,"percent_chance":5,"entity_types":[{"filters":{"all_of":[{"test":"is_family","subject":"other","value":"monster"},{"test":"is_family","subject":"other","operator":"!=","value":"creeper"}]}}]},"minecraft:behavior.melee_attack":{"priority":1,"track_target":true},"minecraft:behavior.move_towards_target":{"priority":2,"speed_multiplier":0.9,"within_radius":32},"minecraft:behavior.move_through_village":{"priority":3,"speed_multiplier":0.6,"only_at_night":true},"minecraft:behavior.move_towards_dwelling_restriction":{"priority":4,"speed_multiplier":1},"minecraft:behavior.offer_flower":{"priority":5},"minecraft:behavior.random_stroll":{"priority":6,"speed_multiplier":0.6,"xz_dist":16},"minecraft:behavior.look_at_player":{"priority":7,"look_distance":6,"probability":0.02},"minecraft:behavior.random_look_around":{"priority":8},"minecraft:behavior.nearest_attackable_target":{"priority":3,"must_reach":true,"must_see":true,"entity_types":[{"filters":{"all_of":[{"test":"is_family","subject":"other","value":"monster"},{"test":"is_family","subject":"other","operator":"!=","value":"creeper"}]},"within_default":10},{"filters":{"all_of":[{"test":"is_family","subject":"other","value":"hoglin"},{"test":"is_difficulty","operator":"!=","value":"peaceful"}]},"max_dist":16},{"filters":{"all_of":[{"test":"is_family","subject":"other","value":"zoglin"},{"test":"is_difficulty","operator":"!=","value":"peaceful"}]},"max_dist":16}]},"minecraft:behavior.hurt_by_target":{"priority":2,"entity_types":{"filters":{"test":"is_family","subject":"other","operator":"!=","value":"creeper"}}},"minecraft:persistent":{},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:follow_range":{"value":64},"minecraft:conditional_bandwidth_optimization":{}},"events":{"minecraft:from_player":{"add":{"component_groups":["minecraft:player_created"]}},"minecraft:from_village":{"add":{"component_groups":["minecraft:village_created"]}}}}},"minecraft:lightning_bolt":{"format_version":"1.8.0","minecraft:entity":{"description":{"identifier":"minecraft:lightning_bolt","is_spawnable":false,"is_summonable":true,"is_experimental":false},"component_groups":{},"components":{"minecraft:type_family":{"family":["lightning"]},"minecraft:conditional_bandwidth_optimization":{"default_values":{"max_optimized_distance":80,"max_dropped_ticks":10,"use_motion_prediction_hints":true}}},"events":{}}},"minecraft:lingering_potion":{"format_version":"1.12.0","minecraft:entity":{"description":{"identifier":"minecraft:lingering_potion","is_spawnable":false,"is_summonable":false,"is_experimental":false},"components":{"minecraft:collision_box":{"width":0.25,"height":0.25},"minecraft:projectile":{"on_hit":{"douse_fire":{},"spawn_aoe_cloud":{"radius":3,"radius_on_use":-0.5,"duration":30,"reapplication_delay":40},"remove_on_hit":{}},"power":0.5,"gravity":0.05,"angle_offset":-20,"hit_sound":"glass"},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:conditional_bandwidth_optimization":{"default_values":{"max_optimized_distance":80,"max_dropped_ticks":5,"use_motion_prediction_hints":true}}}}},"minecraft:llama":{"format_version":"1.19.0","minecraft:entity":{"description":{"identifier":"minecraft:llama","is_spawnable":true,"is_summonable":true,"is_experimental":false},"component_groups":{"minecraft:llama_baby":{"minecraft:is_baby":{},"minecraft:scale":{"value":0.5},"minecraft:ageable":{"duration":1200,"feed_items":[{"item":"wheat","growth":0.1},{"item":"hay_block","growth":0.9}],"grow_up":{"event":"minecraft:ageable_grow_up","target":"self"}},"minecraft:behavior.follow_parent":{"priority":5,"speed_multiplier":1}},"minecraft:llama_adult":{"minecraft:experience_reward":{"on_bred":"Math.Random(1,7)","on_death":"query.last_hit_by_player ? Math.Random(1,3) : 0"},"minecraft:loot":{"table":"loot_tables/entities/llama.json"},"minecraft:behavior.breed":{"priority":4,"speed_multiplier":1},"minecraft:breedable":{"require_tame":true,"inherit_tamed":false,"breeds_with":{"mate_type":"minecraft:llama","baby_type":"minecraft:llama","breed_event":{"event":"minecraft:entity_born","target":"baby"}},"breed_items":["hay_block"]}},"minecraft:strength_1":{"minecraft:strength":{"value":1,"max":5}},"minecraft:strength_2":{"minecraft:strength":{"value":2,"max":5}},"minecraft:strength_3":{"minecraft:strength":{"value":3,"max":5}},"minecraft:strength_4":{"minecraft:strength":{"value":4,"max":5}},"minecraft:strength_5":{"minecraft:strength":{"value":5,"max":5}},"minecraft:llama_creamy":{"minecraft:variant":{"value":0}},"minecraft:llama_white":{"minecraft:variant":{"value":1}},"minecraft:llama_brown":{"minecraft:variant":{"value":2}},"minecraft:llama_gray":{"minecraft:variant":{"value":3}},"minecraft:llama_wild":{"minecraft:rideable":{"seat_count":1,"family_types":["player"],"interact_text":"action.interact.mount","seats":{"position":[0,1.17,-0.3]}},"minecraft:tamemount":{"min_temper":0,"max_temper":30,"feed_text":"action.interact.feed","ride_text":"action.interact.mount","feed_items":[{"item":"wheat","temper_mod":3},{"item":"hay_block","temper_mod":6}],"auto_reject_items":[{"item":"horsearmorleather"},{"item":"horsearmoriron"},{"item":"horsearmorgold"},{"item":"horsearmordiamond"},{"item":"saddle"}],"tame_event":{"event":"minecraft:on_tame","target":"self"}}},"minecraft:llama_tamed":{"minecraft:is_tamed":{},"minecraft:rideable":{"seat_count":1,"crouching_skip_interact":true,"family_types":["player"],"interact_text":"action.interact.ride.horse","seats":{"position":[0,1.17,-0.3]}},"minecraft:inventory":{"inventory_size":16,"container_type":"horse","additional_slots_per_strength":3},"minecraft:equippable":{"slots":[{"slot":1,"item":"carpet","accepted_items":["carpet"]}]}},"minecraft:llama_unchested":{"minecraft:interact":{"interactions":[{"play_sounds":"armor.equip_generic","on_interact":{"filters":{"all_of":[{"test":"is_family","subject":"other","value":"player"},{"test":"has_equipment","domain":"hand","subject":"other","value":"chest"}]},"event":"minecraft:on_chest","target":"self"},"use_item":true,"interact_text":"action.interact.attachchest"}]}},"minecraft:llama_chested":{"minecraft:is_chested":{}},"minecraft:llama_angry":{"minecraft:angry":{"duration":4,"broadcast_anger":false,"calm_event":{"event":"minecraft:on_calm","target":"self"}},"minecraft:behavior.ranged_attack":{"priority":2,"attack_radius":64,"charge_shoot_trigger":2,"charge_charged_trigger":1}},"minecraft:llama_angry_wolf":{"minecraft:angry":{"duration":-1,"broadcast_anger":false,"calm_event":{"event":"minecraft:on_calm","target":"self"}},"minecraft:behavior.ranged_attack":{"priority":2,"attack_radius":64,"charge_shoot_trigger":2,"charge_charged_trigger":1}},"minecraft:in_caravan":{"minecraft:damage_sensor":{"triggers":{"cause":"all","deals_damage":true}}}},"components":{"minecraft:is_hidden_when_invisible":{},"minecraft:type_family":{"family":["llama","mob"]},"minecraft:breathable":{"total_supply":15,"suffocate_time":0},"minecraft:nameable":{},"minecraft:mark_variant":{"value":0},"minecraft:health":{"value":{"range_min":15,"range_max":30}},"minecraft:hurt_on_condition":{"damage_conditions":[{"filters":{"test":"in_lava","subject":"self","operator":"==","value":true},"cause":"lava","damage_per_tick":4}]},"minecraft:movement":{"value":0.25},"minecraft:navigation.walk":{"can_path_over_water":true,"avoid_damage_blocks":true},"minecraft:movement.basic":{},"minecraft:jump.static":{},"minecraft:follow_range":{"value":40,"max":40},"minecraft:leashable":{"soft_distance":4,"hard_distance":6,"max_distance":10,"can_be_stolen":true},"minecraft:balloonable":{},"minecraft:healable":{"items":[{"item":"wheat","heal_amount":2},{"item":"hay_block","heal_amount":10}]},"minecraft:shooter":{"def":"minecraft:llama_spit"},"minecraft:despawn":{"despawn_from_distance":{}},"minecraft:behavior.float":{"priority":0},"minecraft:behavior.run_around_like_crazy":{"priority":1,"speed_multiplier":1.2},"minecraft:behavior.follow_caravan":{"priority":3,"speed_multiplier":2.1,"entity_count":10,"entity_types":{"filters":{"test":"is_family","subject":"other","value":"llama"}}},"minecraft:behavior.panic":{"priority":4,"speed_multiplier":1.2},"minecraft:behavior.random_stroll":{"priority":6,"speed_multiplier":0.7},"minecraft:behavior.look_at_player":{"priority":7,"look_distance":6,"probability":0.02},"minecraft:behavior.random_look_around":{"priority":8},"minecraft:behavior.mount_pathing":{"priority":1,"speed_multiplier":1.25,"target_dist":0,"track_target":true},"minecraft:behavior.hurt_by_target":{"priority":1,"hurt_owner":true},"minecraft:conditional_bandwidth_optimization":{},"minecraft:damage_sensor":{"triggers":{"cause":"all","deals_damage":true,"on_damage":{"filters":{"test":"in_caravan","value":false},"event":"minecraft:become_angry"}}},"minecraft:behavior.nearest_attackable_target":{"priority":2,"attack_interval":16,"entity_types":[{"filters":{"all_of":[{"test":"is_family","subject":"other","value":"wolf"},{"test":"has_component","subject":"other","operator":"!=","value":"minecraft:is_tamed"}]},"max_dist":10}],"must_see":false,"must_reach":true},"minecraft:on_target_acquired":{"filters":{"all_of":[{"test":"is_family","subject":"target","value":"wolf"},{"test":"has_component","subject":"target","operator":"!=","value":"minecraft:is_tamed"}]},"event":"minecraft:mad_at_wolf","target":"self"},"minecraft:on_target_escape":{"filters":{"all_of":[{"test":"is_family","subject":"target","value":"wolf"},{"test":"has_component","subject":"target","operator":"!=","value":"minecraft:is_tamed"}]},"event":"minecraft:on_calm","target":"self"},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:collision_box":{"width":0.9,"height":1.87}},"events":{"minecraft:entity_spawned":{"sequence":[{"randomize":[{"weight":90,"trigger":"minecraft:spawn_adult"},{"weight":10,"trigger":"minecraft:spawn_baby"}]}]},"minecraft:entity_born":{"add":{"component_groups":["minecraft:llama_baby"]}},"minecraft:ageable_grow_up":{"remove":{"component_groups":["minecraft:llama_baby"]},"add":{"component_groups":["minecraft:llama_adult","minecraft:llama_wild"]}},"minecraft:on_tame":{"remove":{"component_groups":["minecraft:llama_wild"]},"add":{"component_groups":["minecraft:llama_tamed","minecraft:llama_unchested"]}},"minecraft:join_caravan":{"add":{"component_groups":["minecraft:in_caravan"]}},"minecraft:leave_caravan":{"remove":{"component_groups":["minecraft:in_caravan"]}},"minecraft:mad_at_wolf":{"add":{"component_groups":["minecraft:llama_angry_wolf"]}},"minecraft:become_angry":{"add":{"component_groups":["minecraft:llama_angry"]}},"minecraft:on_calm":{"remove":{"component_groups":["minecraft:llama_angry","minecraft:llama_angry_wolf"]}},"minecraft:on_chest":{"remove":{"component_groups":["minecraft:llama_unchested"]},"add":{"component_groups":["minecraft:llama_chested"]}},"minecraft:add_attributes":{"sequence":[{"randomize":[{"weight":32,"add":{"component_groups":["minecraft:strength_1"]}},{"weight":32,"add":{"component_groups":["minecraft:strength_2"]}},{"weight":32,"add":{"component_groups":["minecraft:strength_3"]}},{"weight":2,"add":{"component_groups":["minecraft:strength_4"]}},{"weight":2,"add":{"component_groups":["minecraft:strength_5"]}}]},{"randomize":[{"weight":25,"add":{"component_groups":["minecraft:llama_creamy"]}},{"weight":25,"add":{"component_groups":["minecraft:llama_white"]}},{"weight":25,"add":{"component_groups":["minecraft:llama_brown"]}},{"weight":25,"add":{"component_groups":["minecraft:llama_gray"]}}]}]},"minecraft:spawn_baby":{"add":{"component_groups":["minecraft:llama_baby"]},"trigger":"minecraft:add_attributes"},"minecraft:spawn_adult":{"add":{"component_groups":["minecraft:llama_adult","minecraft:llama_wild"]},"trigger":"minecraft:add_attributes"}}}},"minecraft:llama_spit":{"format_version":"1.12.0","minecraft:entity":{"description":{"identifier":"minecraft:llama_spit","is_spawnable":false,"is_summonable":false,"is_experimental":false},"components":{"minecraft:collision_box":{"width":0.31,"height":0.31},"minecraft:projectile":{"on_hit":{"impact_damage":{"damage":1,"knockback":false},"remove_on_hit":{}},"power":1.5,"gravity":0.06,"inertia":1,"uncertainty_base":10,"uncertainty_multiplier":4,"anchor":1,"offset":[0,-0.1,0],"reflect_on_hurt":true},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:conditional_bandwidth_optimization":{"default_values":{"max_optimized_distance":80,"max_dropped_ticks":7,"use_motion_prediction_hints":true}}}}},"minecraft:magma_cube":{"format_version":"1.18.20","minecraft:entity":{"description":{"identifier":"minecraft:magma_cube","is_spawnable":true,"is_summonable":true,"is_experimental":false},"component_groups":{"minecraft:slime_large":{"minecraft:variant":{"value":4},"minecraft:collision_box":{"width":2.08,"height":2.08},"minecraft:health":{"value":16,"max":16},"minecraft:movement":{"value":0.75},"minecraft:attack":{"damage":6},"minecraft:loot":{"table":"loot_tables/entities/magma_cube.json"}},"minecraft:slime_medium":{"minecraft:variant":{"value":2},"minecraft:collision_box":{"width":1.04,"height":1.02},"minecraft:health":{"value":4,"max":4},"minecraft:movement":{"value":0.66},"minecraft:attack":{"damage":4},"minecraft:loot":{"table":"loot_tables/entities/magma_cube.json"}},"minecraft:slime_small":{"minecraft:variant":{"value":1},"minecraft:collision_box":{"width":0.52,"height":0.52},"minecraft:health":{"value":1,"max":1},"minecraft:movement":{"value":0.6},"minecraft:attack":{"damage":3}},"minecraft:slime_calm":{"minecraft:movement.jump":{"jump_delay":[2,6]}},"minecraft:slime_aggressive":{"minecraft:movement.jump":{"jump_delay":[0.667,2]}}},"components":{"minecraft:is_hidden_when_invisible":{},"minecraft:experience_reward":{"on_death":"query.last_hit_by_player ? query.variant : 0"},"minecraft:type_family":{"family":["magmacube","monster","mob"]},"minecraft:breathable":{"total_supply":15,"suffocate_time":0,"breathes_lava":true},"minecraft:nameable":{},"minecraft:fire_immune":{},"minecraft:burns_in_daylight":false,"minecraft:damage_sensor":{"triggers":{"cause":"fall","deals_damage":false}},"minecraft:navigation.walk":{"can_path_over_water":true,"avoid_water":true},"minecraft:jump.static":{},"minecraft:movement.jump":{"jump_delay":[2,6]},"minecraft:can_climb":{},"minecraft:on_target_acquired":{"event":"minecraft:become_aggressive","target":"self"},"minecraft:on_target_escape":{"event":"minecraft:become_calm","target":"self"},"minecraft:despawn":{"despawn_from_distance":{}},"minecraft:behavior.slime_float":{"priority":1,"jump_chance_percentage":0.8,"speed_multiplier":1.2},"minecraft:behavior.slime_attack":{"priority":3},"minecraft:behavior.slime_random_direction":{"priority":4,"add_random_time_range":3,"turn_range":360,"min_change_direction_time":2},"minecraft:behavior.slime_keep_on_jumping":{"priority":5,"speed_multiplier":1},"minecraft:behavior.nearest_attackable_target":{"priority":2,"entity_types":[{"filters":{"any_of":[{"test":"is_family","subject":"other","value":"player"},{"test":"is_family","subject":"other","value":"irongolem"}]},"max_dist":16}],"must_see":true},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:conditional_bandwidth_optimization":{}},"events":{"minecraft:entity_spawned":{"randomize":[{"weight":1,"trigger":"spawn_small"},{"weight":1,"trigger":"spawn_medium"},{"weight":1,"trigger":"spawn_large"}]},"spawn_small":{"add":{"component_groups":["minecraft:slime_small","minecraft:slime_calm"]}},"spawn_medium":{"add":{"component_groups":["minecraft:slime_medium","minecraft:slime_calm"]}},"spawn_large":{"add":{"component_groups":["minecraft:slime_large","minecraft:slime_calm"]}},"minecraft:become_calm":{"add":{"component_groups":["minecraft:slime_calm"]}},"minecraft:become_aggressive":{"add":{"component_groups":["minecraft:slime_aggressive"]}}}}},"minecraft:minecart":{"format_version":"1.12.0","minecraft:entity":{"description":{"identifier":"minecraft:minecart","is_spawnable":false,"is_summonable":true,"is_experimental":false},"components":{"minecraft:is_stackable":{},"minecraft:type_family":{"family":["minecart","inanimate"]},"minecraft:collision_box":{"width":0.98,"height":0.7},"minecraft:rail_movement":{},"minecraft:rideable":{"seat_count":1,"interact_text":"action.interact.ride.minecart","pull_in_entities":true,"seats":{"position":[0,-0.2,0]}},"minecraft:rail_sensor":{"eject_on_activate":true},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:conditional_bandwidth_optimization":{"default_values":{"max_optimized_distance":60,"max_dropped_ticks":20,"use_motion_prediction_hints":true},"conditional_values":[{"max_optimized_distance":0,"max_dropped_ticks":0,"conditional_values":[{"test":"is_moving","subject":"self","operator":"==","value":true}]}]}}}},"minecraft:mooshroom":{"format_version":"1.16.0","minecraft:entity":{"description":{"identifier":"minecraft:mooshroom","is_spawnable":true,"is_summonable":true,"is_experimental":false},"component_groups":{"minecraft:mooshroom_become_cow":{"minecraft:transformation":{"into":"minecraft:cow"}},"minecraft:cow_baby":{"minecraft:is_baby":{},"minecraft:scale":{"value":0.5},"minecraft:ageable":{"duration":1200,"feed_items":"wheat","grow_up":{"event":"minecraft:ageable_grow_up","target":"self"}},"minecraft:behavior.follow_parent":{"priority":6,"speed_multiplier":1.1}},"minecraft:cow_adult":{"minecraft:experience_reward":{"on_bred":"Math.Random(1,7)","on_death":"query.last_hit_by_player ? Math.Random(1,3) : 0"},"minecraft:loot":{"table":"loot_tables/entities/mooshroom.json"},"minecraft:behavior.breed":{"priority":3,"speed_multiplier":1},"minecraft:breedable":{"require_tame":false,"breed_items":"wheat","breeds_with":{"mate_type":"minecraft:mooshroom","baby_type":"minecraft:mooshroom","breed_event":{"event":"minecraft:entity_born","target":"baby"}},"deny_parents_variant":{"chance":0.00098,"min_variant":0,"max_variant":1}},"minecraft:interact":{"interactions":[{"on_interact":{"filters":{"all_of":[{"test":"has_equipment","subject":"other","domain":"hand","value":"bowl"},{"test":"is_family","subject":"other","value":"player"},{"test":"has_component","operator":"!=","value":"minecraft:transformation"}]},"event":"minecraft:flowerless","target":"self"},"add_items":{"table":"loot_tables/gameplay/entities/mooshroom_milking.json"},"use_item":true,"play_sounds":"milk_suspiciously","interact_text":"action.interact.moostew"},{"on_interact":{"filters":{"all_of":[{"test":"has_equipment","subject":"other","domain":"hand","value":"red_flower:2"},{"test":"is_family","subject":"other","value":"player"},{"test":"is_variant","subject":"self","operator":"==","value":1},{"test":"is_mark_variant","subject":"self","operator":"!=","value":7}]},"event":"minecraft:ate_allium","target":"self"},"use_item":true,"play_sounds":"eat","particle_on_start":{"particle_type":"smoke","particle_y_offset":0.25,"particle_offset_towards_interactor":true},"interact_text":"action.interact.feed"},{"on_interact":{"filters":{"all_of":[{"test":"has_equipment","subject":"other","domain":"hand","value":"red_flower:3"},{"test":"is_family","subject":"other","value":"player"},{"test":"is_variant","subject":"self","operator":"==","value":1},{"test":"is_mark_variant","subject":"self","operator":"!=","value":3}]},"event":"minecraft:ate_bluet","target":"self"},"use_item":true,"play_sounds":"eat","particle_on_start":{"particle_type":"smoke","particle_y_offset":0.25,"particle_offset_towards_interactor":true},"interact_text":"action.interact.feed"},{"on_interact":{"filters":{"all_of":[{"test":"has_equipment","subject":"other","domain":"hand","value":"red_flower:1"},{"test":"is_family","subject":"other","value":"player"},{"test":"is_variant","subject":"self","operator":"==","value":1},{"test":"is_mark_variant","subject":"self","operator":"!=","value":6}]},"event":"minecraft:ate_orchid","target":"self"},"use_item":true,"play_sounds":"eat","particle_on_start":{"particle_type":"smoke","particle_y_offset":0.25,"particle_offset_towards_interactor":true},"interact_text":"action.interact.feed"},{"on_interact":{"filters":{"all_of":[{"test":"has_equipment","subject":"other","domain":"hand","value":"red_flower:9"},{"test":"is_family","subject":"other","value":"player"},{"test":"is_variant","subject":"self","operator":"==","value":1},{"test":"is_mark_variant","subject":"self","operator":"!=","value":1}]},"event":"minecraft:ate_cornflower","target":"self"},"use_item":true,"play_sounds":"eat","particle_on_start":{"particle_type":"smoke","particle_y_offset":0.25,"particle_offset_towards_interactor":true},"interact_text":"action.interact.feed"},{"on_interact":{"filters":{"all_of":[{"test":"has_equipment","subject":"other","domain":"hand","value":"yellow_flower"},{"test":"is_family","subject":"other","value":"player"},{"test":"is_variant","subject":"self","operator":"==","value":1},{"test":"is_mark_variant","subject":"self","operator":"!=","value":5}]},"event":"minecraft:ate_dandelion","target":"self"},"use_item":true,"play_sounds":"eat","particle_on_start":{"particle_type":"smoke","particle_y_offset":0.25,"particle_offset_towards_interactor":true},"interact_text":"action.interact.feed"},{"on_interact":{"filters":{"all_of":[{"test":"has_equipment","subject":"other","domain":"hand","value":"red_flower:10"},{"test":"is_family","subject":"other","value":"player"},{"test":"is_variant","subject":"self","operator":"==","value":1},{"test":"is_mark_variant","subject":"self","operator":"!=","value":4}]},"event":"minecraft:ate_lily","target":"self"},"use_item":true,"play_sounds":"eat","particle_on_start":{"particle_type":"smoke","particle_y_offset":0.25,"particle_offset_towards_interactor":true},"interact_text":"action.interact.feed"},{"on_interact":{"filters":{"all_of":[{"test":"has_equipment","subject":"other","domain":"hand","value":"red_flower:8"},{"test":"is_family","subject":"other","value":"player"},{"test":"is_variant","subject":"self","operator":"==","value":1},{"test":"is_mark_variant","subject":"self","operator":"!=","value":8}]},"event":"minecraft:ate_daisy","target":"self"},"use_item":true,"play_sounds":"eat","particle_on_start":{"particle_type":"smoke","particle_y_offset":0.25,"particle_offset_towards_interactor":true},"interact_text":"action.interact.feed"},{"on_interact":{"filters":{"all_of":[{"test":"has_equipment","subject":"other","domain":"hand","value":"red_flower:0"},{"test":"is_family","subject":"other","value":"player"},{"test":"is_variant","subject":"self","operator":"==","value":1},{"test":"is_mark_variant","subject":"self","operator":"!=","value":0}]},"event":"minecraft:ate_poppy","target":"self"},"use_item":true,"play_sounds":"eat","particle_on_start":{"particle_type":"smoke","particle_y_offset":0.25,"particle_offset_towards_interactor":true},"interact_text":"action.interact.feed"},{"on_interact":{"filters":{"any_of":[{"test":"has_equipment","subject":"other","domain":"hand","value":"red_flower:4"},{"test":"has_equipment","subject":"other","domain":"hand","value":"red_flower:5"},{"test":"has_equipment","subject":"other","domain":"hand","value":"red_flower:6"},{"test":"has_equipment","subject":"other","domain":"hand","value":"red_flower:7"}],"all_of":[{"test":"is_family","subject":"other","value":"player"},{"test":"is_variant","subject":"self","operator":"==","value":1},{"test":"is_mark_variant","subject":"self","operator":"!=","value":2}]},"event":"minecraft:ate_tulip","target":"self"},"use_item":true,"play_sounds":"eat","particle_on_start":{"particle_type":"smoke","particle_y_offset":0.25,"particle_offset_towards_interactor":true},"interact_text":"action.interact.feed"},{"on_interact":{"filters":{"all_of":[{"test":"has_equipment","subject":"other","domain":"hand","value":"wither_rose"},{"test":"is_family","subject":"other","value":"player"},{"test":"is_variant","subject":"self","operator":"==","value":1},{"test":"is_mark_variant","subject":"self","operator":"!=","value":9}]},"event":"minecraft:ate_rose","target":"self"},"use_item":true,"play_sounds":"eat","particle_on_start":{"particle_type":"smoke","particle_y_offset":0.25,"particle_offset_towards_interactor":true},"interact_text":"action.interact.feed"},{"on_interact":{"filters":{"all_of":[{"test":"has_equipment","subject":"other","domain":"hand","value":"shears"},{"test":"has_component","operator":"!=","value":"minecraft:transformation"},{"test":"is_variant","subject":"self","operator":"==","value":0}]},"event":"become_cow","target":"self"},"use_item":false,"hurt_item":1,"play_sounds":"shear","spawn_items":{"table":"loot_tables/entities/mooshroom_shear.json"},"particle_on_start":{"particle_type":"largeexplode","particle_y_offset":0.25,"particle_offset_towards_interactor":true},"interact_text":"action.interact.mooshear","vibration":"shear"},{"on_interact":{"filters":{"all_of":[{"test":"has_equipment","subject":"other","domain":"hand","value":"shears"},{"test":"has_component","operator":"!=","value":"minecraft:transformation"},{"test":"is_variant","subject":"self","operator":"==","value":1}]},"event":"become_cow","target":"self"},"use_item":false,"hurt_item":1,"play_sounds":"shear","spawn_items":{"table":"loot_tables/entities/brown_mooshroom_shear.json"},"particle_on_start":{"particle_type":"largeexplode","particle_y_offset":0.25,"particle_offset_towards_interactor":true},"interact_text":"action.interact.mooshear","vibration":"shear"},{"on_interact":{"filters":{"all_of":[{"test":"has_equipment","subject":"other","domain":"hand","value":"bucket:0"},{"test":"is_family","subject":"other","value":"player"}]}},"use_item":true,"transform_to_item":"bucket:1","play_sounds":"milk","interact_text":"action.interact.milk"}]}},"minecraft:mooshroom_fed_nothing":{"minecraft:mark_variant":{"value":-1}},"minecraft:mooshroom_brown_fed_poppy":{"minecraft:mark_variant":{"value":0}},"minecraft:mooshroom_brown_fed_cornflower":{"minecraft:mark_variant":{"value":1}},"minecraft:mooshroom_brown_fed_tulips":{"minecraft:mark_variant":{"value":2}},"minecraft:mooshroom_brown_fed_azure_bluet":{"minecraft:mark_variant":{"value":3}},"minecraft:mooshroom_brown_fed_lily_of_the_valley":{"minecraft:mark_variant":{"value":4}},"minecraft:mooshroom_brown_fed_dandelion":{"minecraft:mark_variant":{"value":5}},"minecraft:mooshroom_brown_fed_blue_orchid":{"minecraft:mark_variant":{"value":6}},"minecraft:mooshroom_brown_fed_allium":{"minecraft:mark_variant":{"value":7}},"minecraft:mooshroom_brown_fed_oxeye_daisy":{"minecraft:mark_variant":{"value":8}},"minecraft:mooshroom_brown_fed_wither_rose":{"minecraft:mark_variant":{"value":9}},"minecraft:mooshroom_red":{"minecraft:variant":{"value":0}},"minecraft:mooshroom_brown":{"minecraft:variant":{"value":1}}},"components":{"minecraft:is_hidden_when_invisible":{},"minecraft:type_family":{"family":["mushroomcow","mob"]},"minecraft:mark_variant":{"value":-1},"minecraft:breathable":{"total_supply":15,"suffocate_time":0},"minecraft:collision_box":{"width":0.9,"height":1.3},"minecraft:nameable":{},"minecraft:health":{"value":10,"max":10},"minecraft:hurt_on_condition":{"damage_conditions":[{"filters":{"test":"in_lava","subject":"self","operator":"==","value":true},"cause":"lava","damage_per_tick":4}]},"minecraft:movement":{"value":0.25},"minecraft:navigation.walk":{"can_path_over_water":true,"avoid_water":true,"avoid_damage_blocks":true},"minecraft:movement.basic":{},"minecraft:jump.static":{},"minecraft:can_climb":{},"minecraft:leashable":{"soft_distance":4,"hard_distance":6,"max_distance":10},"minecraft:balloonable":{},"minecraft:rideable":{"seat_count":1,"family_types":["zombie"],"seats":{"position":[0,1.105,0]}},"minecraft:despawn":{"despawn_from_distance":{}},"minecraft:behavior.float":{"priority":0},"minecraft:behavior.panic":{"priority":1,"speed_multiplier":1.25},"minecraft:behavior.mount_pathing":{"priority":2,"speed_multiplier":1.5,"target_dist":0,"track_target":true},"minecraft:behavior.breed":{"priority":3,"speed_multiplier":1},"minecraft:behavior.tempt":{"priority":4,"speed_multiplier":1.25,"items":["wheat"]},"minecraft:behavior.follow_parent":{"priority":5,"speed_multiplier":1.1},"minecraft:behavior.random_stroll":{"priority":6,"speed_multiplier":0.8},"minecraft:behavior.look_at_player":{"priority":7,"look_distance":6,"probability":0.02},"minecraft:behavior.random_look_around":{"priority":9},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:conditional_bandwidth_optimization":{},"minecraft:damage_sensor":{"triggers":[{"on_damage":{"filters":{"all_of":[{"test":"is_family","subject":"other","value":"lightning"},{"test":"is_variant","subject":"self","operator":"==","value":0}]},"event":"minecraft:become_brown"},"deals_damage":false,"on_damage_sound_event":"convert_mooshroom"},{"on_damage":{"filters":{"all_of":[{"test":"is_family","subject":"other","value":"lightning"},{"test":"is_variant","subject":"self","operator":"==","value":1}]},"event":"minecraft:become_red"},"deals_damage":false,"on_damage_sound_event":"convert_mooshroom"}]}},"events":{"become_cow":{"remove":{},"add":{"component_groups":["minecraft:mooshroom_become_cow"]}},"minecraft:entity_spawned":{"randomize":[{"weight":95,"remove":{},"add":{"component_groups":["minecraft:cow_adult","minecraft:mooshroom_red"]}},{"weight":5,"remove":{},"add":{"component_groups":["minecraft:cow_baby","minecraft:mooshroom_red"]}}]},"minecraft:entity_born":{"remove":{},"add":{"component_groups":["minecraft:cow_baby"]}},"minecraft:ageable_grow_up":{"remove":{"component_groups":["minecraft:cow_baby"]},"add":{"component_groups":["minecraft:cow_adult"]}},"minecraft:flowerless":{"add":{"component_groups":["minecraft:mooshroom_fed_nothing"]}},"minecraft:ate_allium":{"add":{"component_groups":["minecraft:mooshroom_brown_fed_allium"]}},"minecraft:ate_cornflower":{"add":{"component_groups":["minecraft:mooshroom_brown_fed_cornflower"]}},"minecraft:ate_lily":{"add":{"component_groups":["minecraft:mooshroom_brown_fed_lily_of_the_valley"]}},"minecraft:ate_rose":{"add":{"component_groups":["minecraft:mooshroom_brown_fed_wither_rose"]}},"minecraft:ate_orchid":{"add":{"component_groups":["minecraft:mooshroom_brown_fed_blue_orchid"]}},"minecraft:ate_daisy":{"add":{"component_groups":["minecraft:mooshroom_brown_fed_oxeye_daisy"]}},"minecraft:ate_tulip":{"add":{"component_groups":["minecraft:mooshroom_brown_fed_tulips"]}},"minecraft:ate_bluet":{"add":{"component_groups":["minecraft:mooshroom_brown_fed_azure_bluet"]}},"minecraft:ate_poppy":{"add":{"component_groups":["minecraft:mooshroom_brown_fed_poppy"]}},"minecraft:ate_dandelion":{"add":{"component_groups":["minecraft:mooshroom_brown_fed_dandelion"]}},"minecraft:become_red":{"remove":{"component_groups":["minecraft:mooshroom_brown"]},"add":{"component_groups":["minecraft:mooshroom_red","minecraft:mooshroom_fed_nothing"]}},"minecraft:become_brown":{"remove":{"component_groups":["minecraft:mooshroom_red"]},"add":{"component_groups":["minecraft:mooshroom_brown","minecraft:mooshroom_fed_nothing"]}},"minecraft:become_brown_adult":{"remove":{"component_groups":["minecraft:mooshroom_red"]},"add":{"component_groups":["minecraft:mooshroom_brown","minecraft:cow_adult","minecraft:mooshroom_fed_nothing"]}},"minecraft:become_red_adult":{"remove":{"component_groups":["minecraft:mooshroom_brown","minecraft:cow_baby"]},"add":{"component_groups":["minecraft:mooshroom_red","minecraft:cow_adult"]}}}}},"minecraft:mule":{"format_version":"1.16.0","minecraft:entity":{"description":{"identifier":"minecraft:mule","is_spawnable":true,"is_summonable":true,"is_experimental":false},"component_groups":{"minecraft:mule_baby":{"minecraft:is_baby":{},"minecraft:scale_by_age":{"start_scale":0.5,"end_scale":1},"minecraft:ageable":{"duration":1200,"feed_items":[{"item":"wheat","growth":0.016667},{"item":"sugar","growth":0.025},{"item":"hay_block","growth":0.15},{"item":"apple","growth":0.05},{"item":"golden_carrot","growth":0.05},{"item":"golden_apple","growth":0.2},{"item":"appleEnchanted","growth":0.2}],"grow_up":{"event":"minecraft:ageable_grow_up","target":"self"}},"minecraft:behavior.follow_parent":{"priority":4,"speed_multiplier":1}},"minecraft:mule_adult":{"minecraft:experience_reward":{"on_death":"query.last_hit_by_player ? Math.Random(1,3) : 0"},"minecraft:loot":{"table":"loot_tables/entities/horse.json"},"minecraft:behavior.run_around_like_crazy":{"priority":1,"speed_multiplier":1.2}},"minecraft:mule_wild":{"minecraft:rideable":{"seat_count":1,"family_types":["player","zombie"],"interact_text":"action.interact.mount","seats":{"position":[0,0.975,-0.2]}},"minecraft:behavior.mount_pathing":{"priority":2,"speed_multiplier":1.5,"target_dist":0,"track_target":true},"minecraft:tamemount":{"min_temper":0,"max_temper":100,"feed_text":"action.interact.feed","ride_text":"action.interact.mount","feed_items":[{"item":"wheat","temper_mod":3},{"item":"sugar","temper_mod":3},{"item":"apple","temper_mod":3},{"item":"golden_carrot","temper_mod":5},{"item":"golden_apple","temper_mod":10},{"item":"appleEnchanted","temper_mod":10}],"auto_reject_items":[{"item":"horsearmorleather"},{"item":"horsearmoriron"},{"item":"horsearmorgold"},{"item":"horsearmordiamond"},{"item":"saddle"}],"tame_event":{"event":"minecraft:on_tame","target":"self"}}},"minecraft:mule_tamed":{"minecraft:is_tamed":{},"minecraft:equippable":{"slots":[{"slot":0,"item":"saddle","accepted_items":["saddle"],"on_equip":{"event":"minecraft:mule_saddled"},"on_unequip":{"event":"minecraft:mule_unsaddled"}}]},"minecraft:rideable":{"seat_count":1,"crouching_skip_interact":true,"family_types":["player"],"interact_text":"action.interact.ride.horse","seats":{"position":[0,0.975,-0.2]}},"minecraft:inventory":{"inventory_size":16,"container_type":"horse"},"minecraft:behavior.tempt":{"priority":5,"speed_multiplier":1.2,"items":["apple","carrot","golden_apple","appleEnchanted","golden_carrot","carrotOnAStick","hay_block","sugar","bread","wheat"]}},"minecraft:mule_unchested":{"minecraft:interact":{"interactions":[{"play_sounds":"armor.equip_generic","on_interact":{"filters":{"all_of":[{"test":"has_equipment","subject":"other","domain":"hand","value":"chest"},{"test":"is_family","subject":"other","value":"player"}]},"event":"minecraft:on_chest","target":"self"},"use_item":true,"interact_text":"action.interact.attachchest"}]}},"minecraft:mule_chested":{"minecraft:is_chested":{}},"minecraft:mule_saddled":{"minecraft:is_saddled":{},"minecraft:input_ground_controlled":{},"minecraft:can_power_jump":{},"minecraft:behavior.player_ride_tamed":{}}},"components":{"minecraft:is_hidden_when_invisible":{},"minecraft:type_family":{"family":["mule","mob"]},"minecraft:breathable":{"total_supply":15,"suffocate_time":0},"minecraft:collision_box":{"width":1.4,"height":1.6},"minecraft:health":{"value":{"range_min":15,"range_max":30}},"minecraft:hurt_on_condition":{"damage_conditions":[{"filters":{"test":"in_lava","subject":"self","operator":"==","value":true},"cause":"lava","damage_per_tick":4}]},"minecraft:movement":{"value":0.175},"minecraft:navigation.walk":{"can_path_over_water":true,"avoid_water":true,"avoid_damage_blocks":true},"minecraft:movement.basic":{},"minecraft:jump.static":{},"minecraft:nameable":{},"minecraft:horse.jump_strength":{"value":0.5},"minecraft:leashable":{"soft_distance":4,"hard_distance":6,"max_distance":10},"minecraft:balloonable":{},"minecraft:healable":{"items":[{"item":"wheat","heal_amount":2},{"item":"sugar","heal_amount":1},{"item":"hay_block","heal_amount":20},{"item":"apple","heal_amount":3},{"item":"golden_carrot","heal_amount":4},{"item":"golden_apple","heal_amount":10},{"item":"appleEnchanted","heal_amount":10}]},"minecraft:despawn":{"despawn_from_distance":{}},"minecraft:behavior.float":{"priority":0},"minecraft:behavior.panic":{"priority":1,"speed_multiplier":1.2},"minecraft:behavior.random_stroll":{"priority":6,"speed_multiplier":0.7},"minecraft:behavior.look_at_player":{"priority":7,"look_distance":6,"probability":0.02},"minecraft:behavior.random_look_around":{"priority":8},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:conditional_bandwidth_optimization":{}},"events":{"minecraft:entity_spawned":{"randomize":[{"weight":80,"add":{"component_groups":["minecraft:mule_adult","minecraft:mule_wild"]}},{"weight":20,"add":{"component_groups":["minecraft:mule_baby"]}}]},"minecraft:entity_born":{"add":{"component_groups":["minecraft:mule_baby"]}},"minecraft:on_tame":{"remove":{"component_groups":["minecraft:mule_wild"]},"add":{"component_groups":["minecraft:mule_tamed","minecraft:mule_unchested"]}},"minecraft:ageable_grow_up":{"remove":{"component_groups":["minecraft:mule_baby"]},"add":{"component_groups":["minecraft:mule_adult","minecraft:mule_wild"]}},"minecraft:on_chest":{"remove":{"component_groups":["minecraft:mule_unchested"]},"add":{"component_groups":["minecraft:mule_chested"]}},"minecraft:mule_saddled":{"add":{"component_groups":["minecraft:mule_saddled"]}},"minecraft:mule_unsaddled":{"remove":{"component_groups":["minecraft:mule_saddled"]}}}}},"minecraft:npc":{"format_version":"1.19.30","minecraft:entity":{"description":{"identifier":"minecraft:npc","is_spawnable":true,"is_summonable":true,"is_experimental":false},"components":{"minecraft:damage_sensor":{"triggers":{"cause":"all","deals_damage":false}},"minecraft:type_family":{"family":["npc","mob"]},"minecraft:fire_immune":true,"minecraft:movement":{"value":0.5},"minecraft:loot":{"table":"loot_tables/empty.json"},"minecraft:collision_box":{"width":0.6,"height":2.1},"minecraft:behavior.look_at_player":{"priority":0,"look_distance":6,"probability":0.02},"minecraft:persistent":{},"minecraft:npc":{"npc_data":{"portrait_offsets":{"translate":[-7,50,0],"scale":[1.75,1.75,1.75]},"picker_offsets":{"translate":[0,20,0],"scale":[1.7,1.7,1.7]},"skin_list":[{"variant":0},{"variant":1},{"variant":2},{"variant":3},{"variant":4},{"variant":5},{"variant":6},{"variant":7},{"variant":8},{"variant":9},{"variant":10},{"variant":11},{"variant":12},{"variant":13},{"variant":14},{"variant":15},{"variant":16},{"variant":17},{"variant":18},{"variant":19},{"variant":25},{"variant":26},{"variant":27},{"variant":28},{"variant":29},{"variant":30},{"variant":31},{"variant":32},{"variant":33},{"variant":34},{"variant":20},{"variant":21},{"variant":22},{"variant":23},{"variant":24},{"variant":35},{"variant":36},{"variant":37},{"variant":38},{"variant":39},{"variant":40},{"variant":41},{"variant":42},{"variant":43},{"variant":44},{"variant":50},{"variant":51},{"variant":52},{"variant":53},{"variant":54},{"variant":45},{"variant":46},{"variant":47},{"variant":48},{"variant":49},{"variant":55},{"variant":56},{"variant":57},{"variant":58},{"variant":59}]}},"minecraft:nameable":{"always_show":false,"allow_name_tag_renaming":false},"minecraft:physics":{}}}},"minecraft:ocelot":{"format_version":"1.18.20","minecraft:entity":{"description":{"identifier":"minecraft:ocelot","is_spawnable":true,"is_summonable":true,"is_experimental":false},"component_groups":{"minecraft:ocelot_baby":{"minecraft:is_baby":{},"minecraft:scale":{"value":0.5},"minecraft:ageable":{"duration":1200,"feed_items":["fish","salmon"],"grow_up":{"event":"minecraft:ageable_grow_up","target":"self"}}},"minecraft:ocelot_adult":{"minecraft:experience_reward":{"on_bred":"Math.Random(1,7)","on_death":"query.last_hit_by_player ? Math.Random(1,3) : 0"},"minecraft:loot":{"table":"loot_tables/entities/ocelot.json"},"minecraft:scale":{"value":1}},"minecraft:wild_child_ocelot_spawn":{"minecraft:spawn_entity":{"entities":{"filters":[{"test":"random_chance","value":7}],"min_wait_time":0,"max_wait_time":0,"num_to_spawn":2,"single_use":true,"spawn_entity":"minecraft:ocelot","spawn_event":"minecraft:entity_born","spawn_method":"born","spawn_sound":""}}},"minecraft:ocelot_wild":{"minecraft:trusting":{"probability":0.33,"trust_items":["fish","salmon"],"trust_event":{"event":"minecraft:on_trust","target":"self"}},"minecraft:behavior.tempt":{"priority":4,"speed_multiplier":0.5,"within_radius":16,"can_get_scared":true,"items":["fish","salmon"]},"minecraft:behavior.avoid_mob_type":{"priority":5,"entity_types":[{"filters":{"test":"is_family","subject":"other","value":"player"},"max_dist":10,"walk_speed_multiplier":0.8,"sprint_speed_multiplier":1.33}]},"minecraft:rideable":{"seat_count":1,"family_types":["zombie"],"seats":{"position":[0,0.35,0]}}},"minecraft:ocelot_trusting":{"minecraft:behavior.breed":{"priority":3,"speed_multiplier":1},"minecraft:behavior.tempt":{"priority":4,"speed_multiplier":0.5,"within_radius":16,"items":["fish","salmon"]},"minecraft:breedable":{"require_tame":false,"breeds_with":{"mate_type":"minecraft:ocelot","baby_type":"minecraft:ocelot","breed_event":{"event":"minecraft:entity_born","target":"baby"}},"breed_items":["fish","salmon"]}},"minecraft:ocelot_tame":{"minecraft:is_tamed":{},"minecraft:health":{"value":20,"max":20},"minecraft:sittable":{},"minecraft:behavior.follow_owner":{"priority":4,"speed_multiplier":1,"start_distance":10,"stop_distance":2},"minecraft:behavior.stay_while_sitting":{"priority":3},"minecraft:behavior.ocelot_sit_on_block":{"priority":6,"speed_multiplier":1}}},"components":{"minecraft:is_hidden_when_invisible":{},"minecraft:health":{"value":10,"max":10},"minecraft:hurt_on_condition":{"damage_conditions":[{"filters":{"test":"in_lava","subject":"self","operator":"==","value":true},"cause":"lava","damage_per_tick":4}]},"minecraft:attack_damage":{"value":3},"minecraft:nameable":{},"minecraft:type_family":{"family":["ocelot","mob"]},"minecraft:breathable":{"total_supply":15,"suffocate_time":0},"minecraft:collision_box":{"width":0.6,"height":0.7},"minecraft:movement":{"value":0.3},"minecraft:navigation.walk":{"can_path_over_water":true,"avoid_water":true,"avoid_damage_blocks":true},"minecraft:movement.basic":{},"minecraft:jump.static":{},"minecraft:can_climb":{},"minecraft:damage_sensor":{"triggers":{"cause":"fall","deals_damage":false}},"minecraft:despawn":{"despawn_from_distance":{}},"minecraft:behavior.float":{"priority":0},"minecraft:behavior.panic":{"priority":1,"speed_multiplier":1.25},"minecraft:behavior.nearest_attackable_target":{"priority":1,"reselect_targets":true,"entity_types":[{"filters":{"test":"is_family","subject":"other","value":"chicken"},"max_dist":8},{"filters":{"all_of":[{"test":"is_family","subject":"other","value":"baby_turtle"},{"test":"in_water","subject":"other","operator":"!=","value":true}]},"max_dist":8}]},"minecraft:behavior.mount_pathing":{"priority":1,"speed_multiplier":1.25,"target_dist":0,"track_target":true},"minecraft:behavior.leap_at_target":{"priority":3,"target_dist":0.3},"minecraft:behavior.ocelotattack":{"priority":4,"cooldown_time":1,"x_max_rotation":30,"y_max_head_rotation":30,"max_distance":15,"max_sneak_range":15,"max_sprint_range":4,"reach_multiplier":2,"sneak_speed_multiplier":0.6,"sprint_speed_multiplier":1.33,"walk_speed_multiplier":0.8},"minecraft:behavior.random_stroll":{"priority":8,"speed_multiplier":0.8},"minecraft:behavior.look_at_player":{"priority":9},"minecraft:leashable":{"soft_distance":4,"hard_distance":6,"max_distance":10,"on_leash":{"event":"minecraft:on_leash","target":"self"},"on_unleash":{"event":"minecraft:on_unleash","target":"self"}},"minecraft:balloonable":{"mass":0.7},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:conditional_bandwidth_optimization":{}},"events":{"minecraft:entity_spawned":{"sequence":[{"randomize":[{"weight":3,"remove":{},"add":{"component_groups":["minecraft:ocelot_adult","minecraft:ocelot_wild","minecraft:wild_child_ocelot_spawn"]}},{"weight":1,"remove":{},"add":{"component_groups":["minecraft:ocelot_baby","minecraft:ocelot_wild"]}}]}]},"minecraft:entity_born":{"sequence":[{"remove":{},"add":{"component_groups":["minecraft:ocelot_baby","minecraft:ocelot_trusting"]}}]},"minecraft:entity_born_wild":{"remove":{"component_groups":["minecraft:ocelot_trusting"]},"add":{"component_groups":["minecraft:ocelot_baby","minecraft:ocelot_wild"]}},"minecraft:ageable_grow_up":{"remove":{"component_groups":["minecraft:ocelot_baby"]},"add":{"component_groups":["minecraft:ocelot_adult"]}},"minecraft:on_trust":{"sequence":[{"remove":{"component_groups":["minecraft:ocelot_wild"]}},{"add":{"component_groups":["minecraft:ocelot_trusting"]}}]},"minecraft:on_leash":{"add":{"component_groups":["minecraft:ocelot_leashed"]}},"minecraft:on_unleash":{"remove":{"component_groups":["minecraft:ocelot_leashed"]}}}}},"minecraft:panda":{"format_version":"1.18.10","minecraft:entity":{"description":{"identifier":"minecraft:panda","is_spawnable":true,"is_summonable":true,"is_experimental":false},"component_groups":{"minecraft:panda_baby":{"minecraft:is_baby":{},"minecraft:scale":{"value":0.4},"minecraft:ageable":{"duration":1200,"feed_items":"bamboo","grow_up":{"event":"minecraft:ageable_grow_up","target":"self"}},"minecraft:behavior.roll":{"priority":12,"probability":0.0016},"minecraft:behavior.follow_parent":{"priority":13,"speed_multiplier":1.1},"minecraft:on_target_acquired":{"event":"minecraft:on_scared","target":"self"},"minecraft:behavior.sneeze":{"priority":7,"probability":0.0001666,"cooldown_time":1,"within_radius":10,"entity_types":[{"filters":{"all_of":[{"test":"has_component","subject":"other","operator":"!=","value":"minecraft:is_baby"},{"test":"is_family","subject":"other","value":"panda"},{"test":"in_water","subject":"other","operator":"!=","value":true},{"test":"on_ground","operator":"==","value":true}]},"max_dist":10}],"drop_item_chance":0.001,"loot_table":"loot_tables/entities/panda_sneeze.json","prepare_sound":"presneeze","prepare_time":1,"sound":"sneeze"}},"minecraft:panda_adult":{"minecraft:experience_reward":{"on_bred":"Math.Random(1,7)","on_death":"query.last_hit_by_player ? Math.Random(1,3) : 0"},"minecraft:loot":{"table":"loot_tables/entities/panda.json"},"minecraft:behavior.breed":{"priority":3,"speed_multiplier":1},"minecraft:breedable":{"require_tame":false,"blend_attributes":false,"environment_requirements":{"blocks":"bamboo","count":8,"radius":5},"breed_items":"bamboo","breeds_with":{"mate_type":"minecraft:panda","baby_type":"minecraft:panda","breed_event":{"event":"minecraft:entity_born","target":"baby"}},"mutation_factor":{"variant":1}},"minecraft:on_target_acquired":{"event":"minecraft:become_angry","target":"self"},"minecraft:on_target_escape":{"event":"minecraft:on_calm","target":"self"},"minecraft:attack":{"damage":2},"minecraft:behavior.melee_attack":{"priority":2,"attack_once":true,"track_target":true,"reach_multiplier":1}},"minecraft:panda_lazy":{"minecraft:variant":{"value":1},"minecraft:behavior.lay_down":{"priority":5,"interval":400,"random_stop_interval":2000},"minecraft:behavior.random_sitting":{"priority":6,"start_chance":0.02,"stop_chance":0.2,"cooldown":25,"min_sit_time":15},"minecraft:behavior.snacking":{"priority":3,"snacking_cooldown":17.5,"snacking_cooldown_min":10,"snacking_stop_chance":0.0011,"items":["bamboo","cake"]},"minecraft:behavior.panic":{"priority":1,"speed_multiplier":2.5},"minecraft:movement":{"value":0.07}},"minecraft:panda_worried":{"minecraft:variant":{"value":2},"minecraft:behavior.scared":{"priority":1,"sound_interval":20},"minecraft:behavior.avoid_mob_type":{"priority":5,"max_dist":16,"max_flee":20,"entity_types":[{"filters":{"test":"is_family","operator":"!=","subject":"other","value":"panda"},"max_dist":16,"sprint_speed_multiplier":1.5}]}},"minecraft:panda_playful":{"minecraft:variant":{"value":3},"minecraft:behavior.roll":{"priority":12,"probability":0.013}},"minecraft:panda_brown":{"minecraft:variant":{"value":4}},"minecraft:panda_weak":{"minecraft:variant":{"value":5},"minecraft:health":{"value":10,"max":10}},"minecraft:panda_sneezing":{"minecraft:behavior.sneeze":{"priority":7,"probability":0.002,"cooldown_time":1,"within_radius":10,"entity_types":[{"filters":{"all_of":[{"test":"has_component","subject":"other","operator":"!=","value":"minecraft:is_baby"},{"test":"is_family","subject":"other","value":"panda"},{"test":"in_water","subject":"other","operator":"!=","value":true},{"test":"on_ground","operator":"==","value":true}]},"max_dist":10}],"drop_item_chance":0.001,"loot_table":"loot_tables/entities/panda_sneeze.json","prepare_sound":"presneeze","prepare_time":1,"sound":"sneeze"}},"minecraft:panda_aggressive":{"minecraft:type_family":{"family":["panda","panda_aggressive","mob"]},"minecraft:variant":{"value":6},"minecraft:attack":{"damage":6},"minecraft:behavior.melee_attack":{"priority":2,"track_target":true,"reach_multiplier":1},"minecraft:on_friendly_anger":{"event":"minecraft:on_anger","target":"self"},"minecraft:behavior.panic":{"priority":1,"speed_multiplier":1.25,"ignore_mob_damage":true}},"minecraft:panda_angry":{"minecraft:angry":{"duration":500,"broadcast_anger":true,"broadcast_range":41,"broadcast_filters":{"test":"is_family","operator":"==","value":"panda_aggressive"},"calm_event":{"event":"minecraft:on_calm","target":"self"}},"minecraft:on_target_acquired":{}},"minecraft:baby_scared":{"minecraft:angry":{"duration":1,"broadcast_anger":true,"broadcast_range":41,"broadcast_filters":{"test":"is_family","operator":"==","value":"panda_aggressive"},"calm_event":{"event":"minecraft:baby_on_calm","target":"self"}}}},"components":{"minecraft:is_hidden_when_invisible":{},"minecraft:type_family":{"family":["panda"]},"minecraft:breathable":{"total_supply":15,"suffocate_time":0},"minecraft:navigation.walk":{"can_float":true,"avoid_water":true,"avoid_damage_blocks":true},"minecraft:movement.basic":{},"minecraft:scale":{"value":1},"minecraft:behavior.hurt_by_target":{"priority":1},"minecraft:giveable":{"triggers":{"cooldown":3,"items":["bamboo","cake"],"on_give":{"event":"minecraft:on_calm","target":"self"}}},"minecraft:inventory":{"inventory_size":1,"private":true},"minecraft:jump.static":{},"minecraft:can_climb":{},"minecraft:collision_box":{"width":1.7,"height":1.5},"minecraft:nameable":{},"minecraft:health":{"value":20,"max":20},"minecraft:hurt_on_condition":{"damage_conditions":[{"filters":{"test":"in_lava","subject":"self","operator":"==","value":true},"cause":"lava","damage_per_tick":4}]},"minecraft:movement":{"value":0.15},"minecraft:water_movement":{"drag_factor":0.98},"minecraft:despawn":{"despawn_from_distance":{}},"minecraft:behavior.float":{"priority":0},"minecraft:behavior.random_sitting":{"priority":5,"start_chance":0.01,"stop_chance":0.3,"cooldown":30,"min_sit_time":10},"minecraft:behavior.snacking":{"priority":2,"snacking_cooldown":22.5,"snacking_cooldown_min":20,"snacking_stop_chance":0.001334,"items":["bamboo","cake"]},"minecraft:behavior.mount_pathing":{"priority":5,"speed_multiplier":1.5,"target_dist":0,"track_target":true},"minecraft:behavior.breed":{"priority":3,"speed_multiplier":1},"minecraft:behavior.tempt":{"priority":4,"speed_multiplier":1.25,"items":["bamboo"]},"minecraft:behavior.random_stroll":{"priority":14,"speed_multiplier":0.8},"minecraft:behavior.look_at_player":{"priority":8,"look_distance":6,"probability":0.02},"minecraft:behavior.random_look_around":{"priority":9},"minecraft:behavior.panic":{"priority":1,"speed_multiplier":1.25},"minecraft:balloonable":{},"minecraft:rideable":{"seat_count":1,"family_types":["zombie"],"seats":{"position":[0,1.105,0]}},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:variant":{"value":0},"minecraft:conditional_bandwidth_optimization":{},"minecraft:genetics":{"mutation_rate":0.03125,"genes":[{"name":"panda_variant","allele_range":{"range_min":0,"range_max":15},"genetic_variants":[{"main_allele":0,"birth_event":{"event":"minecraft:panda_lazy","target":"self"}},{"main_allele":1,"birth_event":{"event":"minecraft:panda_worried","target":"self"}},{"main_allele":2,"birth_event":{"event":"minecraft:panda_playful","target":"self"}},{"main_allele":3,"birth_event":{"event":"minecraft:panda_aggressive","target":"self"}},{"both_allele":{"range_min":4,"range_max":7},"birth_event":{"event":"minecraft:panda_weak","target":"self"}},{"both_allele":{"range_min":8,"range_max":9},"birth_event":{"event":"minecraft:panda_brown","target":"self"}}]}]}},"events":{"minecraft:entity_spawned":{"randomize":[{"weight":95,"add":{"component_groups":["minecraft:panda_adult"]}},{"weight":5,"add":{"component_groups":["minecraft:panda_baby"]}}]},"minecraft:entity_born":{"add":{"component_groups":["minecraft:panda_baby"]}},"minecraft:ageable_grow_up":{"sequence":[{"remove":{"component_groups":["minecraft:panda_baby"]}},{"add":{"component_groups":["minecraft:panda_adult"]}},{"filters":{"test":"is_variant","subject":"self","operator":"==","value":3},"add":{"component_groups":["minecraft:panda_playful"]}},{"filters":{"test":"is_variant","subject":"self","operator":"==","value":6},"add":{"component_groups":["minecraft:panda_aggressive"]}}]},"minecraft:panda_lazy":{"add":{"component_groups":["minecraft:panda_lazy"]}},"minecraft:panda_worried":{"add":{"component_groups":["minecraft:panda_worried"]}},"minecraft:panda_playful":{"add":{"component_groups":["minecraft:panda_playful"]}},"minecraft:panda_brown":{"add":{"component_groups":["minecraft:panda_brown"]}},"minecraft:panda_weak":{"sequence":[{"add":{"component_groups":["minecraft:panda_weak"]}},{"filters":{"test":"has_component","operator":"==","value":"minecraft:is_baby"},"add":{"component_groups":["minecraft:panda_sneezing"]}}]},"minecraft:panda_aggressive":{"add":{"component_groups":["minecraft:panda_aggressive"]}},"minecraft:on_scared":{"add":{"component_groups":["minecraft:baby_scared"]}},"minecraft:baby_on_calm":{"remove":{"component_groups":["minecraft:baby_scared"]}},"minecraft:become_angry":{"add":{"component_groups":["minecraft:panda_angry"]}},"minecraft:on_calm":{"remove":{"component_groups":["minecraft:panda_angry"]}}}}},"minecraft:parrot":{"format_version":"1.19.0","minecraft:entity":{"description":{"identifier":"minecraft:parrot","is_spawnable":true,"is_summonable":true,"is_experimental":false},"component_groups":{"minecraft:parrot_red":{"minecraft:variant":{"value":0}},"minecraft:parrot_blue":{"minecraft:variant":{"value":1}},"minecraft:parrot_green":{"minecraft:variant":{"value":2}},"minecraft:parrot_cyan":{"minecraft:variant":{"value":3}},"minecraft:parrot_silver":{"minecraft:variant":{"value":4}},"minecraft:parrot_adult":{"minecraft:experience_reward":{"on_death":"query.last_hit_by_player ? Math.Random(1,3) : 0"},"minecraft:loot":{"table":"loot_tables/entities/parrot.json"}},"minecraft:parrot_wild":{"minecraft:type_family":{"family":["parrot_wild","mob"]},"minecraft:tameable":{"probability":0.33,"tame_items":["wheat_seeds","pumpkin_seeds","melon_seeds","beetroot_seeds"],"tame_event":{"event":"minecraft:on_tame","target":"self"}},"minecraft:behavior.random_fly":{"priority":2,"xz_dist":15,"y_dist":1,"y_offset":0,"speed_multiplier":1,"can_land_on_trees":true,"avoid_damage_blocks":true},"minecraft:behavior.follow_mob":{"priority":3,"speed_multiplier":1,"stop_distance":3,"search_range":20}},"minecraft:parrot_tame":{"minecraft:type_family":{"family":["parrot_tame","mob"]},"minecraft:is_tamed":{},"minecraft:behavior.follow_owner":{"priority":2,"speed_multiplier":1,"start_distance":5,"stop_distance":1},"minecraft:sittable":{},"minecraft:behavior.stay_while_sitting":{"priority":1},"minecraft:behavior.find_mount":{"priority":3,"within_radius":16,"avoid_water":true,"start_delay":100,"target_needed":false,"mount_distance":2}},"minecraft:parrot_not_riding_player":{"minecraft:entity_sensor":{"sensor_range":2,"relative_range":false,"event_filters":{"all_of":[{"test":"is_riding","subject":"self","operator":"equals","value":true},{"test":"has_component","subject":"self","operator":"equals","value":"minecraft:behavior.look_at_player"}]},"event":"minecraft:on_riding_player"},"minecraft:behavior.look_at_player":{"priority":1,"look_distance":8}},"minecraft:parrot_riding_player":{"minecraft:entity_sensor":{"sensor_range":2,"relative_range":false,"event_filters":{"all_of":[{"test":"is_riding","subject":"self","operator":"equals","value":false},{"test":"has_component","subject":"self","operator":"not","value":"minecraft:behavior.look_at_player"}]},"event":"minecraft:on_not_riding_player"}}},"components":{"minecraft:is_hidden_when_invisible":{},"minecraft:breathable":{"total_supply":15,"suffocate_time":0},"minecraft:collision_box":{"width":0.5,"height":1},"minecraft:nameable":{},"minecraft:health":{"value":6,"max":6},"minecraft:hurt_on_condition":{"damage_conditions":[{"filters":{"test":"in_lava","subject":"self","operator":"==","value":true},"cause":"lava","damage_per_tick":4}]},"minecraft:movement":{"value":0.4},"minecraft:damage_sensor":{"triggers":{"cause":"fall","deals_damage":false}},"minecraft:jump.static":{},"minecraft:can_fly":{},"minecraft:navigation.fly":{"can_path_over_water":true,"can_path_from_air":true},"minecraft:movement.fly":{},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:despawn":{"despawn_from_distance":{}},"minecraft:behavior.float":{"priority":0},"minecraft:behavior.panic":{"priority":0,"speed_multiplier":1.25},"minecraft:conditional_bandwidth_optimization":{},"minecraft:game_event_movement_tracking":{"emit_flap":true},"minecraft:healable":{"force_use":true,"filters":{"test":"is_riding","operator":"!=","value":true},"items":[{"item":"cookie","heal_amount":0,"effects":[{"name":"fatal_poison","chance":1,"duration":1000,"amplifier":0}]}]},"minecraft:leashable":{"soft_distance":4,"hard_distance":6,"max_distance":10},"minecraft:balloonable":{}},"events":{"minecraft:entity_spawned":{"randomize":[{"weight":20,"add":{"component_groups":["minecraft:parrot_red","minecraft:parrot_adult","minecraft:parrot_wild","minecraft:parrot_not_riding_player"]}},{"weight":20,"add":{"component_groups":["minecraft:parrot_blue","minecraft:parrot_adult","minecraft:parrot_wild","minecraft:parrot_not_riding_player"]}},{"weight":20,"add":{"component_groups":["minecraft:parrot_green","minecraft:parrot_adult","minecraft:parrot_wild","minecraft:parrot_not_riding_player"]}},{"weight":20,"add":{"component_groups":["minecraft:parrot_cyan","minecraft:parrot_adult","minecraft:parrot_wild","minecraft:parrot_not_riding_player"]}},{"weight":20,"add":{"component_groups":["minecraft:parrot_silver","minecraft:parrot_adult","minecraft:parrot_wild","minecraft:parrot_not_riding_player"]}}]},"minecraft:on_tame":{"remove":{"component_groups":["minecraft:parrot_wild"]},"add":{"component_groups":["minecraft:parrot_tame"]}},"minecraft:on_riding_player":{"remove":{"component_groups":["minecraft:parrot_not_riding_player"]},"add":{"component_groups":["minecraft:parrot_riding_player"]}},"minecraft:on_not_riding_player":{"remove":{"component_groups":["minecraft:parrot_riding_player"]},"add":{"component_groups":["minecraft:parrot_not_riding_player"]}}}}},"minecraft:phantom":{"format_version":"1.16.0","minecraft:entity":{"description":{"identifier":"minecraft:phantom","is_spawnable":true,"is_summonable":true,"is_experimental":false},"component_groups":{},"components":{"minecraft:is_hidden_when_invisible":{},"minecraft:experience_reward":{"on_death":"query.last_hit_by_player ? 5 : 0"},"minecraft:type_family":{"family":["phantom","undead","monster","mob"]},"minecraft:loot":{"table":"loot_tables/entities/phantom.json"},"minecraft:nameable":{},"minecraft:health":{"value":20,"max":20},"minecraft:hurt_on_condition":{"damage_conditions":[{"filters":{"test":"in_lava","subject":"self","operator":"==","value":true},"cause":"lava","damage_per_tick":4}]},"minecraft:physics":{"has_gravity":false},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:conditional_bandwidth_optimization":{},"minecraft:game_event_movement_tracking":{"emit_flap":true},"minecraft:attack":{"damage":6},"minecraft:breathable":{"total_supply":15,"suffocate_time":0,"breathes_air":true,"breathes_water":false},"minecraft:collision_box":{"width":0.9,"height":0.5},"minecraft:movement":{"value":1.8},"minecraft:movement.glide":{"start_speed":0.1,"speed_when_turning":0.2},"minecraft:burns_in_daylight":{},"minecraft:follow_range":{"value":64,"max":64},"minecraft:despawn":{"despawn_from_distance":{}},"minecraft:behavior.avoid_mob_type":{"priority":0,"max_dist":16,"ignore_visibility":true,"entity_types":[{"filters":{"any_of":[{"test":"is_family","subject":"other","value":"ocelot"},{"test":"is_family","subject":"other","value":"cat"}]},"max_dist":16}]},"minecraft:behavior.nearest_attackable_target":{"priority":1,"reselect_targets":true,"scan_interval":20,"within_radius":64,"must_see_forget_duration":0.5,"target_search_height":80,"entity_types":[{"filters":{"test":"is_family","subject":"other","value":"player"},"max_dist":64}]},"minecraft:behavior.swoop_attack":{"priority":2,"damage_reach":0.2,"speed_multiplier":1,"delay_range":[10,20]},"minecraft:behavior.circle_around_anchor":{"priority":3,"radius_change":1,"radius_adjustment_chance":0.004,"height_adjustment_chance":0.002857,"goal_radius":1,"angle_change":15,"radius_range":[5,15],"height_offset_range":[-4,5],"height_above_target_range":[20,40]}}}},"minecraft:pig":{"format_version":"1.18.10","minecraft:entity":{"description":{"identifier":"minecraft:pig","is_spawnable":true,"is_summonable":true,"is_experimental":false},"component_groups":{"minecraft:pig_baby":{"minecraft:is_baby":{},"minecraft:scale":{"value":0.5},"minecraft:ageable":{"duration":1200,"feed_items":["carrot","beetroot","potato"],"grow_up":{"event":"minecraft:ageable_grow_up","target":"self"}},"minecraft:behavior.follow_parent":{"priority":6,"speed_multiplier":1.1}},"minecraft:pig_transform":{"minecraft:transformation":{"into":"minecraft:pig_zombie","delay":0.5}},"minecraft:pig_adult":{"minecraft:experience_reward":{"on_bred":"Math.Random(1,7)","on_death":"query.last_hit_by_player ? Math.Random(1,3) : 0"},"minecraft:loot":{"table":"loot_tables/entities/pig.json"},"minecraft:behavior.breed":{"priority":4,"speed_multiplier":1},"minecraft:breedable":{"require_tame":false,"breeds_with":{"mate_type":"minecraft:pig","baby_type":"minecraft:pig","breed_event":{"event":"minecraft:entity_born","target":"baby"}},"breed_items":["carrot","beetroot","potato"]}},"minecraft:pig_unsaddled":{"minecraft:interact":{"interactions":[{"on_interact":{"filters":{"test":"has_equipment","subject":"other","domain":"hand","value":"saddle"},"event":"minecraft:on_saddled"},"use_item":true,"play_sounds":"saddle","interact_text":"action.interact.saddle"}]},"minecraft:rideable":{"seat_count":1,"family_types":["zombie"],"seats":{"position":[0,0.63,0]}}},"minecraft:pig_saddled":{"minecraft:is_saddled":{},"minecraft:loot":{"table":"loot_tables/entities/pig_saddled.json"},"minecraft:boostable":{"speed_multiplier":2,"duration":3,"boost_items":[{"item":"carrotOnAStick","damage":2,"replace_item":"fishing_rod"}]},"minecraft:rideable":{"seat_count":1,"interact_text":"action.interact.ride.horse","family_types":["player"],"seats":{"position":[0,0.63,0]}},"minecraft:item_controllable":{"control_items":"carrotOnAStick"},"minecraft:behavior.controlled_by_player":{"priority":0}}},"components":{"minecraft:is_hidden_when_invisible":{},"minecraft:damage_sensor":{"triggers":{"on_damage":{"filters":[{"test":"is_family","subject":"other","value":"lightning"},{"test":"is_difficulty","operator":"!=","value":"peaceful"}],"event":"become_zombie"},"deals_damage":false}},"minecraft:type_family":{"family":["pig","mob"]},"minecraft:breathable":{"total_supply":15,"suffocate_time":0},"minecraft:nameable":{},"minecraft:health":{"value":10,"max":10},"minecraft:hurt_on_condition":{"damage_conditions":[{"filters":{"test":"in_lava","subject":"self","operator":"==","value":true},"cause":"lava","damage_per_tick":4}]},"minecraft:movement":{"value":0.25},"minecraft:navigation.walk":{"can_path_over_water":true,"avoid_water":true,"avoid_damage_blocks":true},"minecraft:movement.basic":{},"minecraft:jump.static":{},"minecraft:can_climb":{},"minecraft:collision_box":{"width":0.9,"height":0.9},"minecraft:leashable":{"soft_distance":4,"hard_distance":6,"max_distance":10},"minecraft:balloonable":{"mass":0.9},"minecraft:despawn":{"despawn_from_distance":{}},"minecraft:behavior.mount_pathing":{"priority":1,"speed_multiplier":1.25,"target_dist":0,"track_target":true},"minecraft:behavior.float":{"priority":2},"minecraft:behavior.panic":{"priority":3,"speed_multiplier":1.25},"minecraft:behavior.tempt":{"priority":5,"speed_multiplier":1.2,"items":["potato","carrot","beetroot","carrotOnAStick"]},"minecraft:behavior.random_stroll":{"priority":7,"speed_multiplier":1},"minecraft:behavior.look_at_player":{"priority":8,"look_distance":6,"probability":0.02},"minecraft:behavior.random_look_around":{"priority":9},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:conditional_bandwidth_optimization":{}},"events":{"become_zombie":{"remove":{},"add":{"component_groups":["minecraft:pig_transform"]}},"minecraft:entity_spawned":{"randomize":[{"weight":95,"trigger":"minecraft:spawn_adult"},{"weight":5,"remove":{},"add":{"component_groups":["minecraft:pig_baby"]}}]},"minecraft:entity_born":{"remove":{},"add":{"component_groups":["minecraft:pig_baby"]}},"minecraft:ageable_grow_up":{"remove":{"component_groups":["minecraft:pig_baby"]},"add":{"component_groups":["minecraft:pig_adult","minecraft:pig_unsaddled"]}},"minecraft:on_saddled":{"remove":{"component_groups":["minecraft:pig_unsaddled"]},"add":{"component_groups":["minecraft:pig_saddled"]}},"minecraft:spawn_adult":{"add":{"component_groups":["minecraft:pig_adult","minecraft:pig_unsaddled"]}}}}},"minecraft:piglin":{"format_version":"1.16.0","minecraft:entity":{"description":{"identifier":"minecraft:piglin","is_spawnable":true,"is_summonable":true,"is_experimental":false},"component_groups":{"zombification_sensor":{"minecraft:environment_sensor":{"triggers":{"filters":{"test":"in_nether","subject":"self","operator":"==","value":false},"event":"start_zombification_event"}}},"start_zombification":{"minecraft:is_shaking":{},"minecraft:environment_sensor":{"triggers":{"filters":{"test":"in_nether","subject":"self","operator":"==","value":true},"event":"stop_zombification_event"}},"minecraft:timer":{"looping":false,"time":15,"time_down_event":{"event":"become_zombie_event"}}},"become_zombie":{"minecraft:transformation":{"into":"minecraft:zombie_pigman","transformation_sound":"converted_to_zombified","keep_level":true,"drop_inventory":true,"preserve_equipment":true}},"ranged_unit":{"minecraft:behavior.ranged_attack":{"priority":8,"attack_interval_min":1,"attack_interval_max":1,"attack_radius":8,"attack_radius_min":4,"speed_multiplier":1,"target_in_sight_time":0.1},"minecraft:shooter":{"def":"minecraft:arrow"},"minecraft:behavior.charge_held_item":{"priority":3,"items":["minecraft:arrow"]},"minecraft:equipment":{"table":"loot_tables/entities/piglin_gear_ranged.json"},"minecraft:variant":{"value":0}},"melee_unit":{"minecraft:behavior.melee_attack":{"priority":8,"speed_multiplier":1,"track_target":true},"minecraft:attack":{"damage":5},"minecraft:equipment":{"table":"loot_tables/entities/piglin_gear_melee.json"},"minecraft:variant":{"value":1}},"angry":{"minecraft:angry":{"duration":30,"broadcast_anger":true,"broadcast_anger_on_attack":true,"broadcast_anger_on_being_attacked":true,"broadcast_range":16,"broadcast_targets":["piglin"],"calm_event":{"event":"become_calm_event","target":"self"},"filters":{"all_of":[{"test":"is_family","subject":"other","operator":"!=","value":"piglin"},{"test":"has_component","subject":"self","operator":"!=","value":"minecraft:attack_cooldown"}]},"angry_sound":"angry","sound_interval":{"range_min":2,"range_max":5}}},"attack_cooldown":{"minecraft:attack_cooldown":{"attack_cooldown_time":[30,120],"attack_cooldown_complete_event":{"event":"attack_cooldown_complete_event","target":"self"}}},"piglin_baby":{"minecraft:is_baby":{},"minecraft:scale":{"value":0.5},"minecraft:movement":{"value":0.42},"minecraft:experience_reward":{"on_death":"query.last_hit_by_player ? 1 + (query.equipment_count * Math.Random(1,2)) : 0"},"minecraft:behavior.panic":{"priority":1,"speed_multiplier":1.1}},"piglin_adult":{"minecraft:group_size":{"radius":32,"filters":{"all_of":[{"test":"has_component","operator":"!=","value":"minecraft:is_baby"},{"test":"is_family","value":"piglin"}]}},"minecraft:movement":{"value":0.35},"minecraft:barter":{"barter_table":"loot_tables/entities/piglin_barter.json","cooldown_after_being_attacked":20},"minecraft:experience_reward":{"on_death":"query.last_hit_by_player ? 5 + (query.equipment_count * Math.Random(1,3)) : 0"},"minecraft:celebrate_hunt":{"celebration_targets":{"all_of":[{"test":"is_family","value":"hoglin"}]},"broadcast":true,"duration":10,"celebrate_sound":"celebrate","sound_interval":{"range_min":2,"range_max":5},"radius":16},"minecraft:block_sensor":{"sensor_radius":16,"on_break":[{"block_list":["minecraft:gold_block","minecraft:gilded_blackstone","minecraft:nether_gold_ore","minecraft:deepslate_gold_ore","minecraft:raw_gold_block","minecraft:gold_ore","minecraft:chest","minecraft:trapped_chest","minecraft:ender_chest","minecraft:barrel","minecraft:shulker_box","minecraft:undyed_shulker_box"],"on_block_broken":"important_block_destroyed_event"}]}},"interactable_piglin":{"minecraft:interact":{"interactions":[{"on_interact":{"filters":{"all_of":[{"test":"has_equipment","subject":"other","domain":"hand","value":"gold_ingot"},{"test":"is_family","subject":"other","value":"player"},{"test":"has_component","subject":"self","operator":"!=","value":"minecraft:is_baby"}]}},"barter":true,"admire":true,"use_item":true,"cooldown_after_being_attacked":20,"interact_text":"action.interact.barter"}]}},"hunter":{"minecraft:type_family":{"family":["piglin","piglin_hunter","monster"]}},"not_hunter":{"minecraft:type_family":{"family":["piglin","monster"]}},"alert_for_attack_targets":{"minecraft:behavior.nearest_attackable_target":{"priority":7,"within_radius":16,"persist_time":0,"entity_types":[{"filters":{"any_of":[{"test":"is_family","subject":"other","value":"wither"}]},"max_dist":16},{"filters":{"all_of":[{"test":"is_family","subject":"self","value":"piglin_hunter"},{"test":"is_family","subject":"other","value":"hoglin_huntable"},{"test":"has_component","subject":"other","operator":"!=","value":"minecraft:is_baby"},{"test":"has_component","subject":"self","operator":"!=","value":"minecraft:attack_cooldown"}]},"max_dist":16},{"filters":{"all_of":[{"test":"is_family","subject":"other","value":"player"},{"test":"has_equipment","subject":"other","domain":"head","operator":"!=","value":"golden_helmet"},{"test":"has_equipment","subject":"other","domain":"torso","operator":"!=","value":"golden_chestplate"},{"test":"has_equipment","subject":"other","domain":"leg","operator":"!=","value":"golden_leggings"},{"test":"has_equipment","subject":"other","domain":"feet","operator":"!=","value":"golden_boots"}]},"max_dist":16,"reevaluate_description":true},{"filters":{"any_of":[{"test":"has_container_open","subject":"other","operator":"==","value":true}]},"max_dist":16}],"must_see":true}},"take_target_as_response_to_block_break":{"minecraft:behavior.nearest_attackable_target":{"priority":7,"entity_types":[{"filters":{"test":"is_family","subject":"other","value":"player"},"max_dist":16}]}},"piglin_jockey":{"minecraft:behavior.find_mount":{"priority":1,"within_radius":16,"start_delay":15,"max_failed_attempts":20}}},"components":{"minecraft:is_hidden_when_invisible":{},"minecraft:equip_item":{},"minecraft:admire_item":{"duration":8,"cooldown_after_being_attacked":20},"minecraft:collision_box":{"width":0.6,"height":1.9},"minecraft:on_target_acquired":{"event":"become_angry_event","target":"self"},"minecraft:breathable":{"total_supply":15,"suffocate_time":0},"minecraft:health":{"value":16,"max":16},"minecraft:hurt_on_condition":{"damage_conditions":[{"filters":{"test":"in_lava","subject":"self","operator":"==","value":true},"cause":"lava","damage_per_tick":4}]},"minecraft:loot":{"table":"loot_tables/entities/piglin.json"},"minecraft:navigation.walk":{"can_path_over_water":true,"can_open_doors":true},"minecraft:annotation.open_door":{},"minecraft:movement.basic":{},"minecraft:jump.static":{},"minecraft:nameable":{},"minecraft:inventory":{"inventory_size":8},"minecraft:despawn":{"despawn_from_distance":{}},"minecraft:behavior.hurt_by_target":{"priority":1},"minecraft:behavior.admire_item":{"priority":2,"admire_item_sound":"admire","sound_interval":{"range_min":2,"range_max":5},"on_admire_item_start":{"event":"admire_item_started_event","target":"self"},"on_admire_item_stop":{"event":"admire_item_stopped_event","target":"self"}},"minecraft:behavior.barter":{"priority":3},"minecraft:conditional_bandwidth_optimization":{},"minecraft:behavior.avoid_mob_type":{"priority":4,"remove_target":true,"entity_types":[{"filters":{"any_of":[{"test":"is_family","subject":"other","value":"zombie_pigman"}]},"max_dist":6},{"filters":{"any_of":[{"test":"is_family","subject":"other","value":"zoglin"}]},"max_dist":6},{"filters":{"all_of":[{"test":"has_target","subject":"other","value":true},{"test":"is_family","subject":"other","value":"hoglin"}]},"sprint_speed_multiplier":1.2,"check_if_outnumbered":true}],"on_escape_event":{"event":"become_calm_event","target":"self"},"avoid_mob_sound":"retreat","sound_interval":{"range_min":2,"range_max":5}},"minecraft:behavior.equip_item":{"priority":5},"minecraft:behavior.pickup_items":{"priority":6,"max_dist":10,"goal_radius":2,"speed_multiplier":0.8,"pickup_based_on_chance":false,"can_pickup_any_item":false,"cooldown_after_being_attacked":20},"minecraft:behavior.avoid_block":{"priority":9,"tick_interval":5,"search_range":8,"search_height":4,"sprint_speed_modifier":1.1,"target_selection_method":"nearest","target_blocks":["minecraft:soul_fire","minecraft:soul_lantern","minecraft:soul_torch","minecraft:item.soul_campfire"],"avoid_block_sound":"retreat","sound_interval":{"range_min":2,"range_max":5}},"minecraft:behavior.random_stroll":{"priority":10,"speed_multiplier":0.6},"minecraft:behavior.look_at_player":{"priority":11,"look_distance":8},"minecraft:behavior.random_look_around":{"priority":12},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:follow_range":{"value":64},"minecraft:shareables":{"items":[{"item":"minecraft:golden_sword","priority":2,"admire":true,"pickup_limit":1,"stored_in_inventory":true},{"item":"minecraft:golden_axe","priority":2,"admire":true,"pickup_limit":1,"stored_in_inventory":true},{"item":"minecraft:golden_hoe","priority":2,"admire":true,"pickup_limit":1,"stored_in_inventory":true},{"item":"minecraft:golden_pickaxe","priority":2,"admire":true,"pickup_limit":1,"stored_in_inventory":true},{"item":"minecraft:golden_shovel","priority":2,"admire":true,"pickup_limit":1,"stored_in_inventory":true},{"item":"minecraft:golden_rail","priority":2,"admire":true,"pickup_limit":1,"stored_in_inventory":true},{"item":"minecraft:golden_helmet","priority":2,"admire":true,"pickup_limit":1,"stored_in_inventory":true},{"item":"minecraft:golden_chestplate","priority":2,"admire":true,"pickup_limit":1,"stored_in_inventory":true},{"item":"minecraft:golden_leggings","priority":2,"admire":true,"pickup_limit":1,"stored_in_inventory":true},{"item":"minecraft:golden_boots","priority":2,"admire":true,"pickup_limit":1,"stored_in_inventory":true},{"item":"minecraft:golden_apple","priority":2,"admire":true,"pickup_limit":1,"stored_in_inventory":true},{"item":"minecraft:appleEnchanted","priority":2,"admire":true,"pickup_limit":1,"stored_in_inventory":true},{"item":"minecraft:golden_carrot","priority":2,"admire":true,"pickup_limit":1,"stored_in_inventory":true},{"item":"minecraft:gold_block","priority":2,"admire":true,"pickup_limit":1,"stored_in_inventory":true},{"item":"minecraft:gold_nugget","priority":2,"stored_in_inventory":true},{"item":"minecraft:raw_gold","priority":2,"admire":true,"pickup_limit":1,"stored_in_inventory":true},{"item":"minecraft:gold_ore","priority":2,"admire":true,"pickup_limit":1,"stored_in_inventory":true},{"item":"minecraft:nether_gold_ore","priority":2,"admire":true,"pickup_limit":1,"stored_in_inventory":true},{"item":"minecraft:deepslate_gold_ore","priority":2,"admire":true,"pickup_limit":1,"stored_in_inventory":true},{"item":"minecraft:raw_gold_block","priority":2,"admire":true,"pickup_limit":1,"stored_in_inventory":true},{"item":"minecraft:gilded_blackstone","priority":2,"admire":true,"pickup_limit":1,"stored_in_inventory":true},{"item":"minecraft:horsearmorgold","priority":2,"admire":true,"pickup_limit":1,"stored_in_inventory":true},{"item":"minecraft:crossbow","priority":2},{"item":"minecraft:porkchop","consume_item":true,"priority":3,"max_amount":64},{"item":"minecraft:cooked_porkchop","consume_item":true,"priority":3,"max_amount":64},{"item":"minecraft:netherite_helmet","priority":3},{"item":"minecraft:diamond_helmet","priority":4},{"item":"minecraft:iron_helmet","priority":5},{"item":"minecraft:chainmail_helmet","priority":6},{"item":"minecraft:leather_helmet","priority":7},{"item":"minecraft:skull:0","want_amount":1,"surplus_amount":1,"priority":8},{"item":"minecraft:skull:1","want_amount":1,"surplus_amount":1,"priority":8},{"item":"minecraft:skull:2","want_amount":1,"surplus_amount":1,"priority":8},{"item":"minecraft:skull:3","want_amount":1,"surplus_amount":1,"priority":8},{"item":"minecraft:skull:4","want_amount":1,"surplus_amount":1,"priority":8},{"item":"minecraft:skull:5","want_amount":1,"surplus_amount":1,"priority":8},{"item":"minecraft:carved_pumpkin","want_amount":1,"surplus_amount":1,"priority":8},{"item":"minecraft:turtle_helmet","want_amount":1,"surplus_amount":1,"priority":8},{"item":"minecraft:netherite_chestplate","priority":3},{"item":"minecraft:diamond_chestplate","priority":4},{"item":"minecraft:iron_chestplate","priority":5},{"item":"minecraft:chainmail_chestplate","priority":6},{"item":"minecraft:leather_chestplate","priority":7},{"item":"minecraft:elytra","priority":7},{"item":"minecraft:netherite_leggings","priority":3},{"item":"minecraft:diamond_leggings","priority":4},{"item":"minecraft:iron_leggings","priority":5},{"item":"minecraft:chainmail_leggings","priority":6},{"item":"minecraft:leather_leggings","priority":7},{"item":"minecraft:netherite_boots","priority":3},{"item":"minecraft:diamond_boots","priority":4},{"item":"minecraft:iron_boots","priority":5},{"item":"minecraft:chainmail_boots","priority":6},{"item":"minecraft:bell","priority":2,"admire":true,"pickup_limit":1,"stored_in_inventory":true},{"item":"minecraft:clock","priority":2,"admire":true,"pickup_limit":1,"stored_in_inventory":true},{"item":"minecraft:speckled_melon","priority":2,"admire":true,"pickup_limit":1,"stored_in_inventory":true},{"item":"minecraft:light_weighted_pressure_plate","priority":2,"admire":true,"pickup_limit":1,"stored_in_inventory":true},{"item":"minecraft:leather_boots","priority":7},{"item":"minecraft:netherite_sword","priority":3},{"item":"minecraft:diamond_sword","priority":4},{"item":"minecraft:iron_sword","priority":5},{"item":"minecraft:stone_sword","priority":6},{"item":"minecraft:wooden_sword","priority":7},{"item":"minecraft:shield","priority":7},{"item":"minecraft:gold_ingot","priority":1,"pickup_limit":1,"admire":true,"barter":true}]}},"events":{"minecraft:entity_spawned":{"randomize":[{"weight":5,"trigger":"spawn_baby"},{"weight":95,"trigger":"spawn_adult"}]},"minecraft:entity_born":{"trigger":"spawn_baby"},"spawn_adult_no_hunting":{"randomize":[{"weight":1,"trigger":"spawn_adult_ranged_no_hunting"},{"weight":1,"trigger":"spawn_adult_melee_no_hunting"}]},"spawn_adult":{"randomize":[{"weight":1,"trigger":"spawn_adult_ranged"},{"weight":1,"trigger":"spawn_adult_melee"}]},"spawn_adult_ranged":{"add":{"component_groups":["piglin_adult","zombification_sensor","alert_for_attack_targets","ranged_unit","attack_cooldown","hunter","interactable_piglin"]}},"spawn_adult_ranged_no_hunting":{"add":{"component_groups":["piglin_adult","zombification_sensor","alert_for_attack_targets","ranged_unit","attack_cooldown","not_hunter","interactable_piglin"]}},"spawn_adult_melee":{"add":{"component_groups":["piglin_adult","zombification_sensor","alert_for_attack_targets","melee_unit","attack_cooldown","hunter","interactable_piglin"]}},"spawn_adult_melee_no_hunting":{"add":{"component_groups":["piglin_adult","zombification_sensor","alert_for_attack_targets","melee_unit","attack_cooldown","not_hunter","interactable_piglin"]}},"spawn_baby":{"randomize":[{"weight":9,"add":{"component_groups":["piglin_baby","zombification_sensor","not_hunter"]}},{"weight":1,"add":{"component_groups":["piglin_baby","zombification_sensor","piglin_jockey","not_hunter"]}}]},"stop_zombification_event":{"add":{"component_groups":["zombification_sensor"]},"remove":{"component_groups":["start_zombification"]}},"start_zombification_event":{"add":{"component_groups":["start_zombification"]},"remove":{"component_groups":["zombification_sensor"]}},"become_angry_event":{"add":{"component_groups":["angry"]}},"become_calm_event":{"remove":{"component_groups":["angry","take_target_as_response_to_block_break"]},"add":{"component_groups":["alert_for_attack_targets","attack_cooldown"]}},"attack_cooldown_complete_event":{"remove":{"component_groups":["attack_cooldown"]}},"become_zombie_event":{"add":{"component_groups":["become_zombie"]}},"important_block_destroyed_event":{"remove":{"component_groups":["alert_for_attack_targets"]},"add":{"component_groups":["take_target_as_response_to_block_break"]}},"admire_item_started_event":{"remove":{"component_groups":["interactable_piglin"]}},"admire_item_stopped_event":{"add":{"component_groups":["interactable_piglin"]}}}}},"minecraft:piglin_brute":{"format_version":"1.18.20","minecraft:entity":{"description":{"identifier":"minecraft:piglin_brute","is_spawnable":true,"is_summonable":true,"is_experimental":false},"component_groups":{"zombification_sensor":{"minecraft:environment_sensor":{"triggers":{"filters":{"test":"in_nether","subject":"self","operator":"==","value":false},"event":"start_zombification_event"}}},"start_zombification":{"minecraft:is_shaking":{},"minecraft:environment_sensor":{"triggers":{"filters":{"test":"in_nether","subject":"self","operator":"==","value":true},"event":"stop_zombification_event"}},"minecraft:timer":{"looping":false,"time":15,"time_down_event":{"event":"become_zombie_event"}}},"become_zombie":{"minecraft:transformation":{"into":"minecraft:zombie_pigman","transformation_sound":"converted_to_zombified","keep_level":true,"preserve_equipment":true}},"melee_unit":{"minecraft:behavior.melee_attack":{"priority":4,"speed_multiplier":1,"track_target":true},"minecraft:attack":{"damage":7},"minecraft:equipment":{"table":"loot_tables/entities/piglin_brute_gear.json"},"minecraft:variant":{"value":1}},"angry":{"minecraft:angry":{"duration":30,"broadcast_anger":false,"broadcast_anger_on_attack":false,"broadcast_anger_on_being_attacked":true,"broadcast_range":16,"broadcast_targets":["piglin"],"calm_event":{"event":"become_calm_event","target":"self"},"filters":{"all_of":[{"test":"is_family","subject":"other","operator":"!=","value":"piglin"}]},"angry_sound":"angry","sound_interval":{"range_min":2,"range_max":5}}},"alert_for_attack_targets":{"minecraft:behavior.nearest_prioritized_attackable_target":{"priority":3,"within_radius":12,"persist_time":2,"must_see":true,"entity_types":[{"filters":{"test":"is_family","subject":"other","value":"player"},"max_dist":12,"priority":0},{"filters":{"test":"is_family","subject":"other","value":"wither"},"max_dist":12,"priority":1}]}},"take_target_as_response_to_block_break":{"minecraft:behavior.nearest_attackable_target":{"priority":3,"entity_types":[{"filters":{"test":"is_family","subject":"other","value":"player"},"max_dist":16}]}},"go_back_to_spawn":{"minecraft:behavior.go_home":{"priority":6,"interval":200,"speed_multiplier":0.6,"goal_radius":4,"on_failed":[{"event":"go_back_to_spawn_failed","target":"self"}]}}},"components":{"minecraft:is_hidden_when_invisible":{},"minecraft:collision_box":{"width":0.6,"height":1.9},"minecraft:type_family":{"family":["piglin","adult_piglin","piglin_brute","monster"]},"minecraft:home":{},"minecraft:conditional_bandwidth_optimization":{},"minecraft:experience_reward":{"on_death":"query.last_hit_by_player ? 20 : 0"},"minecraft:on_target_acquired":{"event":"become_angry_event","target":"self"},"minecraft:breathable":{"total_supply":15,"suffocate_time":0},"minecraft:health":{"value":50,"max":50},"minecraft:hurt_on_condition":{"damage_conditions":[{"filters":{"test":"in_lava","subject":"self","operator":"==","value":true},"cause":"lava","damage_per_tick":4}]},"minecraft:loot":{"table":"loot_tables/entities/piglin.json"},"minecraft:movement":{"value":0.35},"minecraft:navigation.walk":{"can_path_over_water":true,"can_open_doors":true},"minecraft:annotation.open_door":{},"minecraft:movement.basic":{},"minecraft:jump.static":{},"minecraft:nameable":{},"minecraft:despawn":{"filters":{"any_of":[{"all_of":[{"test":"is_persistent","value":false},{"test":"distance_to_nearest_player","operator":">","value":54}]},{"all_of":[{"test":"is_persistent","value":false},{"test":"inactivity_timer","subject":"self","value":30},{"test":"random_chance","value":800},{"test":"distance_to_nearest_player","operator":">","value":32}]}]}},"minecraft:behavior.hurt_by_target":{"priority":1},"minecraft:behavior.random_stroll":{"priority":7,"speed_multiplier":0.6},"minecraft:behavior.look_at_player":{"priority":8,"look_distance":8},"minecraft:behavior.random_look_around":{"priority":9},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:follow_range":{"value":64}},"events":{"minecraft:entity_spawned":{"add":{"component_groups":["zombification_sensor","alert_for_attack_targets","melee_unit","go_back_to_spawn"]}},"stop_zombification_event":{"add":{"component_groups":["zombification_sensor"]},"remove":{"component_groups":["start_zombification"]}},"start_zombification_event":{"add":{"component_groups":["start_zombification"]},"remove":{"component_groups":["zombification_sensor"]}},"become_angry_event":{"add":{"component_groups":["angry"]}},"become_calm_event":{"remove":{"component_groups":["angry"]},"add":{"component_groups":["alert_for_attack_targets"]}},"become_zombie_event":{"add":{"component_groups":["become_zombie"]}},"important_block_destroyed_event":{"remove":{"component_groups":["alert_for_attack_targets"]},"add":{"component_groups":["take_target_as_response_to_block_break"]}},"go_back_to_spawn_failed":{"remove":{"component_groups":["go_back_to_spawn"]}}}}},"minecraft:pillager":{"format_version":"1.16.0","minecraft:entity":{"description":{"identifier":"minecraft:pillager","is_spawnable":true,"is_summonable":true,"is_experimental":false},"component_groups":{"minecraft:celebrate":{"minecraft:behavior.celebrate":{"priority":5,"celebration_sound":"celebrate","sound_interval":{"range_min":2,"range_max":7},"jump_interval":{"range_min":1,"range_max":3.5},"duration":30,"on_celebration_end_event":{"event":"minecraft:stop_celebrating","target":"self"}}},"minecraft:ranged_attack":{"minecraft:behavior.ranged_attack":{"priority":4,"attack_interval_min":1,"attack_interval_max":1,"attack_radius":8},"minecraft:shooter":{"def":"minecraft:arrow"},"minecraft:environment_sensor":{"triggers":{"filters":{"test":"is_underwater","subject":"self","operator":"==","value":true},"event":"minecraft:melee_mode"}}},"minecraft:melee_attack":{"minecraft:behavior.melee_attack":{"priority":4,"track_target":true},"minecraft:attack":{"damage":3},"minecraft:environment_sensor":{"triggers":{"filters":{"test":"in_water","subject":"self","operator":"==","value":false},"event":"minecraft:ranged_mode"}}},"minecraft:raid_configuration":{"minecraft:dweller":{"dwelling_type":"village","dweller_role":"hostile","update_interval_base":60,"update_interval_variant":40,"can_find_poi":false,"can_migrate":true,"first_founding_reward":0},"minecraft:behavior.move_to_village":{"priority":5,"speed_multiplier":1,"goal_radius":2},"minecraft:loot":{"table":"loot_tables/entities/pillager_raid.json"},"minecraft:ambient_sound_interval":{"value":2,"range":4,"event_name":"ambient.in.raid"}},"minecraft:raid_persistence":{"minecraft:persistent":{}},"minecraft:illager_squad_captain":{"minecraft:is_illager_captain":{},"minecraft:variant":{"value":1},"minecraft:equipment":{"table":"loot_tables/entities/pillager_captain_equipment.json","slot_drop_chance":[{"slot":"slot.armor.chest","drop_chance":1}]},"minecraft:damage_sensor":{"triggers":{"on_damage":{"filters":{"all_of":[{"test":"has_damage","value":"fatal"},{"test":"is_family","subject":"other","value":"player"}]},"event":"minecraft:gain_bad_omen","target":"other"}}},"minecraft:on_hurt":{"event":"minecraft:ranged_mode","target":"self"},"minecraft:on_hurt_by_player":{"event":"minecraft:ranged_mode","target":"self"}},"minecraft:patrol_captain":{"minecraft:is_illager_captain":{},"minecraft:variant":{"value":1},"minecraft:equipment":{"table":"loot_tables/entities/pillager_captain_equipment.json","slot_drop_chance":[{"slot":"slot.armor.chest","drop_chance":1}]},"minecraft:damage_sensor":{"triggers":{"on_damage":{"filters":{"all_of":[{"test":"has_damage","value":"fatal"},{"test":"is_family","subject":"other","value":"player"}]},"event":"minecraft:gain_bad_omen","target":"other"}}},"minecraft:on_hurt":{"event":"minecraft:ranged_mode","target":"self"},"minecraft:on_hurt_by_player":{"event":"minecraft:ranged_mode","target":"self"},"minecraft:on_target_escape":{"event":"minecraft:calm","target":"self"},"minecraft:behavior.hold_ground":{"priority":5,"min_radius":10,"broadcast":true,"broadcast_range":8,"within_radius_event":{"event":"minecraft:ranged_mode","target":"self"}},"minecraft:behavior.move_to_random_block":{"priority":6,"speed_multiplier":0.55,"within_radius":8,"block_distance":512}},"minecraft:patrol_follower":{"minecraft:behavior.follow_target_captain":{"priority":5,"speed_multiplier":0.8,"within_radius":64,"follow_distance":5},"minecraft:behavior.hold_ground":{"priority":6,"min_radius":10,"broadcast":true,"broadcast_range":8,"within_radius_event":{"event":"minecraft:ranged_mode","target":"self"}},"minecraft:on_hurt":{"event":"minecraft:ranged_mode","target":"self"},"minecraft:on_hurt_by_player":{"event":"minecraft:ranged_mode","target":"self"},"minecraft:on_target_escape":{"event":"minecraft:calm","target":"self"}}},"components":{"minecraft:is_hidden_when_invisible":{},"minecraft:experience_reward":{"on_death":"query.last_hit_by_player ? (query.is_baby ? 12 : 5) + (Math.die_roll(query.equipment_count,1,3)) : 0"},"minecraft:equip_item":{},"minecraft:collision_box":{"width":0.6,"height":1.9},"minecraft:type_family":{"family":["pillager","monster","illager","mob"]},"minecraft:variant":{"value":0},"minecraft:breathable":{"total_supply":15,"suffocate_time":0},"minecraft:health":{"value":24,"max":24},"minecraft:conditional_bandwidth_optimization":{},"minecraft:hurt_on_condition":{"damage_conditions":[{"filters":{"test":"in_lava","subject":"self","operator":"==","value":true},"cause":"lava","damage_per_tick":4}]},"minecraft:loot":{"table":"loot_tables/entities/pillager.json"},"minecraft:shareables":{"items":[{"item":"minecraft:banner:15","want_amount":1,"surplus_amount":1,"priority":0}]},"minecraft:movement":{"value":0.35},"minecraft:navigation.walk":{"can_path_over_water":true},"minecraft:movement.basic":{},"minecraft:jump.static":{},"minecraft:nameable":{},"minecraft:equipment":{"table":"loot_tables/entities/pillager_gear.json"},"minecraft:despawn":{"despawn_from_distance":{}},"minecraft:behavior.float":{"priority":0},"minecraft:behavior.hurt_by_target":{"priority":1,"entity_types":{"filters":{"test":"is_family","subject":"other","operator":"!=","value":"illager"},"max_dist":64}},"minecraft:behavior.nearest_attackable_target":{"priority":2,"must_see":true,"reselect_targets":true,"within_radius":16,"entity_types":[{"filters":{"any_of":[{"test":"is_family","subject":"other","value":"player"},{"test":"is_family","subject":"other","value":"irongolem"},{"test":"is_family","subject":"other","value":"wandering_trader"}]},"max_dist":16},{"filters":{"all_of":[{"test":"is_family","subject":"other","value":"villager"},{"test":"has_component","subject":"other","operator":"!=","value":"minecraft:is_baby"}]},"max_dist":16}]},"minecraft:behavior.equip_item":{"priority":3},"minecraft:behavior.pickup_items":{"priority":7,"max_dist":3,"goal_radius":2,"speed_multiplier":1},"minecraft:behavior.random_stroll":{"priority":8,"speed_multiplier":1},"minecraft:behavior.look_at_player":{"priority":9,"look_distance":8},"minecraft:behavior.random_look_around":{"priority":10},"minecraft:behavior.charge_held_item":{"priority":3,"items":["minecraft:arrow"]},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:follow_range":{"value":64}},"events":{"minecraft:entity_spawned":{"add":{"component_groups":["minecraft:ranged_attack"]}},"minecraft:spawn_for_raid":{"add":{"component_groups":["minecraft:ranged_attack","minecraft:raid_configuration","minecraft:raid_persistence"]}},"minecraft:spawn_as_patrol_follower":{"add":{"component_groups":["minecraft:ranged_attack","minecraft:patrol_follower"]}},"minecraft:spawn_as_illager_captain":{"add":{"component_groups":["minecraft:ranged_attack","minecraft:illager_squad_captain"]}},"minecraft:promote_to_illager_captain":{"add":{"component_groups":["minecraft:ranged_attack","minecraft:illager_squad_captain"]},"remove":{"component_groups":["minecraft:patrol_follower"]}},"minecraft:promote_to_patrol_captain":{"add":{"component_groups":["minecraft:ranged_attack","minecraft:patrol_captain"]},"remove":{"component_groups":["minecraft:patrol_follower"]}},"minecraft:melee_mode":{"remove":{"component_groups":["minecraft:ranged_attack"]},"add":{"component_groups":["minecraft:melee_attack"]}},"minecraft:ranged_mode":{"remove":{"component_groups":["minecraft:melee_attack"]},"add":{"component_groups":["minecraft:ranged_attack"]}},"minecraft:start_celebrating":{"sequence":[{"add":{"component_groups":["minecraft:celebrate"]}},{"filters":{"test":"has_nametag","value":false},"remove":{"component_groups":["minecraft:raid_persistence"]}}]},"minecraft:stop_celebrating":{"remove":{"component_groups":["minecraft:celebrate"]}},"minecraft:raid_expired":{"sequence":[{"filters":{"test":"has_nametag","value":false},"remove":{"component_groups":["minecraft:raid_persistence"]}}]},"minecraft:calm":{"remove":{"component_groups":["minecraft:melee_attack","minecraft:ranged_attack"]}}}}},"minecraft:player":{"format_version":"1.18.20","minecraft:entity":{"description":{"identifier":"minecraft:player","is_spawnable":false,"is_summonable":false,"is_experimental":false},"component_groups":{"minecraft:add_bad_omen":{"minecraft:spell_effects":{"add_effects":[{"effect":"bad_omen","duration":6000,"visible":false,"display_on_screen_animation":true}]},"minecraft:timer":{"time":[0,0],"looping":false,"time_down_event":{"event":"minecraft:clear_add_bad_omen","target":"self"}}},"minecraft:clear_bad_omen_spell_effect":{"minecraft:spell_effects":{}},"minecraft:raid_trigger":{"minecraft:raid_trigger":{"triggered_event":{"event":"minecraft:remove_raid_trigger","target":"self"}},"minecraft:spell_effects":{"remove_effects":"bad_omen"}}},"components":{"minecraft:experience_reward":{"on_death":"Math.Min(query.player_level * 7, 100)"},"minecraft:type_family":{"family":["player"]},"minecraft:is_hidden_when_invisible":{},"minecraft:loot":{"table":"loot_tables/empty.json"},"minecraft:collision_box":{"width":0.6,"height":1.8},"minecraft:can_climb":{},"minecraft:movement":{"value":0.1},"minecraft:hurt_on_condition":{"damage_conditions":[{"filters":{"test":"in_lava","subject":"self","operator":"==","value":true},"cause":"lava","damage_per_tick":4}]},"minecraft:attack":{"damage":1},"minecraft:exhaustion_values":{"heal":6,"jump":0.05,"sprint_jump":0.2,"mine":0.005,"attack":0.1,"damage":0.1,"walk":0,"sprint":0.1,"swim":0.01},"minecraft:player.saturation":{"value":5,"max":20},"minecraft:player.exhaustion":{"value":0,"max":20},"minecraft:player.level":{"value":0,"max":24791},"minecraft:player.experience":{"value":0,"max":1},"minecraft:breathable":{"total_supply":15,"suffocate_time":-1,"inhale_time":3.75,"generates_bubbles":false},"minecraft:nameable":{"always_show":true,"allow_name_tag_renaming":false},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":false,"is_pushable_by_piston":true},"minecraft:insomnia":{"days_until_insomnia":3},"minecraft:rideable":{"seat_count":2,"family_types":["parrot_tame"],"pull_in_entities":true,"seats":[{"position":[0.4,-0.2,-0.1],"min_rider_count":0,"max_rider_count":0,"lock_rider_rotation":0},{"position":[-0.4,-0.2,-0.1],"min_rider_count":1,"max_rider_count":2,"lock_rider_rotation":0}]},"minecraft:conditional_bandwidth_optimization":{},"minecraft:block_climber":{},"minecraft:environment_sensor":{"triggers":{"filters":{"all_of":[{"test":"has_mob_effect","subject":"self","value":"bad_omen"},{"test":"is_in_village","subject":"self","value":true}]},"event":"minecraft:trigger_raid"}}},"events":{"minecraft:gain_bad_omen":{"add":{"component_groups":["minecraft:add_bad_omen"]}},"minecraft:clear_add_bad_omen":{"remove":{"component_groups":["minecraft:add_bad_omen"]},"add":{"component_groups":["minecraft:clear_bad_omen_spell_effect"]}},"minecraft:trigger_raid":{"add":{"component_groups":["minecraft:raid_trigger"]}},"minecraft:remove_raid_trigger":{"remove":{"component_groups":["minecraft:raid_trigger"]}}}}},"minecraft:polar_bear":{"format_version":"1.18.10","minecraft:entity":{"description":{"identifier":"minecraft:polar_bear","is_spawnable":true,"is_summonable":true,"is_experimental":false},"component_groups":{"minecraft:baby":{"minecraft:is_baby":{},"minecraft:scale":{"value":0.5},"minecraft:ageable":{"duration":1200,"grow_up":{"event":"minecraft:ageable_grow_up","target":"self"}},"minecraft:behavior.follow_parent":{"priority":4,"speed_multiplier":1.25}},"minecraft:baby_wild":{"minecraft:on_target_acquired":{"event":"minecraft:on_scared","target":"self"},"minecraft:behavior.nearest_attackable_target":{"priority":4,"entity_types":[{"filters":{"test":"is_family","subject":"other","value":"player"},"max_dist":16}]}},"minecraft:baby_scared":{"minecraft:angry":{"duration":1,"broadcast_anger":true,"broadcast_range":41,"calm_event":{"event":"minecraft:baby_on_calm","target":"self"}}},"minecraft:adult":{"minecraft:experience_reward":{"on_death":"query.last_hit_by_player ? Math.Random(1,3) : 0"},"minecraft:loot":{"table":"loot_tables/entities/polar_bear.json"}},"minecraft:adult_wild":{"minecraft:on_target_acquired":{"event":"minecraft:on_anger","target":"self"},"minecraft:on_friendly_anger":{"event":"minecraft:on_anger","target":"self"},"minecraft:behavior.nearest_attackable_target":{"priority":4,"entity_types":[{"filters":{"test":"is_family","subject":"other","value":"fox"},"max_dist":16}],"must_see":false}},"minecraft:adult_hostile":{"minecraft:attack":{"damage":6},"minecraft:angry":{"duration":500,"broadcast_anger":false,"broadcast_range":20,"calm_event":{"event":"minecraft:on_calm","target":"self"}},"minecraft:behavior.stomp_attack":{"priority":1,"track_target":true,"require_complete_path":true,"stomp_range_multiplier":2,"no_damage_range_multiplier":2}}},"components":{"minecraft:is_hidden_when_invisible":{},"minecraft:type_family":{"family":["polarbear","mob"]},"minecraft:breathable":{"total_supply":15,"suffocate_time":0},"minecraft:nameable":{},"minecraft:health":{"value":30},"minecraft:hurt_on_condition":{"damage_conditions":[{"filters":{"test":"in_lava","subject":"self","operator":"==","value":true},"cause":"lava","damage_per_tick":4}]},"minecraft:collision_box":{"width":1.3,"height":1.4},"minecraft:movement":{"value":0.25},"minecraft:water_movement":{"drag_factor":0.98},"minecraft:navigation.walk":{"can_path_over_water":true,"avoid_damage_blocks":true},"minecraft:movement.basic":{},"minecraft:jump.static":{},"minecraft:can_climb":{},"minecraft:follow_range":{"value":48},"minecraft:despawn":{"despawn_from_distance":{}},"minecraft:behavior.float":{"priority":0},"minecraft:behavior.hurt_by_target":{"priority":1},"minecraft:behavior.random_stroll":{"priority":5},"minecraft:behavior.look_at_player":{"priority":6,"target_distance":6,"probability":0.02},"minecraft:behavior.random_look_around":{"priority":7},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:leashable":{"soft_distance":4,"hard_distance":6,"max_distance":10},"minecraft:balloonable":{},"minecraft:conditional_bandwidth_optimization":{}},"events":{"minecraft:entity_spawned":{"randomize":[{"weight":9,"add":{"component_groups":["minecraft:adult","minecraft:adult_wild"]}},{"weight":1,"add":{"component_groups":["minecraft:baby","minecraft:baby_wild"]}}]},"minecraft:entity_born":{"add":{"component_groups":["minecraft:baby","minecraft:baby_wild"]}},"minecraft:ageable_grow_up":{"remove":{"component_groups":["minecraft:baby","minecraft:baby_wild","minecraft:baby_scared"]},"add":{"component_groups":["minecraft:adult","minecraft:adult_wild"]}},"minecraft:on_calm":{"remove":{"component_groups":["minecraft:adult_hostile"]},"add":{"component_groups":["minecraft:adult_wild"]}},"minecraft:on_anger":{"remove":{"component_groups":["minecraft:adult_wild"]},"add":{"component_groups":["minecraft:adult_hostile"]}},"minecraft:baby_on_calm":{"remove":{"component_groups":["minecraft:baby_scared"]},"add":{"component_groups":["minecraft:baby_wild"]}},"minecraft:on_scared":{"remove":{"component_groups":["minecraft:baby_wild"]},"add":{"component_groups":["minecraft:baby_scared"]}}}}},"minecraft:pufferfish":{"format_version":"1.16.0","minecraft:entity":{"description":{"identifier":"minecraft:pufferfish","is_spawnable":true,"is_summonable":true,"is_experimental":false},"component_groups":{"minecraft:normal_puff":{"minecraft:variant":{"value":0},"minecraft:entity_sensor":{"sensor_range":2.5,"relative_range":false,"minimum_count":1,"event_filters":{"any_of":[{"test":"is_family","subject":"other","value":"mob"},{"all_of":[{"test":"is_family","subject":"other","value":"player"},{"none_of":{"test":"has_ability","subject":"other","value":"instabuild"}}]}]},"event":"minecraft:start_half_puff"}},"minecraft:half_puff_primary":{"minecraft:variant":{"value":1},"minecraft:timer":{"looping":false,"time":2,"randomInterval":false,"time_down_event":{"event":"minecraft:on_half_puff"}}},"minecraft:half_puff_secondary":{"minecraft:variant":{"value":1},"minecraft:entity_sensor":{"sensor_range":2.5,"relative_range":false,"minimum_count":1,"event_filters":{"any_of":[{"test":"is_family","subject":"other","value":"mob"},{"all_of":[{"test":"is_family","subject":"other","value":"player"},{"none_of":{"test":"has_ability","subject":"other","value":"instabuild"}}]}]},"event":"minecraft:start_full_puff"},"minecraft:timer":{"looping":false,"time":2,"randomInterval":false,"time_down_event":{"event":"minecraft:on_normal_puff"}}},"minecraft:full_puff":{"minecraft:variant":{"value":2},"minecraft:area_attack":{"damage_range":0.2,"damage_per_tick":2,"cause":"contact","entity_filter":{"any_of":[{"test":"is_family","subject":"other","value":"player"},{"test":"is_family","subject":"other","value":"monster"}]}},"minecraft:mob_effect":{"effect_range":0.2,"mob_effect":"poison","effect_time":10,"entity_filter":{"any_of":[{"test":"is_family","subject":"other","value":"player"},{"test":"is_family","subject":"other","value":"monster"}]}}},"minecraft:deflate_sensor_buffer":{"minecraft:timer":{"looping":false,"time":0.01,"randomInterval":false,"time_down_event":{"event":"minecraft:on_full_puff"}}},"minecraft:deflate_sensor":{"minecraft:entity_sensor":{"sensor_range":2.9,"relative_range":false,"require_all":true,"event_filters":{"none_of":[{"test":"is_family","subject":"other","value":"mob"},{"all_of":[{"test":"is_family","subject":"other","value":"player"},{"none_of":{"test":"has_ability","subject":"other","value":"instabuild"}}]}],"test":"distance_to_nearest_player","operator":">","value":2.9},"event":"minecraft:from_full_puff"}},"minecraft:start_deflate":{"minecraft:timer":{"looping":false,"time":3,"randomInterval":false,"time_down_event":{"event":"minecraft:on_deflate"}}}},"components":{"minecraft:is_hidden_when_invisible":{},"minecraft:experience_reward":{"on_death":"query.last_hit_by_player ? Math.Random(1,3) : 0"},"minecraft:type_family":{"family":["pufferfish","fish"]},"minecraft:collision_box":{"width":0.8,"height":0.8},"minecraft:loot":{"table":"loot_tables/entities/pufferfish.json"},"minecraft:scale":{"value":1.2},"minecraft:health":{"value":3,"max":3},"minecraft:hurt_on_condition":{"damage_conditions":[{"filters":{"test":"in_lava","subject":"self","operator":"==","value":true},"cause":"lava","damage_per_tick":4}]},"minecraft:breathable":{"total_supply":15,"suffocate_time":0,"breathes_air":false,"breathes_water":true},"minecraft:movement":{"value":0.13},"minecraft:underwater_movement":{"value":0.13},"minecraft:navigation.generic":{"is_amphibious":false,"can_path_over_water":false,"can_swim":true,"can_walk":false,"can_breach":false,"can_sink":false},"minecraft:movement.sway":{"sway_amplitude":0},"minecraft:despawn":{"despawn_from_distance":{"min_distance":32,"max_distance":40}},"minecraft:behavior.random_swim":{"priority":3,"speed_multiplier":1,"xz_dist":16,"y_dist":4,"interval":0},"minecraft:behavior.swim_wander":{"priority":5,"interval":1,"look_ahead":2,"speed_multiplier":1,"wander_time":5},"minecraft:behavior.avoid_mob_type":{"priority":1,"entity_types":[{"filters":{"any_of":[{"test":"is_family","subject":"other","value":"player"},{"test":"is_family","subject":"other","value":"axolotl"}]},"max_dist":6,"walk_speed_multiplier":1.5,"sprint_speed_multiplier":2}]},"minecraft:flocking":{"in_water":true,"match_variants":false,"use_center_of_mass":true,"low_flock_limit":4,"high_flock_limit":8,"goal_weight":2,"loner_chance":0.1,"influence_radius":3,"breach_influence":7,"separation_weight":1.75,"separation_threshold":0.95,"cohesion_weight":2,"cohesion_threshold":1.95,"innner_cohesion_threshold":1.25,"min_height":1.5,"max_height":6,"block_distance":2,"block_weight":0.85},"minecraft:nameable":{},"minecraft:physics":{"has_gravity":false},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:conditional_bandwidth_optimization":{}},"events":{"minecraft:entity_spawned":{"add":{"component_groups":["minecraft:normal_puff"]}},"minecraft:to_full_puff":{"add":{"component_groups":["minecraft:full_puff","minecraft:deflate_sensor_buffer"]},"remove":{"component_groups":["minecraft:normal_puff"]}},"minecraft:start_half_puff":{"add":{"component_groups":["minecraft:half_puff_primary"]},"remove":{"component_groups":["minecraft:normal_puff"]}},"minecraft:on_half_puff":{"add":{"component_groups":["minecraft:half_puff_secondary"]},"remove":{"component_groups":["minecraft:half_puff_primary"]}},"minecraft:start_full_puff":{"add":{"component_groups":["minecraft:full_puff","minecraft:deflate_sensor_buffer"]},"remove":{"component_groups":["minecraft:half_puff_secondary"]}},"minecraft:on_full_puff":{"add":{"component_groups":["minecraft:deflate_sensor"]},"remove":{"component_groups":["minecraft:deflate_sensor_buffer"]}},"minecraft:from_full_puff":{"add":{"component_groups":["minecraft:start_deflate"]},"remove":{"component_groups":["minecraft:deflate_sensor"]}},"minecraft:on_deflate":{"add":{"component_groups":["minecraft:half_puff_secondary"]},"remove":{"component_groups":["minecraft:full_puff","minecraft:start_deflate"]}},"minecraft:on_normal_puff":{"add":{"component_groups":["minecraft:normal_puff"]},"remove":{"component_groups":["minecraft:half_puff_secondary"]}}}}},"minecraft:rabbit":{"format_version":"1.17.20","minecraft:entity":{"description":{"identifier":"minecraft:rabbit","is_spawnable":true,"is_summonable":true,"is_experimental":false},"component_groups":{"baby":{"minecraft:is_baby":{},"minecraft:scale":{"value":0.4},"minecraft:ageable":{"duration":1200,"feed_items":["golden_carrot","carrot","yellow_flower"],"grow_up":{"event":"grow_up","target":"self"}},"minecraft:behavior.follow_parent":{"priority":6,"speed_multiplier":1.1}},"adult":{"minecraft:experience_reward":{"on_bred":"Math.Random(1,7)","on_death":"query.last_hit_by_player ? Math.Random(1,3) : 0"},"minecraft:loot":{"table":"loot_tables/entities/rabbit.json"},"minecraft:scale":{"value":0.6},"minecraft:behavior.breed":{"priority":2,"speed_multiplier":1},"minecraft:breedable":{"breed_items":["golden_carrot","carrot","yellow_flower"],"breeds_with":{"mate_type":"minecraft:rabbit","baby_type":"minecraft:rabbit"},"require_tame":false,"mutation_factor":{"variant":0.2}}},"coat_brown":{"minecraft:variant":{"value":0}},"coat_white":{"minecraft:variant":{"value":1}},"coat_black":{"minecraft:variant":{"value":2}},"coat_splotched":{"minecraft:variant":{"value":3}},"coat_desert":{"minecraft:variant":{"value":4}},"coat_salt":{"minecraft:variant":{"value":5}}},"components":{"minecraft:is_hidden_when_invisible":{},"minecraft:type_family":{"family":["rabbit","lightweight","mob"]},"minecraft:breathable":{"total_supply":15,"suffocate_time":0},"minecraft:nameable":{},"minecraft:health":{"value":3,"max":3},"minecraft:scale":{"value":0.6},"minecraft:hurt_on_condition":{"damage_conditions":[{"filters":{"test":"in_lava","subject":"self","operator":"==","value":true},"cause":"lava","damage_per_tick":4}]},"minecraft:collision_box":{"width":0.67,"height":0.67},"minecraft:movement":{"value":0.3},"minecraft:navigation.walk":{"can_path_over_water":true,"avoid_water":true},"minecraft:movement.skip":{},"minecraft:jump.dynamic":{},"minecraft:can_climb":{},"minecraft:leashable":{"soft_distance":4,"hard_distance":6,"max_distance":10},"minecraft:balloonable":{"mass":0.4},"minecraft:despawn":{"despawn_from_distance":{}},"minecraft:behavior.float":{"priority":0},"minecraft:behavior.panic":{"priority":1,"speed_multiplier":2.2},"minecraft:behavior.avoid_mob_type":{"priority":4,"entity_types":[{"filters":{"test":"is_family","subject":"other","value":"player"},"max_dist":8,"walk_speed_multiplier":1.5,"sprint_speed_multiplier":1.8},{"filters":{"test":"is_family","subject":"other","value":"wolf"},"max_dist":4,"walk_speed_multiplier":1.5,"sprint_speed_multiplier":1.8},{"filters":{"test":"is_family","subject":"other","value":"monster"},"max_dist":4,"walk_speed_multiplier":1.5,"sprint_speed_multiplier":1.5}]},"minecraft:behavior.breed":{"priority":2,"speed_multiplier":0.8},"minecraft:behavior.tempt":{"priority":3,"speed_multiplier":1,"items":["golden_carrot","carrot","yellow_flower"]},"minecraft:behavior.raid_garden":{"priority":5,"blocks":["minecraft:carrots"],"search_range":16,"goal_radius":0.8},"minecraft:behavior.random_stroll":{"priority":6,"speed_multiplier":0.6,"xz_dist":2,"y_dist":1},"minecraft:behavior.look_at_player":{"priority":11},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:conditional_bandwidth_optimization":{},"minecraft:block_climber":{}},"events":{"in_desert":{"add":{"component_groups":["coat_desert"]}},"in_snow":{"randomize":[{"weight":80,"add":{"component_groups":["coat_white"]}},{"weight":20,"add":{"component_groups":["coat_splotched"]}}]},"minecraft:entity_spawned":{"sequence":[{"randomize":[{"weight":3,"add":{"component_groups":["adult"]}},{"weight":1,"add":{"component_groups":["baby"]}}]},{"filters":{"test":"has_component","operator":"!=","value":"minecraft:variant"},"randomize":[{"weight":50,"add":{"component_groups":["coat_brown"]}},{"weight":40,"add":{"component_groups":["coat_black"]}},{"weight":10,"add":{"component_groups":["coat_salt"]}}]},{"filters":{"test":"is_biome","value":"desert"},"add":{"component_groups":["coat_desert"]}},{"filters":{"test":"is_snow_covered","value":true},"randomize":[{"weight":80,"add":{"component_groups":["coat_white"]}},{"weight":20,"add":{"component_groups":["coat_splotched"]}}]}]},"minecraft:entity_born":{"sequence":[{"add":{"component_groups":["baby"]}},{"filters":{"test":"has_component","operator":"!=","value":"minecraft:variant"},"randomize":[{"weight":50,"add":{"component_groups":["coat_brown"]}},{"weight":40,"add":{"component_groups":["coat_black"]}},{"weight":10,"add":{"component_groups":["coat_salt"]}}]},{"filters":{"test":"is_biome","value":"desert"},"add":{"component_groups":["coat_desert"]}},{"filters":{"test":"is_snow_covered","value":true},"randomize":[{"weight":80,"add":{"component_groups":["coat_white"]}},{"weight":20,"add":{"component_groups":["coat_splotched"]}}]}]},"grow_up":{"remove":{"component_groups":["baby"]},"add":{"component_groups":["adult"]}}}}},"minecraft:ravager":{"format_version":"1.17.20","minecraft:entity":{"description":{"identifier":"minecraft:ravager","is_spawnable":true,"is_summonable":true,"is_experimental":false},"component_groups":{"minecraft:celebrate":{"minecraft:behavior.celebrate":{"priority":5,"celebration_sound":"celebrate","sound_interval":{"range_min":2,"range_max":7},"jump_interval":{"range_min":1,"range_max":3.5},"duration":30,"on_celebration_end_event":{"event":"minecraft:stop_celebrating","target":"self"}}},"minecraft:pillager_rider":{"minecraft:addrider":{"entity_type":"minecraft:pillager"}},"minecraft:pillager_rider_for_raid":{"minecraft:addrider":{"entity_type":"minecraft:pillager","spawn_event":"minecraft:spawn_for_raid"}},"minecraft:evoker_rider_for_raid":{"minecraft:addrider":{"entity_type":"minecraft:evocation_illager","spawn_event":"minecraft:spawn_for_raid"}},"minecraft:pillager_captain_rider":{"minecraft:addrider":{"entity_type":"minecraft:pillager","spawn_event":"minecraft:spawn_as_illager_captain"}},"minecraft:vindicator_rider":{"minecraft:addrider":{"entity_type":"minecraft:vindicator"}},"minecraft:vindicator_captain_rider":{"minecraft:addrider":{"entity_type":"minecraft:vindicator","spawn_event":"minecraft:spawn_as_illager_captain"}},"minecraft:raid_configuration":{"minecraft:dweller":{"dwelling_type":"village","dweller_role":"hostile","update_interval_base":60,"update_interval_variant":40,"can_find_poi":false,"can_migrate":true,"first_founding_reward":0},"minecraft:behavior.move_to_village":{"priority":5,"speed_multiplier":1,"goal_radius":2},"minecraft:behavior.random_stroll":{"priority":6,"speed_multiplier":1},"minecraft:ambient_sound_interval":{"value":4,"range":8,"event_name":"ambient.in.raid"}},"minecraft:raid_persistence":{"minecraft:persistent":{}},"minecraft:hostile":{"minecraft:movement":{"value":0.4},"minecraft:behavior.delayed_attack":{"priority":4,"attack_once":false,"track_target":true,"require_complete_path":false,"random_stop_interval":0,"reach_multiplier":1.5,"speed_multiplier":1,"attack_duration":0.75,"hit_delay_pct":0.5},"minecraft:behavior.random_stroll":{"priority":6,"speed_multiplier":0.4},"minecraft:behavior.look_at_player":{"priority":7,"look_distance":6,"angle_of_view_horizontal":45,"probability":1},"minecraft:behavior.look_at_entity":{"priority":10,"look_distance":8,"angle_of_view_horizontal":45,"filters":{"test":"is_family","subject":"other","value":"mob"}},"minecraft:behavior.hurt_by_target":{"priority":2,"entity_types":{"filters":{"test":"is_family","subject":"other","operator":"!=","value":"illager"},"max_dist":64}},"minecraft:behavior.nearest_attackable_target":{"priority":3,"must_see":true,"within_radius":16,"entity_types":[{"filters":{"any_of":[{"subject":"other","test":"is_family","value":"player"},{"subject":"other","test":"is_family","value":"irongolem"},{"test":"is_family","subject":"other","value":"wandering_trader"}]},"max_dist":16},{"filters":{"all_of":[{"test":"is_family","subject":"other","value":"villager"},{"test":"has_component","subject":"other","operator":"!=","value":"minecraft:is_baby"}]},"max_dist":16}]},"minecraft:behavior.mount_pathing":{"priority":5,"speed_multiplier":1.25,"target_dist":0,"track_target":true}},"stunned":{"minecraft:is_stunned":{},"minecraft:timer":{"looping":false,"time":2,"time_down_event":{"event":"minecraft:start_roar"}}},"roaring":{"minecraft:behavior.knockback_roar":{"priority":1,"duration":1,"attack_time":0.5,"knockback_damage":6,"knockback_horizontal_strength":3,"knockback_vertical_strength":3,"knockback_range":4,"knockback_filters":{"test":"is_family","subject":"other","operator":"!=","value":"ravager"},"damage_filters":{"test":"is_family","subject":"other","operator":"!=","value":"illager"},"on_roar_end":{"event":"minecraft:end_roar"},"cooldown_time":0.1}}},"components":{"minecraft:is_hidden_when_invisible":{},"minecraft:experience_reward":{"on_death":"query.last_hit_by_player ? 20 : 0"},"minecraft:behavior.float":{"priority":0},"minecraft:ravager_blocked":{"knockback_strength":3,"reaction_choices":[{"weight":1,"value":{"event":"minecraft:become_stunned","target":"self"}},{"weight":1}]},"minecraft:attack":{"damage":12},"minecraft:breathable":{"suffocate_time":0,"total_supply":15},"minecraft:collision_box":{"height":2.2,"width":1.95},"minecraft:health":{"max":100,"value":100},"minecraft:hurt_on_condition":{"damage_conditions":[{"filters":{"test":"in_lava","subject":"self","operator":"==","value":true},"cause":"lava","damage_per_tick":4}]},"minecraft:jump.static":{},"minecraft:loot":{"table":"loot_tables/entities/ravager.json"},"minecraft:knockback_resistance":{"value":0.75},"minecraft:movement":{"value":0},"minecraft:movement.basic":{},"minecraft:nameable":{},"minecraft:navigation.walk":{"avoid_damage_blocks":true,"can_path_over_water":true,"can_sink":false},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:conditional_bandwidth_optimization":{},"minecraft:despawn":{"despawn_from_distance":{}},"minecraft:break_blocks":{"breakable_blocks":["bamboo","bamboo_sapling","beetroot","brown_mushroom","carrots","carved_pumpkin","chorus_flower","chorus_plant","deadbush","double_plant","leaves","leaves2","lit_pumpkin","melon_block","melon_stem","potatoes","pumpkin","pumpkin_stem","red_flower","red_mushroom","crimson_fungus","warped_fungus","reeds","sapling","snow_layer","sweet_berry_bush","tallgrass","turtle_egg","vine","waterlily","wheat","yellow_flower","azalea","flowering_azalea","azalea_leaves","azalea_leaves_flowered","cave_vines","cave_vines_body_with_berries","cave_vines_head_with_berries","small_dripleaf_block","big_dripleaf","spore_blossom","hanging_roots","mangrove_leaves"]},"minecraft:follow_range":{"value":64},"minecraft:rideable":{"seat_count":1,"family_types":["pillager","vindicator","evocation_illager"],"seats":{"position":[0,2.1,-0.3]}},"minecraft:type_family":{"family":["monster","ravager","mob"]}},"events":{"minecraft:entity_spawned":{"add":{"component_groups":["minecraft:hostile"]}},"minecraft:spawn_for_raid":{"add":{"component_groups":["minecraft:hostile","minecraft:raid_configuration","minecraft:raid_persistence"]}},"minecraft:spawn_for_raid_with_evoker_rider":{"add":{"component_groups":["minecraft:hostile","minecraft:evoker_rider_for_raid","minecraft:raid_configuration","minecraft:raid_persistence"]}},"minecraft:spawn_for_raid_with_pillager_rider":{"add":{"component_groups":["minecraft:hostile","minecraft:pillager_rider_for_raid","minecraft:raid_configuration","minecraft:raid_persistence"]}},"minecraft:spawn_with_pillager_rider":{"add":{"component_groups":["minecraft:hostile","minecraft:pillager_rider"]}},"minecraft:spawn_with_pillager_captain_rider":{"add":{"component_groups":["minecraft:hostile","minecraft:pillager_captain_rider"]}},"minecraft:spawn_with_vindicator_rider":{"add":{"component_groups":["minecraft:hostile","minecraft:vindicator_rider"]}},"minecraft:spawn_with_vindicator_captain_rider":{"add":{"component_groups":["minecraft:hostile","minecraft:vindicator_captain_rider"]}},"minecraft:become_stunned":{"add":{"component_groups":["stunned"]},"remove":{"component_groups":["minecraft:hostile"]}},"minecraft:start_roar":{"add":{"component_groups":["roaring"]},"remove":{"component_groups":["stunned"]}},"minecraft:end_roar":{"add":{"component_groups":["minecraft:hostile"]},"remove":{"component_groups":["roaring"]}},"minecraft:start_celebrating":{"sequence":[{"add":{"component_groups":["minecraft:celebrate"]}},{"filters":{"test":"has_nametag","value":false},"remove":{"component_groups":["minecraft:raid_persistence"]}}]},"minecraft:stop_celebrating":{"remove":{"component_groups":["minecraft:celebrate"]}},"minecraft:raid_expired":{"sequence":[{"filters":{"test":"has_nametag","value":false},"remove":{"component_groups":["minecraft:raid_persistence"]}}]}}}},"minecraft:salmon":{"format_version":"1.16.0","minecraft:entity":{"description":{"identifier":"minecraft:salmon","is_spawnable":true,"is_summonable":true,"is_experimental":false},"component_groups":{"scale_small":{"minecraft:scale":{"value":0.5},"minecraft:loot":{"table":"loot_tables/entities/salmon_normal.json"}},"scale_normal":{"minecraft:scale":{"value":1},"minecraft:loot":{"table":"loot_tables/entities/salmon_normal.json"}},"scale_large":{"minecraft:scale":{"value":1.5},"minecraft:loot":{"table":"loot_tables/entities/salmon_large.json"}}},"components":{"minecraft:is_hidden_when_invisible":{},"minecraft:experience_reward":{"on_death":"query.last_hit_by_player ? Math.Random(1,3) : 0"},"minecraft:type_family":{"family":["salmon","fish"]},"minecraft:collision_box":{"width":0.5,"height":0.5},"minecraft:breathable":{"total_supply":15,"suffocate_time":0,"breathes_air":false,"breathes_water":true},"minecraft:health":{"value":3,"max":3},"minecraft:hurt_on_condition":{"damage_conditions":[{"filters":{"test":"in_lava","subject":"self","operator":"==","value":true},"cause":"lava","damage_per_tick":4}]},"minecraft:movement":{"value":0.12},"minecraft:underwater_movement":{"value":0.12},"minecraft:navigation.generic":{"is_amphibious":false,"can_path_over_water":false,"can_swim":true,"can_walk":false,"can_breach":false,"can_sink":false},"minecraft:movement.sway":{"sway_amplitude":0},"minecraft:physics":{"has_gravity":false},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:despawn":{"despawn_from_distance":{"min_distance":32,"max_distance":40}},"minecraft:behavior.avoid_mob_type":{"priority":1,"entity_types":[{"filters":{"any_of":[{"test":"is_family","subject":"other","value":"player"},{"test":"is_family","subject":"other","value":"axolotl"}]},"max_dist":3,"max_flee":10,"walk_speed_multiplier":1.5,"sprint_speed_multiplier":2}]},"minecraft:behavior.swim_idle":{"priority":5,"idle_time":5,"success_rate":0.1},"minecraft:behavior.random_swim":{"speed_multiplier":1,"priority":3,"xz_dist":16,"y_dist":4,"interval":0},"minecraft:behavior.swim_wander":{"priority":4,"interval":0.0166,"look_ahead":5,"speed_multiplier":0.014,"wander_time":5},"minecraft:flocking":{"in_water":true,"match_variants":false,"use_center_of_mass":false,"low_flock_limit":4,"high_flock_limit":8,"goal_weight":2,"loner_chance":0.1,"influence_radius":3,"breach_influence":7,"separation_weight":0.65,"separation_threshold":0.15,"cohesion_weight":2.25,"cohesion_threshold":1.5,"innner_cohesion_threshold":1.5,"min_height":4,"max_height":4,"block_distance":1,"block_weight":0.75},"minecraft:nameable":{},"minecraft:conditional_bandwidth_optimization":{}},"events":{"minecraft:entity_spawned":{"randomize":[{"weight":30,"add":{"component_groups":["adult","scale_small"]}},{"weight":50,"add":{"component_groups":["adult","scale_normal"]}},{"weight":15,"add":{"component_groups":["adult","scale_large"]}}]}}}},"minecraft:sheep":{"format_version":"1.16.0","minecraft:entity":{"description":{"identifier":"minecraft:sheep","is_spawnable":true,"is_summonable":true,"is_experimental":false},"component_groups":{"minecraft:loot_sheared":{"minecraft:loot":{"table":"loot_tables/entities/sheep_sheared.json"}},"minecraft:loot_wooly":{"minecraft:loot":{"table":"loot_tables/entities/sheep.json"}},"minecraft:rideable_sheared":{"minecraft:rideable":{"seat_count":1,"family_types":["zombie"],"seats":{"position":[0,0.9,0]}}},"minecraft:rideable_wooly":{"minecraft:rideable":{"seat_count":1,"family_types":["zombie"],"seats":{"position":[0,0.975,0]}}},"minecraft:sheep_baby":{"minecraft:is_baby":{},"minecraft:scale":{"value":0.5},"minecraft:ageable":{"duration":1200,"feed_items":"wheat","grow_up":{"event":"minecraft:ageable_grow_up","target":"self"}},"minecraft:behavior.follow_parent":{"priority":6,"speed_multiplier":1.1}},"minecraft:sheep_adult":{"minecraft:experience_reward":{"on_bred":"Math.Random(1,7)","on_death":"query.last_hit_by_player ? Math.Random(1,3) : 0"},"minecraft:behavior.breed":{"priority":3,"speed_multiplier":1},"minecraft:breedable":{"require_tame":false,"breeds_with":{"mate_type":"minecraft:sheep","baby_type":"minecraft:sheep"},"breed_items":"wheat"}},"minecraft:sheep_dyeable":{"minecraft:is_dyeable":{"interact_text":"action.interact.dye"}},"minecraft:sheep_sheared":{"minecraft:is_sheared":{}},"minecraft:sheep_white":{"minecraft:color":{"value":0}},"minecraft:sheep_brown":{"minecraft:color":{"value":12}},"minecraft:sheep_black":{"minecraft:color":{"value":15}},"minecraft:sheep_gray":{"minecraft:color":{"value":8}},"minecraft:sheep_light_gray":{"minecraft:color":{"value":7}},"minecraft:sheep_pink":{"minecraft:color":{"value":6}},"minecraft:sheep_red":{"minecraft:color":{"value":14}}},"components":{"minecraft:is_hidden_when_invisible":{},"minecraft:type_family":{"family":["sheep","mob"]},"minecraft:breathable":{"total_supply":15,"suffocate_time":0},"minecraft:collision_box":{"width":0.9,"height":1.3},"minecraft:nameable":{},"minecraft:health":{"value":8,"max":8},"minecraft:hurt_on_condition":{"damage_conditions":[{"filters":{"test":"in_lava","subject":"self","operator":"==","value":true},"cause":"lava","damage_per_tick":4}]},"minecraft:movement":{"value":0.25},"minecraft:navigation.walk":{"can_path_over_water":true,"avoid_water":true},"minecraft:movement.basic":{},"minecraft:jump.static":{},"minecraft:can_climb":{},"minecraft:interact":{"interactions":[{"cooldown":2.5,"use_item":false,"hurt_item":1,"spawn_items":{"table":"loot_tables/entities/sheep_shear.json"},"play_sounds":"shear","interact_text":"action.interact.shear","vibration":"shear","on_interact":{"filters":{"all_of":[{"test":"has_equipment","subject":"other","domain":"hand","value":"shears"},{"test":"is_family","subject":"other","value":"player"},{"test":"has_component","operator":"!=","value":"minecraft:is_baby"},{"test":"has_component","value":"minecraft:is_dyeable"}]},"event":"minecraft:on_sheared","target":"self"}}]},"minecraft:leashable":{"soft_distance":4,"hard_distance":6,"max_distance":10},"minecraft:balloonable":{"mass":0.75},"minecraft:despawn":{"despawn_from_distance":{}},"minecraft:behavior.float":{"priority":0},"minecraft:behavior.panic":{"priority":1,"speed_multiplier":1.25},"minecraft:behavior.mount_pathing":{"priority":2,"speed_multiplier":1.5,"target_dist":0,"track_target":true},"minecraft:behavior.tempt":{"priority":4,"speed_multiplier":1.25,"items":["wheat"]},"minecraft:behavior.follow_parent":{"priority":5,"speed_multiplier":1.1},"minecraft:behavior.eat_block":{"priority":6,"success_chance":"query.is_baby ? 0.02 : 0.001","time_until_eat":1.8,"eat_and_replace_block_pairs":[{"eat_block":"grass","replace_block":"dirt"},{"eat_block":"tallgrass","replace_block":"air"}],"on_eat":{"event":"minecraft:on_eat_block","target":"self"}},"minecraft:behavior.random_stroll":{"priority":7,"speed_multiplier":0.8},"minecraft:behavior.look_at_player":{"priority":8,"look_distance":6,"probability":0.02},"minecraft:behavior.random_look_around":{"priority":9},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:conditional_bandwidth_optimization":{}},"events":{"minecraft:entity_spawned":{"sequence":[{"randomize":[{"weight":95,"remove":{},"trigger":"spawn_adult"},{"weight":5,"remove":{},"trigger":"spawn_baby"}]},{"randomize":[{"weight":81836,"add":{"component_groups":["minecraft:sheep_white"]}},{"weight":5000,"add":{"component_groups":["minecraft:sheep_black"]}},{"weight":5000,"add":{"component_groups":["minecraft:sheep_light_gray"]}},{"weight":5000,"add":{"component_groups":["minecraft:sheep_gray"]}},{"weight":3000,"add":{"component_groups":["minecraft:sheep_brown"]}},{"weight":164,"add":{"component_groups":["minecraft:sheep_pink"]}}]}]},"spawn_adult":{"add":{"component_groups":["minecraft:sheep_adult","minecraft:sheep_dyeable","minecraft:rideable_wooly","minecraft:loot_wooly"]}},"spawn_baby":{"add":{"component_groups":["minecraft:sheep_baby","minecraft:sheep_dyeable","minecraft:rideable_sheared"]}},"minecraft:entity_born":{"remove":{},"add":{"component_groups":["minecraft:sheep_baby","minecraft:sheep_dyeable","minecraft:rideable_sheared"]}},"minecraft:ageable_grow_up":{"remove":{"component_groups":["minecraft:sheep_baby"]},"add":{"component_groups":["minecraft:sheep_adult","minecraft:rideable_wooly","minecraft:loot_wooly"]}},"minecraft:on_sheared":{"remove":{"component_groups":["minecraft:sheep_dyeable","minecraft:loot_wooly"]},"add":{"component_groups":["minecraft:sheep_sheared","minecraft:rideable_sheared","minecraft:loot_sheared"]}},"minecraft:on_eat_block":{"sequence":[{"remove":{"component_groups":["minecraft:sheep_sheared"]},"add":{"component_groups":["minecraft:sheep_dyeable"]}},{"filters":{"test":"has_component","subject":"other","operator":"!=","value":"minecraft:is_baby"},"add":{"component_groups":["minecraft:rideable_wooly","minecraft:loot_wooly"]},"remove":{"component_groups":["minecraft:loot_sheared"]}}]},"wololo":{"add":{"component_groups":["minecraft:sheep_red"]}}}}},"minecraft:shulker":{"format_version":"1.16.0","minecraft:entity":{"description":{"identifier":"minecraft:shulker","is_spawnable":true,"is_summonable":true,"is_experimental":false},"component_groups":{"minecraft:shulker_purple":{"minecraft:variant":{"value":5}},"minecraft:shulker_black":{"minecraft:variant":{"value":0}},"minecraft:shulker_blue":{"minecraft:variant":{"value":4}},"minecraft:shulker_brown":{"minecraft:variant":{"value":3}},"minecraft:shulker_cyan":{"minecraft:variant":{"value":6}},"minecraft:shulker_gray":{"minecraft:variant":{"value":8}},"minecraft:shulker_green":{"minecraft:variant":{"value":2}},"minecraft:shulker_light_blue":{"minecraft:variant":{"value":12}},"minecraft:shulker_lime":{"minecraft:variant":{"value":10}},"minecraft:shulker_magenta":{"minecraft:variant":{"value":13}},"minecraft:shulker_orange":{"minecraft:variant":{"value":14}},"minecraft:shulker_pink":{"minecraft:variant":{"value":9}},"minecraft:shulker_red":{"minecraft:variant":{"value":1}},"minecraft:shulker_silver":{"minecraft:variant":{"value":7}},"minecraft:shulker_undyed":{"minecraft:variant":{"value":16}},"minecraft:shulker_white":{"minecraft:variant":{"value":15}},"minecraft:shulker_yellow":{"minecraft:variant":{"value":11}}},"components":{"minecraft:is_hidden_when_invisible":{},"minecraft:experience_reward":{"on_death":"query.last_hit_by_player ? 5 : 0"},"minecraft:type_family":{"family":["shulker","monster","mob"]},"minecraft:breathable":{"total_supply":15,"suffocate_time":0,"breathes_lava":false,"breathes_water":false},"minecraft:nameable":{},"minecraft:conditional_bandwidth_optimization":{"default_values":{"max_optimized_distance":80,"max_dropped_ticks":10,"use_motion_prediction_hints":true}},"minecraft:health":{"value":30,"max":30},"minecraft:fire_immune":true,"minecraft:movement":{"value":0,"max":0},"minecraft:loot":{"table":"loot_tables/entities/shulker.json"},"minecraft:peek":{"on_open":{"event":"minecraft:on_open"},"on_close":{"event":"minecraft:on_close"},"on_target_open":{"event":"minecraft:on_open"}},"minecraft:behavior.look_at_player":{"priority":1,"look_distance":6,"probability":0.02},"minecraft:shooter":{"def":"minecraft:shulker_bullet"},"minecraft:behavior.random_look_around":{"priority":8},"minecraft:behavior.ranged_attack":{"attack_interval_min":1,"attack_interval_max":3,"attack_radius":15},"minecraft:behavior.hurt_by_target":{"priority":2,"entity_types":{"filters":{"test":"is_family","subject":"other","operator":"!=","value":"shulker"}}},"minecraft:behavior.nearest_attackable_target":{"priority":3,"entity_types":{"filters":{"test":"is_family","subject":"other","value":"player"},"max_dist":16},"must_see":true},"minecraft:navigation.walk":{},"minecraft:movement.basic":{},"minecraft:interact":{"interactions":[{"on_interact":{"filters":{"all_of":[{"any_of":[{"test":"has_equipment","subject":"other","domain":"hand","value":"dye:0"},{"test":"has_equipment","subject":"other","domain":"hand","value":"dye:16"}]},{"test":"is_family","subject":"other","value":"player"},{"test":"has_ability","subject":"other","value":"instabuild"}]},"event":"minecraft:turn_black"},"use_item":true},{"on_interact":{"filters":{"all_of":[{"test":"has_equipment","subject":"other","domain":"hand","value":"dye:8"},{"test":"is_family","subject":"other","value":"player"},{"test":"has_ability","subject":"other","value":"instabuild"}]},"event":"minecraft:turn_gray"},"use_item":true},{"on_interact":{"filters":{"all_of":[{"test":"has_equipment","subject":"other","domain":"hand","value":"dye:7"},{"test":"is_family","subject":"other","value":"player"},{"test":"has_ability","subject":"other","value":"instabuild"}]},"event":"minecraft:turn_silver"},"use_item":true},{"on_interact":{"filters":{"all_of":[{"any_of":[{"test":"has_equipment","subject":"other","domain":"hand","value":"dye:15"},{"test":"has_equipment","subject":"other","domain":"hand","value":"dye:19"}]},{"test":"is_family","subject":"other","value":"player"},{"test":"has_ability","subject":"other","value":"instabuild"}]},"event":"minecraft:turn_white"},"use_item":true},{"on_interact":{"filters":{"all_of":[{"test":"has_equipment","subject":"other","domain":"hand","value":"dye:12"},{"test":"is_family","subject":"other","value":"player"},{"test":"has_ability","subject":"other","value":"instabuild"}]},"event":"minecraft:turn_light_blue"},"use_item":true},{"on_interact":{"filters":{"all_of":[{"test":"has_equipment","subject":"other","domain":"hand","value":"dye:14"},{"test":"is_family","subject":"other","value":"player"},{"test":"has_ability","subject":"other","value":"instabuild"}]},"event":"minecraft:turn_orange"},"use_item":true},{"on_interact":{"filters":{"all_of":[{"test":"has_equipment","subject":"other","domain":"hand","value":"dye:1"},{"test":"is_family","subject":"other","value":"player"},{"test":"has_ability","subject":"other","value":"instabuild"}]},"event":"minecraft:turn_red"},"use_item":true},{"on_interact":{"filters":{"all_of":[{"any_of":[{"test":"has_equipment","subject":"other","domain":"hand","value":"dye:4"},{"test":"has_equipment","subject":"other","domain":"hand","value":"dye:18"}]},{"test":"is_family","subject":"other","value":"player"},{"test":"has_ability","subject":"other","value":"instabuild"}]},"event":"minecraft:turn_blue"},"use_item":true},{"on_interact":{"filters":{"all_of":[{"test":"has_equipment","subject":"other","domain":"hand","value":"dye:5"},{"test":"is_family","subject":"other","value":"player"},{"test":"has_ability","subject":"other","value":"instabuild"}]},"event":"minecraft:turn_purple"},"use_item":true},{"on_interact":{"filters":{"all_of":[{"test":"has_equipment","subject":"other","domain":"hand","value":"dye:13"},{"test":"is_family","subject":"other","value":"player"},{"test":"has_ability","subject":"other","value":"instabuild"}]},"event":"minecraft:turn_magenta"},"use_item":true},{"on_interact":{"filters":{"all_of":[{"test":"has_equipment","subject":"other","domain":"hand","value":"dye:9"},{"test":"is_family","subject":"other","value":"player"},{"test":"has_ability","subject":"other","value":"instabuild"}]},"event":"minecraft:turn_pink"},"use_item":true},{"on_interact":{"filters":{"all_of":[{"any_of":[{"test":"has_equipment","subject":"other","domain":"hand","value":"dye:3"},{"test":"has_equipment","subject":"other","domain":"hand","value":"dye:17"}]},{"test":"is_family","subject":"other","value":"player"},{"test":"has_ability","subject":"other","value":"instabuild"}]},"event":"minecraft:turn_brown"},"use_item":true},{"on_interact":{"filters":{"all_of":[{"test":"has_equipment","subject":"other","domain":"hand","value":"dye:11"},{"test":"is_family","subject":"other","value":"player"},{"test":"has_ability","subject":"other","value":"instabuild"}]},"event":"minecraft:turn_yellow"},"use_item":true},{"on_interact":{"filters":{"all_of":[{"test":"has_equipment","subject":"other","domain":"hand","value":"dye:10"},{"test":"is_family","subject":"other","value":"player"},{"test":"has_ability","subject":"other","value":"instabuild"}]},"event":"minecraft:turn_lime"},"use_item":true},{"on_interact":{"filters":{"all_of":[{"test":"has_equipment","subject":"other","domain":"hand","value":"dye:2"},{"test":"is_family","subject":"other","value":"player"},{"test":"has_ability","subject":"other","value":"instabuild"}]},"event":"minecraft:turn_green"},"use_item":true},{"on_interact":{"filters":{"all_of":[{"test":"has_equipment","subject":"other","domain":"hand","value":"dye:6"},{"test":"is_family","subject":"other","value":"player"},{"test":"has_ability","subject":"other","value":"instabuild"}]},"event":"minecraft:turn_cyan"},"use_item":true}]},"minecraft:physics":{}},"events":{"minecraft:entity_spawned":{"add":{"component_groups":["minecraft:shulker_undyed"]}},"minecraft:turn_purple":{"add":{"component_groups":["minecraft:shulker_purple"]}},"minecraft:turn_black":{"add":{"component_groups":["minecraft:shulker_black"]}},"minecraft:turn_blue":{"add":{"component_groups":["minecraft:shulker_blue"]}},"minecraft:turn_brown":{"add":{"component_groups":["minecraft:shulker_brown"]}},"minecraft:turn_cyan":{"add":{"component_groups":["minecraft:shulker_cyan"]}},"minecraft:turn_gray":{"add":{"component_groups":["minecraft:shulker_gray"]}},"minecraft:turn_green":{"add":{"component_groups":["minecraft:shulker_green"]}},"minecraft:turn_light_blue":{"add":{"component_groups":["minecraft:shulker_light_blue"]}},"minecraft:turn_lime":{"add":{"component_groups":["minecraft:shulker_lime"]}},"minecraft:turn_magenta":{"add":{"component_groups":["minecraft:shulker_magenta"]}},"minecraft:turn_orange":{"add":{"component_groups":["minecraft:shulker_orange"]}},"minecraft:turn_pink":{"add":{"component_groups":["minecraft:shulker_pink"]}},"minecraft:turn_red":{"add":{"component_groups":["minecraft:shulker_red"]}},"minecraft:turn_silver":{"add":{"component_groups":["minecraft:shulker_silver"]}},"minecraft:turn_white":{"add":{"component_groups":["minecraft:shulker_white"]}},"minecraft:turn_yellow":{"add":{"component_groups":["minecraft:shulker_yellow"]}}}}},"minecraft:shulker_bullet":{"format_version":"1.10.0","minecraft:entity":{"description":{"identifier":"minecraft:shulker_bullet","is_spawnable":false,"is_summonable":false,"is_experimental":false},"components":{"minecraft:collision_box":{"width":0.625,"height":0.625},"minecraft:projectile":{"on_hit":{"impact_damage":{"damage":4,"knockback":true,"should_bounce":true},"mob_effect":{"effect":"levitation","durationeasy":200,"durationnormal":200,"durationhard":200,"amplifier":0},"remove_on_hit":{},"particle_on_hit":{"particle_type":"largeexplode","on_other_hit":true}},"hit_sound":"bullet.hit","destroyOnHurt":true,"crit_particle_on_hurt":true,"power":1.6,"gravity":0.05,"uncertainty_base":16,"uncertainty_multiplier":4,"anchor":1,"offset":[0,-0.1,0],"homing":true},"minecraft:physics":{"has_collision":false},"minecraft:conditional_bandwidth_optimization":{"default_values":{"max_optimized_distance":80,"max_dropped_ticks":7,"use_motion_prediction_hints":true}}}}},"minecraft:silverfish":{"format_version":"1.17.10","minecraft:entity":{"description":{"identifier":"minecraft:silverfish","is_spawnable":true,"is_summonable":true,"is_experimental":false},"component_groups":{"minecraft:silverfish_calm":{"minecraft:on_target_acquired":{"event":"minecraft:become_angry","target":"self"}},"minecraft:silverfish_angry":{"minecraft:angry":{"duration":-1,"broadcast_anger":true,"broadcast_range":20,"calm_event":{"event":"minecraft:on_calm","target":"self"}},"minecraft:behavior.melee_attack":{"priority":4,"track_target":true},"minecraft:behavior.silverfish_wake_up_friends":{"priority":1}}},"components":{"minecraft:is_hidden_when_invisible":{},"minecraft:experience_reward":{"on_death":"query.last_hit_by_player ? 5 : 0"},"minecraft:type_family":{"family":["silverfish","monster","lightweight","mob","arthropod"]},"minecraft:breathable":{"total_supply":15,"suffocate_time":0},"minecraft:nameable":{},"minecraft:loot":{"table":"loot_tables/entities/silverfish.json"},"minecraft:health":{"value":8,"max":8},"minecraft:hurt_on_condition":{"damage_conditions":[{"filters":{"test":"in_lava","subject":"self","operator":"==","value":true},"cause":"lava","damage_per_tick":4}]},"minecraft:movement":{"value":0.25},"minecraft:navigation.walk":{"can_path_over_water":true},"minecraft:movement.basic":{},"minecraft:jump.static":{},"minecraft:can_climb":{},"minecraft:attack":{"damage":1},"minecraft:collision_box":{"width":0.4,"height":0.3},"minecraft:despawn":{"despawn_from_distance":{}},"minecraft:behavior.float":{"priority":1},"minecraft:behavior.silverfish_merge_with_stone":{"priority":5},"minecraft:behavior.nearest_attackable_target":{"priority":2,"attack_interval":10,"entity_types":[{"filters":{"any_of":[{"test":"is_family","subject":"other","value":"player"},{"test":"is_family","subject":"other","value":"snowgolem"},{"test":"is_family","subject":"other","value":"irongolem"}]},"max_dist":8}]},"minecraft:behavior.hurt_by_target":{"priority":1,"alert_same_type":true},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:conditional_bandwidth_optimization":{},"minecraft:block_climber":{}},"events":{"minecraft:entity_spawned":{"remove":{},"add":{"component_groups":["minecraft:silverfish_calm"]}},"minecraft:become_angry":{"remove":{"minecraft:silverfish_calm":{}},"add":{"component_groups":["minecraft:silverfish_angry"]}},"minecraft:on_calm":{"remove":{"minecraft:silverfish_angry":{}},"add":{"component_groups":["minecraft:silverfish_calm"]}}}}},"minecraft:skeleton":{"format_version":"1.18.20","minecraft:entity":{"description":{"identifier":"minecraft:skeleton","is_spawnable":true,"is_summonable":true,"is_experimental":false},"component_groups":{"in_powder_snow":{"minecraft:is_shaking":{},"minecraft:timer":{"looping":false,"time":20,"time_down_event":{"event":"become_stray_event"}},"minecraft:environment_sensor":{"triggers":[{"filters":{"test":"in_block","subject":"self","operator":"!=","value":"minecraft:powder_snow"},"event":"got_out_of_powder_snow"}]}},"got_out_of_powder_snow_environment_sensor":{"minecraft:environment_sensor":{"triggers":[{"filters":{"test":"is_underwater","subject":"self","operator":"==","value":true},"event":"minecraft:melee_mode"},{"filters":{"test":"has_ranged_weapon","subject":"self","operator":"==","value":false},"event":"minecraft:melee_mode"},{"filters":{"all_of":[{"test":"in_water","subject":"self","operator":"==","value":false},{"test":"has_ranged_weapon","subject":"self","operator":"==","value":true}]},"event":"minecraft:ranged_mode"}]}},"minecraft:lightning_immune":{"minecraft:damage_sensor":{"triggers":{"on_damage":{"filters":{"other_with_families":"lightning"}},"deals_damage":false}}},"become_stray":{"minecraft:transformation":{"into":"minecraft:stray","transformation_sound":"convert_to_stray","keep_level":true,"drop_inventory":true,"preserve_equipment":true}},"minecraft:ranged_attack":{"minecraft:behavior.ranged_attack":{"priority":0,"attack_interval_min":1,"attack_interval_max":3,"attack_radius":15},"minecraft:shooter":{"def":"minecraft:arrow"},"minecraft:environment_sensor":{"triggers":[{"filters":{"test":"is_underwater","subject":"self","operator":"==","value":true},"event":"minecraft:melee_mode"},{"filters":{"test":"has_ranged_weapon","subject":"self","operator":"==","value":false},"event":"minecraft:melee_mode"},{"filters":{"test":"in_block","subject":"self","operator":"==","value":"minecraft:powder_snow"},"event":"got_in_powder_snow"}]}},"minecraft:melee_attack":{"minecraft:behavior.melee_attack":{"priority":4,"track_target":true,"speed_multiplier":1.25},"minecraft:attack":{"damage":2},"minecraft:environment_sensor":{"triggers":[{"filters":{"all_of":[{"test":"in_water","subject":"self","operator":"==","value":false},{"test":"has_ranged_weapon","subject":"self","operator":"==","value":true}]},"event":"minecraft:ranged_mode"},{"filters":{"test":"in_block","subject":"self","operator":"==","value":"minecraft:powder_snow"},"event":"got_in_powder_snow"}]}}},"components":{"minecraft:is_hidden_when_invisible":{},"minecraft:experience_reward":{"on_death":"query.last_hit_by_player ? 5 + (query.equipment_count * Math.Random(1,3)) : 0"},"minecraft:equip_item":{},"minecraft:collision_box":{"width":0.6,"height":1.9},"minecraft:type_family":{"family":["skeleton","undead","monster","mob"]},"minecraft:breathable":{"total_supply":15,"suffocate_time":0,"breathes_water":true},"minecraft:burns_in_daylight":{},"minecraft:health":{"value":20,"max":20},"minecraft:hurt_on_condition":{"damage_conditions":[{"filters":{"test":"in_lava","subject":"self","operator":"==","value":true},"cause":"lava","damage_per_tick":4}]},"minecraft:loot":{"table":"loot_tables/entities/skeleton.json"},"minecraft:movement":{"value":0.25},"minecraft:navigation.walk":{"is_amphibious":true,"avoid_sun":true,"avoid_water":true},"minecraft:movement.basic":{},"minecraft:jump.static":{},"minecraft:can_climb":{},"minecraft:nameable":{},"minecraft:equipment":{"table":"loot_tables/entities/skeleton_gear.json"},"minecraft:shooter":{"def":"minecraft:arrow"},"minecraft:environment_sensor":{"triggers":[{"filters":{"test":"is_underwater","subject":"self","operator":"==","value":true},"event":"minecraft:melee_mode"},{"filters":{"test":"has_ranged_weapon","subject":"self","operator":"==","value":false},"event":"minecraft:melee_mode"},{"filters":{"test":"in_block","subject":"self","operator":"==","value":"minecraft:powder_snow"},"event":"got_in_powder_snow"}]},"minecraft:despawn":{"despawn_from_distance":{}},"minecraft:shareables":{"items":[{"item":"minecraft:netherite_sword","want_amount":1,"surplus_amount":1,"priority":0},{"item":"minecraft:diamond_sword","want_amount":1,"surplus_amount":1,"priority":1},{"item":"minecraft:iron_sword","want_amount":1,"surplus_amount":1,"priority":2},{"item":"minecraft:stone_sword","want_amount":1,"surplus_amount":1,"priority":3},{"item":"minecraft:golden_sword","want_amount":1,"surplus_amount":1,"priority":4},{"item":"minecraft:wooden_sword","want_amount":1,"surplus_amount":1,"priority":5},{"item":"minecraft:bow","want_amount":1,"surplus_amount":1,"priority":6},{"item":"minecraft:netherite_helmet","want_amount":1,"surplus_amount":1,"priority":0},{"item":"minecraft:diamond_helmet","want_amount":1,"surplus_amount":1,"priority":1},{"item":"minecraft:iron_helmet","want_amount":1,"surplus_amount":1,"priority":2},{"item":"minecraft:chainmail_helmet","want_amount":1,"surplus_amount":1,"priority":3},{"item":"minecraft:golden_helmet","want_amount":1,"surplus_amount":1,"priority":4},{"item":"minecraft:leather_helmet","want_amount":1,"surplus_amount":1,"priority":5},{"item":"minecraft:turtle_helmet","want_amount":1,"surplus_amount":1,"priority":6},{"item":"minecraft:skull:0","want_amount":1,"surplus_amount":1,"priority":7},{"item":"minecraft:skull:1","want_amount":1,"surplus_amount":1,"priority":7},{"item":"minecraft:carved_pumpkin","want_amount":1,"surplus_amount":1,"priority":7},{"item":"minecraft:netherite_chestplate","want_amount":1,"surplus_amount":1,"priority":0},{"item":"minecraft:diamond_chestplate","want_amount":1,"surplus_amount":1,"priority":1},{"item":"minecraft:iron_chestplate","want_amount":1,"surplus_amount":1,"priority":2},{"item":"minecraft:chainmail_chestplate","want_amount":1,"surplus_amount":1,"priority":3},{"item":"minecraft:golden_chestplate","want_amount":1,"surplus_amount":1,"priority":4},{"item":"minecraft:leather_chestplate","want_amount":1,"surplus_amount":1,"priority":5},{"item":"minecraft:netherite_leggings","want_amount":1,"surplus_amount":1,"priority":0},{"item":"minecraft:diamond_leggings","want_amount":1,"surplus_amount":1,"priority":1},{"item":"minecraft:iron_leggings","want_amount":1,"surplus_amount":1,"priority":2},{"item":"minecraft:chainmail_leggings","want_amount":1,"surplus_amount":1,"priority":3},{"item":"minecraft:golden_leggings","want_amount":1,"surplus_amount":1,"priority":4},{"item":"minecraft:leather_leggings","want_amount":1,"surplus_amount":1,"priority":5},{"item":"minecraft:netherite_boots","want_amount":1,"surplus_amount":1,"priority":0},{"item":"minecraft:diamond_boots","want_amount":1,"surplus_amount":1,"priority":1},{"item":"minecraft:iron_boots","want_amount":1,"surplus_amount":1,"priority":2},{"item":"minecraft:chainmail_boots","want_amount":1,"surplus_amount":1,"priority":3},{"item":"minecraft:golden_boots","want_amount":1,"surplus_amount":1,"priority":4},{"item":"minecraft:leather_boots","want_amount":1,"surplus_amount":1,"priority":5}]},"minecraft:behavior.ranged_attack":{"priority":0,"attack_interval_min":1,"attack_interval_max":3,"attack_radius":15},"minecraft:behavior.hurt_by_target":{"priority":1},"minecraft:behavior.nearest_attackable_target":{"priority":2,"must_see":true,"reselect_targets":true,"entity_types":[{"filters":{"test":"is_family","subject":"other","value":"player"},"max_dist":16},{"filters":{"test":"is_family","subject":"other","value":"irongolem"},"max_dist":16},{"filters":{"all_of":[{"test":"is_family","subject":"other","value":"baby_turtle"},{"test":"in_water","subject":"other","operator":"!=","value":true}]},"max_dist":16}]},"minecraft:behavior.flee_sun":{"priority":2,"speed_multiplier":1},"minecraft:behavior.equip_item":{"priority":3},"minecraft:behavior.avoid_mob_type":{"priority":4,"entity_types":[{"filters":{"test":"is_family","subject":"other","value":"wolf"},"max_dist":6,"walk_speed_multiplier":1.2,"sprint_speed_multiplier":1.2}]},"minecraft:behavior.pickup_items":{"priority":5,"max_dist":3,"goal_radius":2,"speed_multiplier":1,"pickup_based_on_chance":true,"can_pickup_any_item":true},"minecraft:behavior.random_stroll":{"priority":6,"speed_multiplier":1},"minecraft:behavior.look_at_player":{"priority":7,"look_distance":8},"minecraft:behavior.random_look_around":{"priority":8},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:conditional_bandwidth_optimization":{}},"events":{"minecraft:entity_spawned":{"add":{"component_groups":["minecraft:ranged_attack"]}},"become_stray_event":{"add":{"component_groups":["become_stray"]}},"got_in_powder_snow":{"add":{"component_groups":["in_powder_snow"]}},"got_out_of_powder_snow":{"remove":{"component_groups":["in_powder_snow"]},"add":{"component_groups":["got_out_of_powder_snow_environment_sensor"]}},"minecraft:spring_trap":{"add":{"component_groups":["minecraft:lightning_immune"]}},"minecraft:melee_mode":{"remove":{"component_groups":["minecraft:ranged_attack","got_out_of_powder_snow_environment_sensor"]},"add":{"component_groups":["minecraft:melee_attack"]}},"minecraft:ranged_mode":{"remove":{"component_groups":["minecraft:melee_attack","got_out_of_powder_snow_environment_sensor"]},"add":{"component_groups":["minecraft:ranged_attack"]}}}}},"minecraft:skeleton_horse":{"format_version":"1.16.0","minecraft:entity":{"description":{"identifier":"minecraft:skeleton_horse","is_spawnable":true,"is_summonable":true,"is_experimental":false},"component_groups":{"minecraft:skeleton_horse_r5_upgrade":{"minecraft:rideable":{}},"minecraft:skeleton_horse_baby":{"minecraft:is_baby":{},"minecraft:scale_by_age":{"start_scale":0.5,"end_scale":1},"minecraft:ageable":{"duration":1200,"grow_up":{"event":"minecraft:ageable_grow_up","target":"self"}},"minecraft:behavior.follow_parent":{"priority":4,"speed_multiplier":1}},"minecraft:skeleton_horse_adult":{"minecraft:experience_reward":{"on_death":"query.last_hit_by_player ? Math.Random(1,3) : 0"},"minecraft:loot":{"table":"loot_tables/entities/skeleton_horse.json"},"minecraft:collision_box":{"width":1.4,"height":1.6},"minecraft:rideable":{"seat_count":1,"family_types":["player","skeleton","zombie"],"interact_text":"action.interact.ride.horse","seats":{"position":[0,1.2,-0.2]}}},"minecraft:skeleton_trap":{"minecraft:behavior.skeleton_horse_trap":{"within_radius":10,"duration":900,"priority":2}},"minecraft:lightning_immune":{"minecraft:damage_sensor":{"triggers":{"on_damage":{"filters":{"test":"is_family","subject":"other","value":"lightning"}},"deals_damage":false}}}},"components":{"minecraft:is_hidden_when_invisible":{},"minecraft:type_family":{"family":["skeletonhorse","undead","mob"]},"minecraft:breathable":{"total_supply":15,"suffocate_time":0,"breathes_water":true},"minecraft:health":{"value":15,"max":15},"minecraft:hurt_on_condition":{"damage_conditions":[{"filters":{"test":"in_lava","subject":"self","operator":"==","value":true},"cause":"lava","damage_per_tick":4}]},"minecraft:movement":{"value":0.2},"minecraft:underwater_movement":{"value":0.08},"minecraft:navigation.walk":{"is_amphibious":true,"avoid_water":true},"minecraft:movement.basic":{},"minecraft:jump.static":{},"minecraft:nameable":{},"minecraft:horse.jump_strength":{"value":{"range_min":0.4,"range_max":1}},"minecraft:leashable":{"soft_distance":4,"hard_distance":6,"max_distance":10},"minecraft:rideable":{"seat_count":1,"family_types":["player","skeleton","zombie"],"interact_text":"action.interact.ride.horse","seats":{"position":[0,1.2,-0.2]}},"minecraft:despawn":{"despawn_from_distance":{}},"minecraft:behavior.mount_pathing":{"priority":2,"speed_multiplier":1.5,"target_dist":4,"track_target":true},"minecraft:behavior.player_ride_tamed":{},"minecraft:input_ground_controlled":{},"minecraft:can_power_jump":{},"minecraft:balloonable":{},"minecraft:behavior.panic":{"priority":1,"speed_multiplier":1.2},"minecraft:behavior.random_stroll":{"priority":6,"speed_multiplier":0.7},"minecraft:behavior.look_at_player":{"priority":7,"look_distance":6,"probability":0.02},"minecraft:behavior.random_look_around":{"priority":8},"minecraft:is_tamed":{},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:conditional_bandwidth_optimization":{}},"events":{"minecraft:entity_spawned":{"randomize":[{"weight":36,"add":{"component_groups":["minecraft:skeleton_horse_adult"]}},{"weight":9,"remove":{"component_groups":["minecraft:skeleton_horse_r5_upgrade"]},"add":{"component_groups":["minecraft:skeleton_horse_baby"]}}]},"minecraft:set_trap":{"add":{"component_groups":["minecraft:skeleton_trap","minecraft:lightning_immune"]}},"minecraft:spring_trap":{"add":{"component_groups":["minecraft:skeleton_horse_adult","minecraft:lightning_immune"]}}}}},"minecraft:slime":{"format_version":"1.18.10","minecraft:entity":{"description":{"identifier":"minecraft:slime","is_spawnable":true,"is_summonable":true,"is_experimental":false},"component_groups":{"minecraft:slime_large":{"minecraft:variant":{"value":4},"minecraft:collision_box":{"width":2.08,"height":2.08},"minecraft:health":{"value":16,"max":16},"minecraft:movement":{"value":0.6},"minecraft:attack":{"damage":4}},"minecraft:slime_medium":{"minecraft:variant":{"value":2},"minecraft:collision_box":{"width":1.04,"height":1.04},"minecraft:health":{"value":4,"max":4},"minecraft:movement":{"value":0.4},"minecraft:attack":{"damage":2}},"minecraft:slime_small":{"minecraft:variant":{"value":1},"minecraft:collision_box":{"width":0.52,"height":0.52},"minecraft:health":{"value":1,"max":1},"minecraft:movement":{"value":0.3},"minecraft:attack":{"damage":0},"minecraft:loot":{"table":"loot_tables/entities/slime.json"}},"minecraft:slime_calm":{"minecraft:movement.jump":{"jump_delay":[0.5,1.5]}},"minecraft:slime_aggressive":{"minecraft:movement.jump":{"jump_delay":[0.16,0.5]}}},"components":{"minecraft:is_hidden_when_invisible":{},"minecraft:experience_reward":{"on_death":"query.last_hit_by_player ? query.variant : 0"},"minecraft:type_family":{"family":["slime","monster","mob"]},"minecraft:breathable":{"total_supply":15,"suffocate_time":0},"minecraft:navigation.walk":{"can_path_over_water":true,"avoid_water":true},"minecraft:jump.static":{},"minecraft:can_climb":{},"minecraft:hurt_on_condition":{"damage_conditions":[{"filters":{"test":"in_lava","subject":"self","operator":"==","value":true},"cause":"lava","damage_per_tick":4}]},"minecraft:movement.jump":{"jump_delay":[0.5,1.5]},"minecraft:on_target_acquired":{"event":"minecraft:become_aggressive","target":"self"},"minecraft:on_target_escape":{"event":"minecraft:become_calm","target":"self"},"minecraft:nameable":{},"minecraft:despawn":{"despawn_from_distance":{}},"minecraft:behavior.slime_float":{"priority":1,"jump_chance_percentage":0.8,"speed_multiplier":1.2},"minecraft:behavior.slime_attack":{"priority":3},"minecraft:behavior.slime_random_direction":{"priority":4,"add_random_time_range":3,"turn_range":360,"min_change_direction_time":2},"minecraft:behavior.slime_keep_on_jumping":{"priority":5,"speed_multiplier":1},"minecraft:behavior.nearest_attackable_target":{"priority":2,"entity_types":[{"filters":{"any_of":[{"test":"is_family","subject":"other","value":"player"},{"test":"is_family","subject":"other","value":"snowgolem"},{"test":"is_family","subject":"other","value":"irongolem"}]},"max_dist":16}],"must_see":true},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:conditional_bandwidth_optimization":{}},"events":{"minecraft:entity_spawned":{"randomize":[{"weight":1,"trigger":"spawn_small"},{"weight":1,"trigger":"spawn_medium"},{"weight":1,"trigger":"spawn_large"}]},"spawn_small":{"add":{"component_groups":["minecraft:slime_small","minecraft:slime_calm"]}},"spawn_medium":{"add":{"component_groups":["minecraft:slime_medium","minecraft:slime_calm"]}},"spawn_large":{"add":{"component_groups":["minecraft:slime_large","minecraft:slime_calm"]}},"minecraft:become_calm":{"add":{"component_groups":["minecraft:slime_calm"]}},"minecraft:become_aggressive":{"add":{"component_groups":["minecraft:slime_aggressive"]}}}}},"minecraft:small_fireball":{"format_version":"1.12.0","minecraft:entity":{"description":{"identifier":"minecraft:small_fireball","is_spawnable":false,"is_summonable":false,"is_experimental":false},"components":{"minecraft:collision_box":{"width":0.31,"height":0.31},"minecraft:projectile":{"on_hit":{"impact_damage":{"damage":5,"knockback":true,"catch_fire":true,"semi_random_diff_damage":false},"catch_fire":{"fire_affected_by_griefing":true},"remove_on_hit":{}},"power":1.3,"gravity":0,"inertia":1,"liquid_inertia":1,"anchor":2,"offset":[0,0.5,0],"semi_random_diff_damage":true,"uncertainty_base":10,"reflect_on_hurt":true},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:conditional_bandwidth_optimization":{"default_values":{"max_optimized_distance":80,"max_dropped_ticks":7,"use_motion_prediction_hints":true}}}}},"minecraft:snowball":{"format_version":"1.16.0","minecraft:entity":{"description":{"identifier":"minecraft:snowball","is_spawnable":false,"is_summonable":true,"is_experimental":false},"components":{"minecraft:collision_box":{"width":0.25,"height":0.25},"minecraft:projectile":{"on_hit":{"impact_damage":{"filter":"blaze","damage":3,"knockback":true},"remove_on_hit":{},"particle_on_hit":{"particle_type":"snowballpoof","num_particles":6,"on_entity_hit":true,"on_other_hit":true}},"anchor":1,"power":1.5,"gravity":0.03,"angle_offset":0,"offset":[0,-0.1,0]},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:conditional_bandwidth_optimization":{"default_values":{"max_optimized_distance":100,"max_dropped_ticks":7,"use_motion_prediction_hints":true}}}}},"minecraft:snow_golem":{"format_version":"1.16.0","minecraft:entity":{"description":{"identifier":"minecraft:snow_golem","is_spawnable":false,"is_summonable":true,"is_experimental":false},"component_groups":{"minecraft:snowman_sheared":{"minecraft:is_sheared":{}}},"components":{"minecraft:is_hidden_when_invisible":{},"minecraft:type_family":{"family":["snowgolem","mob"]},"minecraft:breathable":{"total_supply":15,"suffocate_time":0},"minecraft:nameable":{},"minecraft:collision_box":{"width":0.4,"height":1.8},"minecraft:loot":{"table":"loot_tables/entities/snowman.json"},"minecraft:health":{"value":4,"max":4},"minecraft:movement":{"value":0.2},"minecraft:navigation.walk":{"avoid_water":true},"minecraft:movement.basic":{},"minecraft:jump.static":{},"minecraft:can_climb":{},"minecraft:attack":{"damage":2},"minecraft:damage_sensor":{"triggers":{"cause":"fall","deals_damage":false}},"minecraft:hurt_on_condition":{"damage_conditions":[{"filters":{"test":"in_lava","subject":"self","operator":"==","value":true},"cause":"lava","damage_per_tick":4},{"filters":{"test":"is_temperature_value","operator":">","value":1},"cause":"temperature","damage_per_tick":1},{"filters":{"test":"in_contact_with_water","operator":"==","value":true},"cause":"drowning","damage_per_tick":1}]},"minecraft:interact":{"interactions":[{"cooldown":2.5,"use_item":false,"hurt_item":1,"spawn_items":{"table":"loot_tables/entities/snow_golem_shear.json"},"play_sounds":"shear","interact_text":"action.interact.shear","vibration":"shear","on_interact":{"filters":{"all_of":[{"test":"has_equipment","subject":"other","domain":"hand","value":"shears"},{"test":"is_family","subject":"other","value":"player"},{"test":"has_component","operator":"!=","value":"minecraft:is_sheared"}]},"event":"minecraft:on_sheared","target":"self"}}]},"minecraft:leashable":{"soft_distance":4,"hard_distance":6,"max_distance":10},"minecraft:balloonable":{},"minecraft:behavior.ranged_attack":{"priority":1,"speed_multiplier":1.25,"attack_interval":1,"attack_radius":10},"minecraft:shooter":{"def":"minecraft:snowball"},"minecraft:trail":{"block_type":"minecraft:snow_layer","spawn_filter":{"test":"is_temperature_value","operator":"<","value":0.81}},"minecraft:behavior.random_stroll":{"priority":2,"speed_multiplier":1},"minecraft:behavior.look_at_player":{"priority":3,"look_distance":6},"minecraft:behavior.random_look_around":{"priority":4},"minecraft:behavior.nearest_attackable_target":{"priority":1,"entity_types":[{"filters":{"test":"is_family","subject":"other","value":"monster"},"within_default":6}]},"minecraft:persistent":{},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:conditional_bandwidth_optimization":{}},"events":{"minecraft:on_sheared":{"remove":{},"add":{"component_groups":["minecraft:snowman_sheared"]}}}}},"minecraft:spider":{"format_version":"1.18.20","minecraft:entity":{"description":{"identifier":"minecraft:spider","is_spawnable":true,"is_summonable":true,"is_experimental":false},"component_groups":{"minecraft:spider_jockey":{"minecraft:addrider":{"entity_type":"minecraft:skeleton"},"minecraft:rideable":{"seat_count":1,"family_types":["skeleton"],"seats":{"position":[0,0.54,0]}}},"minecraft:spider_stray_jockey":{"minecraft:addrider":{"entity_type":"minecraft:skeleton.stray"},"minecraft:rideable":{"seat_count":1,"family_types":["skeleton"],"seats":{"position":[0,0.54,0]}}},"minecraft:spider_wither_jockey":{"minecraft:addrider":{"entity_type":"minecraft:skeleton.wither"},"minecraft:rideable":{"seat_count":1,"family_types":["skeleton"],"seats":{"position":[0,0.54,0]}}},"minecraft:spider_neutral":{"minecraft:environment_sensor":{"triggers":{"filters":{"test":"is_brightness","operator":"<","value":0.49},"event":"minecraft:become_hostile"}},"minecraft:on_target_acquired":{"event":"minecraft:become_angry"}},"minecraft:spider_hostile":{"minecraft:environment_sensor":{"triggers":{"filters":{"test":"is_brightness","operator":">","value":0.49},"event":"minecraft:become_neutral"}},"minecraft:on_target_acquired":{"event":"minecraft:become_angry"},"minecraft:behavior.nearest_attackable_target":{"priority":2,"must_see":true,"attack_interval":5,"entity_types":[{"filters":{"any_of":[{"test":"is_family","subject":"other","value":"player"},{"test":"is_family","subject":"other","value":"snowgolem"},{"test":"is_family","subject":"other","value":"irongolem"}]},"max_dist":16}]}},"minecraft:spider_angry":{"minecraft:angry":{"duration":10,"duration_delta":3,"calm_event":{"event":"minecraft:become_calm","target":"self"}},"minecraft:behavior.leap_at_target":{"priority":4,"yd":0.4,"must_be_on_ground":false},"minecraft:behavior.melee_attack":{"priority":3,"track_target":true,"reach_multiplier":0.8}}},"components":{"minecraft:is_hidden_when_invisible":{},"minecraft:experience_reward":{"on_death":"query.last_hit_by_player ? 5 : 0"},"minecraft:nameable":{},"minecraft:type_family":{"family":["spider","monster","mob","arthropod"]},"minecraft:breathable":{"total_supply":15,"suffocate_time":0},"minecraft:loot":{"table":"loot_tables/entities/spider.json"},"minecraft:collision_box":{"width":1.4,"height":0.9},"minecraft:health":{"value":16,"max":16},"minecraft:hurt_on_condition":{"damage_conditions":[{"filters":{"test":"in_lava","subject":"self","operator":"==","value":true},"cause":"lava","damage_per_tick":4}]},"minecraft:movement":{"value":0.3},"minecraft:navigation.climb":{"can_path_over_water":true},"minecraft:movement.basic":{},"minecraft:jump.static":{},"minecraft:can_climb":{},"minecraft:attack":{"damage":2},"minecraft:despawn":{"despawn_from_distance":{}},"minecraft:behavior.float":{"priority":1},"minecraft:behavior.mount_pathing":{"priority":5,"speed_multiplier":1.25,"target_dist":0,"track_target":true},"minecraft:behavior.random_stroll":{"priority":6,"speed_multiplier":0.8},"minecraft:behavior.look_at_player":{"priority":7,"look_distance":6,"probability":0.02},"minecraft:behavior.random_look_around":{"priority":7},"minecraft:behavior.hurt_by_target":{"priority":1},"minecraft:rideable":{"seat_count":1,"family_types":["zombie"],"seats":{"position":[0,0.54,-0.1]}},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:conditional_bandwidth_optimization":{}},"events":{"minecraft:entity_spawned":{"randomize":[{"weight":1,"randomize":[{"weight":80,"filters":{"all_of":[{"test":"is_daytime","value":false},{"test":"is_snow_covered","value":true},{"test":"is_underground","value":false}]},"remove":{},"add":{"component_groups":["minecraft:spider_stray_jockey","minecraft:spider_neutral"]}},{"weight":80,"filters":{"test":"is_biome","value":"the_nether"},"remove":{},"add":{"component_groups":["minecraft:spider_wither_jockey","minecraft:spider_neutral"]}},{"weight":20,"filters":{"any_of":[{"test":"is_daytime","value":false},{"test":"is_underground","value":true}]},"remove":{},"add":{"component_groups":["minecraft:spider_jockey","minecraft:spider_neutral"]}}]},{"weight":99,"remove":{},"add":{"component_groups":["minecraft:spider_neutral"]}}]},"minecraft:become_hostile":{"remove":{"component_groups":["minecraft:spider_neutral"]},"add":{"component_groups":["minecraft:spider_hostile"]}},"minecraft:become_neutral":{"remove":{"component_groups":["minecraft:spider_hostile"]},"add":{"component_groups":["minecraft:spider_neutral"]}},"minecraft:become_angry":{"add":{"component_groups":["minecraft:spider_angry"]}},"minecraft:become_calm":{"remove":{"component_groups":["minecraft:spider_angry"]}}}}},"minecraft:splash_potion":{"format_version":"1.12.0","minecraft:entity":{"description":{"identifier":"minecraft:splash_potion","is_spawnable":false,"is_summonable":true,"is_experimental":false},"components":{"minecraft:collision_box":{"width":0.25,"height":0.25},"minecraft:projectile":{"on_hit":{"douse_fire":{},"thrown_potion_effect":{},"remove_on_hit":{}},"power":0.5,"gravity":0.05,"angle_offset":-20,"hit_sound":"glass"},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:conditional_bandwidth_optimization":{"default_values":{"max_optimized_distance":80,"max_dropped_ticks":5,"use_motion_prediction_hints":true}}}}},"minecraft:squid":{"format_version":"1.18.10","minecraft:entity":{"description":{"identifier":"minecraft:squid","is_spawnable":true,"is_summonable":true,"is_experimental":false},"component_groups":{"minecraft:squid_baby":{"minecraft:is_baby":{},"minecraft:scale":{"value":0.5}}},"components":{"minecraft:is_hidden_when_invisible":{},"minecraft:experience_reward":{"on_death":"!query.is_baby && query.last_hit_by_player ? Math.Random(1,3) : 0"},"minecraft:nameable":{},"minecraft:type_family":{"family":["squid","mob"]},"minecraft:collision_box":{"width":0.95,"height":0.95},"minecraft:health":{"value":10,"max":10},"minecraft:hurt_on_condition":{"damage_conditions":[{"filters":{"test":"in_lava","subject":"self","operator":"==","value":true},"cause":"lava","damage_per_tick":4}]},"minecraft:loot":{"table":"loot_tables/entities/squid.json"},"minecraft:breathable":{"total_supply":15,"suffocate_time":0,"breathes_air":false,"breathes_water":true},"minecraft:movement":{"value":0.2},"minecraft:navigation.walk":{"can_path_over_water":true,"can_sink":false},"minecraft:movement.basic":{},"minecraft:jump.static":{},"minecraft:can_climb":{},"minecraft:leashable":{"soft_distance":4,"hard_distance":6,"max_distance":10},"minecraft:balloonable":{"mass":0.5},"minecraft:despawn":{"despawn_from_distance":{}},"minecraft:behavior.squid_move_away_from_ground":{"priority":1},"minecraft:behavior.squid_flee":{"priority":2},"minecraft:behavior.squid_idle":{"priority":2},"minecraft:behavior.squid_dive":{"priority":2},"minecraft:behavior.squid_out_of_water":{"priority":2},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:conditional_bandwidth_optimization":{}},"events":{"minecraft:entity_spawned":{"randomize":[{"weight":95,"remove":{},"add":{}},{"weight":5,"remove":{},"add":{"component_groups":["minecraft:squid_baby"]}}]}}}},"minecraft:stray":{"format_version":"1.16.0","minecraft:entity":{"description":{"identifier":"minecraft:stray","is_spawnable":true,"is_summonable":true,"is_experimental":false},"component_groups":{"minecraft:revert_to_skeleton":{"minecraft:transformation":{"into":"minecraft:skeleton","delay":0.5}},"minecraft:ranged_attack":{"minecraft:behavior.ranged_attack":{"priority":0,"attack_interval_min":1,"attack_interval_max":3,"attack_radius":15},"minecraft:shooter":{"def":"minecraft:arrow","aux_val":19},"minecraft:environment_sensor":{"triggers":[{"filters":{"test":"is_underwater","subject":"self","operator":"==","value":true},"event":"minecraft:melee_mode"},{"filters":{"test":"has_ranged_weapon","subject":"self","operator":"==","value":false},"event":"minecraft:melee_mode"}]}},"minecraft:melee_attack":{"minecraft:behavior.melee_attack":{"priority":4,"track_target":true,"speed_multiplier":1.25},"minecraft:attack":{"damage":3,"effect_name":"slowness","effect_duration":10},"minecraft:environment_sensor":{"triggers":[{"filters":{"all_of":[{"test":"in_water","subject":"self","operator":"==","value":false},{"test":"has_ranged_weapon","subject":"self","operator":"==","value":true}]},"event":"minecraft:ranged_mode"}]}}},"components":{"minecraft:is_hidden_when_invisible":{},"minecraft:experience_reward":{"on_death":"query.last_hit_by_player ? 5 + (query.equipment_count * Math.Random(1,3)) : 0"},"minecraft:breathable":{"total_supply":15,"suffocate_time":0,"breathes_water":true},"minecraft:equip_item":{},"minecraft:collision_box":{"width":0.6,"height":1.9},"minecraft:burns_in_daylight":{},"minecraft:nameable":{},"minecraft:health":{"value":20,"max":20},"minecraft:hurt_on_condition":{"damage_conditions":[{"filters":{"test":"in_lava","subject":"self","operator":"==","value":true},"cause":"lava","damage_per_tick":4}]},"minecraft:loot":{"table":"loot_tables/entities/stray.json"},"minecraft:movement":{"value":0.25},"minecraft:navigation.walk":{"is_amphibious":true,"avoid_sun":true,"avoid_water":true},"minecraft:movement.basic":{},"minecraft:jump.static":{},"minecraft:can_climb":{},"minecraft:equipment":{"table":"loot_tables/entities/skeleton_gear.json"},"minecraft:shooter":{"def":"minecraft:arrow","aux_val":19},"minecraft:environment_sensor":{"triggers":[{"filters":{"test":"is_underwater","subject":"self","operator":"==","value":true},"event":"minecraft:melee_mode"},{"filters":{"test":"has_ranged_weapon","subject":"self","operator":"==","value":false},"event":"minecraft:melee_mode"}]},"minecraft:despawn":{"despawn_from_distance":{}},"minecraft:shareables":{"items":[{"item":"minecraft:netherite_sword","want_amount":1,"surplus_amount":1,"priority":0},{"item":"minecraft:diamond_sword","want_amount":1,"surplus_amount":1,"priority":1},{"item":"minecraft:iron_sword","want_amount":1,"surplus_amount":1,"priority":2},{"item":"minecraft:stone_sword","want_amount":1,"surplus_amount":1,"priority":3},{"item":"minecraft:golden_sword","want_amount":1,"surplus_amount":1,"priority":4},{"item":"minecraft:wooden_sword","want_amount":1,"surplus_amount":1,"priority":5},{"item":"minecraft:bow","want_amount":1,"surplus_amount":1,"priority":6},{"item":"minecraft:netherite_helmet","want_amount":1,"surplus_amount":1,"priority":0},{"item":"minecraft:diamond_helmet","want_amount":1,"surplus_amount":1,"priority":1},{"item":"minecraft:iron_helmet","want_amount":1,"surplus_amount":1,"priority":2},{"item":"minecraft:chainmail_helmet","want_amount":1,"surplus_amount":1,"priority":3},{"item":"minecraft:golden_helmet","want_amount":1,"surplus_amount":1,"priority":4},{"item":"minecraft:leather_helmet","want_amount":1,"surplus_amount":1,"priority":5},{"item":"minecraft:turtle_helmet","want_amount":1,"surplus_amount":1,"priority":6},{"item":"minecraft:skull:0","want_amount":1,"surplus_amount":1,"priority":7},{"item":"minecraft:skull:1","want_amount":1,"surplus_amount":1,"priority":7},{"item":"minecraft:carved_pumpkin","want_amount":1,"surplus_amount":1,"priority":7},{"item":"minecraft:netherite_chestplate","want_amount":1,"surplus_amount":1,"priority":0},{"item":"minecraft:diamond_chestplate","want_amount":1,"surplus_amount":1,"priority":1},{"item":"minecraft:iron_chestplate","want_amount":1,"surplus_amount":1,"priority":2},{"item":"minecraft:chainmail_chestplate","want_amount":1,"surplus_amount":1,"priority":3},{"item":"minecraft:golden_chestplate","want_amount":1,"surplus_amount":1,"priority":4},{"item":"minecraft:leather_chestplate","want_amount":1,"surplus_amount":1,"priority":5},{"item":"minecraft:netherite_leggings","want_amount":1,"surplus_amount":1,"priority":0},{"item":"minecraft:diamond_leggings","want_amount":1,"surplus_amount":1,"priority":1},{"item":"minecraft:iron_leggings","want_amount":1,"surplus_amount":1,"priority":2},{"item":"minecraft:chainmail_leggings","want_amount":1,"surplus_amount":1,"priority":3},{"item":"minecraft:golden_leggings","want_amount":1,"surplus_amount":1,"priority":4},{"item":"minecraft:leather_leggings","want_amount":1,"surplus_amount":1,"priority":5},{"item":"minecraft:netherite_boots","want_amount":1,"surplus_amount":1,"priority":0},{"item":"minecraft:diamond_boots","want_amount":1,"surplus_amount":1,"priority":1},{"item":"minecraft:iron_boots","want_amount":1,"surplus_amount":1,"priority":2},{"item":"minecraft:chainmail_boots","want_amount":1,"surplus_amount":1,"priority":3},{"item":"minecraft:golden_boots","want_amount":1,"surplus_amount":1,"priority":4},{"item":"minecraft:leather_boots","want_amount":1,"surplus_amount":1,"priority":5}]},"minecraft:behavior.ranged_attack":{"priority":0,"attack_interval_min":1,"attack_interval_max":3,"attack_radius":15},"minecraft:behavior.hurt_by_target":{"priority":1},"minecraft:behavior.nearest_attackable_target":{"priority":2,"must_see":true,"reselect_targets":true,"entity_types":[{"filters":{"test":"is_family","subject":"other","value":"player"},"max_dist":16},{"filters":{"test":"is_family","subject":"other","value":"irongolem"},"max_dist":16},{"filters":{"all_of":[{"test":"is_family","subject":"other","value":"baby_turtle"},{"test":"in_water","subject":"other","operator":"!=","value":true}]},"max_dist":16}]},"minecraft:behavior.flee_sun":{"priority":2,"speed_multiplier":1},"minecraft:behavior.equip_item":{"priority":3},"minecraft:behavior.avoid_mob_type":{"priority":4,"entity_types":[{"filters":{"test":"is_family","subject":"other","value":"wolf"},"max_dist":6,"walk_speed_multiplier":1.2,"sprint_speed_multiplier":1.2}]},"minecraft:behavior.pickup_items":{"priority":5,"max_dist":3,"goal_radius":2,"speed_multiplier":1,"pickup_based_on_chance":true,"can_pickup_any_item":true},"minecraft:behavior.random_stroll":{"priority":6,"speed_multiplier":1},"minecraft:behavior.look_at_player":{"priority":7,"look_distance":8},"minecraft:behavior.random_look_around":{"priority":8},"minecraft:type_family":{"family":["stray","skeleton","monster","mob","undead"]},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:conditional_bandwidth_optimization":{}},"events":{"minecraft:entity_spawned":{"add":{"component_groups":["minecraft:ranged_attack"]}},"change_to_skeleton":{"sequence":[{"filters":{"test":"is_underground","value":true},"remove":{},"add":{"component_groups":["minecraft:revert_to_skeleton"]}},{"randomize":[{"weight":20,"remove":{},"add":{"component_groups":["minecraft:revert_to_skeleton"]}},{"weight":80,"remove":{},"add":{}}]}]},"minecraft:melee_mode":{"remove":{"component_groups":["minecraft:ranged_attack"]},"add":{"component_groups":["minecraft:melee_attack"]}},"minecraft:ranged_mode":{"remove":{"component_groups":["minecraft:melee_attack"]},"add":{"component_groups":["minecraft:ranged_attack"]}}}}},"minecraft:strider":{"format_version":"1.18.10","minecraft:entity":{"description":{"identifier":"minecraft:strider","is_spawnable":true,"is_summonable":true,"is_experimental":false},"component_groups":{"minecraft:strider_saddled":{"minecraft:is_saddled":{},"minecraft:loot":{"table":"loot_tables/entities/strider_saddled.json"},"minecraft:boostable":{"speed_multiplier":2,"duration":16,"boost_items":[{"item":"warped_fungus_on_a_stick","damage":1,"replace_item":"fishing_rod"}]},"minecraft:rideable":{"seat_count":1,"crouching_skip_interact":true,"family_types":["player"],"interact_text":"action.interact.ride.strider","seats":{"position":[0,1.6,-0.2]}},"minecraft:item_controllable":{"control_items":"warped_fungus_on_a_stick"},"minecraft:behavior.controlled_by_player":{"priority":0,"mount_speed_multiplier":1.45}},"minecraft:strider_unsaddled":{"minecraft:interact":{"interactions":[{"on_interact":{"filters":{"test":"has_equipment","subject":"other","domain":"hand","value":"saddle"},"event":"minecraft:on_saddled"},"use_item":true,"play_sounds":"saddle","interact_text":"action.interact.saddle"}]}},"minecraft:strider_piglin_jockey":{"minecraft:addrider":{"entity_type":"minecraft:zombie_pigman","spawn_event":"minecraft:spawn_as_strider_jockey"},"minecraft:rideable":{"seat_count":1,"crouching_skip_interact":true,"family_types":["player","zombie_pigman"],"interact_text":"action.interact.ride.strider","seats":{"position":[0,1.65,-0.2]}}},"minecraft:strider_parent_jockey":{"minecraft:addrider":{"entity_type":"minecraft:strider","spawn_event":"minecraft:spawn_baby_strider_jockey"},"minecraft:rideable":{"seat_count":1,"family_types":["strider"],"seats":{"position":[0,1.6,0]}}},"minecraft:strider_baby":{"minecraft:type_family":{"family":["strider","strider_baby","mob"]},"minecraft:is_baby":{},"minecraft:scale":{"value":0.5},"minecraft:ageable":{"duration":1200,"feed_items":["warped_fungus"],"grow_up":{"event":"minecraft:ageable_grow_up","target":"self"}},"minecraft:behavior.follow_parent":{"priority":6,"speed_multiplier":1.1}},"minecraft:strider_adult":{"minecraft:type_family":{"family":["strider","strider_adult","mob"]},"minecraft:behavior.breed":{"priority":4,"speed_multiplier":1},"minecraft:loot":{"table":"loot_tables/entities/strider.json"},"minecraft:experience_reward":{"on_bred":"Math.Random(1,7)","on_death":"query.last_hit_by_player ? Math.Random(1,3) : 0"},"minecraft:breedable":{"require_tame":false,"breeds_with":{"mate_type":"minecraft:strider","baby_type":"minecraft:strider","breed_event":{"event":"minecraft:entity_born","target":"baby"}},"breed_items":["warped_fungus"]}},"minecraft:start_suffocating":{"minecraft:is_shaking":{},"minecraft:environment_sensor":{"triggers":[{"filters":{"any_of":[{"test":"in_lava","subject":"self","operator":"==","value":true},{"test":"in_lava","subject":"other","operator":"==","value":true}]},"event":"stop_suffocating"},{"filters":{"all_of":[{"test":"is_riding","subject":"self","operator":"equals","value":false},{"test":"has_component","subject":"self","operator":"not","value":"minecraft:behavior.move_to_liquid"}]},"event":"on_not_riding_parent"}]}},"minecraft:detect_suffocating":{"minecraft:environment_sensor":{"triggers":[{"filters":{"all_of":[{"test":"in_lava","subject":"self","operator":"==","value":false},{"any_of":[{"test":"is_riding","subject":"self","operator":"==","value":false},{"test":"in_lava","subject":"other","operator":"==","value":false}]}]},"event":"start_suffocating"},{"filters":{"all_of":[{"test":"is_riding","subject":"self","operator":"equals","value":false},{"test":"has_component","subject":"self","operator":"not","value":"minecraft:behavior.move_to_liquid"}]},"event":"on_not_riding_parent"}]}},"minecraft:strider_pathing_behaviors":{"minecraft:behavior.rise_to_liquid_level":{"priority":0,"liquid_y_offset":0.25,"rise_delta":0.01,"sink_delta":0.01},"minecraft:behavior.move_to_liquid":{"priority":7,"search_range":16,"search_height":10,"goal_radius":0.9,"material_type":"Lava","search_count":30},"minecraft:behavior.random_stroll":{"priority":8,"speed_multiplier":0.8}}},"components":{"minecraft:is_hidden_when_invisible":{},"minecraft:type_family":{"family":["strider","mob"]},"minecraft:collision_box":{"width":0.9,"height":1.7},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:hurt_on_condition":{"damage_conditions":[{"filters":{"test":"in_contact_with_water","operator":"==","value":true},"cause":"drowning","damage_per_tick":1}]},"minecraft:leashable":{"soft_distance":4,"hard_distance":6,"max_distance":10},"minecraft:balloonable":{},"minecraft:despawn":{"despawn_from_distance":{}},"minecraft:movement":{"value":0.16},"minecraft:lava_movement":{"value":0.32},"minecraft:movement.basic":{},"minecraft:navigation.walk":{"can_path_over_lava":true,"avoid_water":true,"can_sink":false,"can_walk_in_lava":true},"minecraft:jump.static":{},"minecraft:health":{"value":20,"max":20},"minecraft:fire_immune":{},"minecraft:nameable":{},"minecraft:physics":{},"minecraft:behavior.look_at_player":{"priority":9,"look_distance":6,"probability":0.02},"minecraft:behavior.random_look_around":{"priority":10},"minecraft:behavior.panic":{"priority":3,"speed_multiplier":1.1,"panic_sound":"panic","sound_interval":{"range_min":1,"range_max":3}},"minecraft:behavior.tempt":{"priority":5,"speed_multiplier":1.2,"items":["warped_fungus","warped_fungus_on_a_stick"],"can_tempt_while_ridden":true,"tempt_sound":"tempt","sound_interval":{"range_min":2,"range_max":5}},"minecraft:conditional_bandwidth_optimization":{}},"events":{"minecraft:entity_spawned":{"randomize":[{"weight":40,"trigger":"spawn_adult"},{"weight":2,"trigger":"spawn_adult_piglin_jockey"},{"weight":8,"trigger":"spawn_adult_parent_jockey"},{"weight":50,"trigger":"spawn_baby"}]},"minecraft:entity_born":{"trigger":"spawn_baby"},"spawn_adult":{"add":{"component_groups":["minecraft:strider_adult","minecraft:strider_unsaddled","minecraft:detect_suffocating","minecraft:strider_pathing_behaviors"]}},"spawn_adult_parent_jockey":{"add":{"component_groups":["minecraft:strider_adult","minecraft:strider_parent_jockey","minecraft:strider_unsaddled","minecraft:detect_suffocating","minecraft:strider_pathing_behaviors"]}},"spawn_adult_piglin_jockey":{"add":{"component_groups":["minecraft:strider_adult","minecraft:strider_saddled","minecraft:strider_piglin_jockey","minecraft:detect_suffocating","minecraft:strider_pathing_behaviors"]}},"spawn_baby":{"add":{"component_groups":["minecraft:strider_baby","minecraft:detect_suffocating","minecraft:strider_pathing_behaviors"]}},"minecraft:spawn_baby_strider_jockey":{"add":{"component_groups":["minecraft:strider_baby","minecraft:detect_suffocating"]}},"minecraft:ageable_grow_up":{"remove":{"component_groups":["minecraft:strider_baby"]},"add":{"component_groups":["minecraft:strider_adult","minecraft:strider_unsaddled"]}},"minecraft:on_saddled":{"remove":{"component_groups":["minecraft:strider_unsaddled"]},"add":{"component_groups":["minecraft:strider_saddled"]}},"start_suffocating":{"add":{"component_groups":["minecraft:start_suffocating"]}},"stop_suffocating":{"add":{"component_groups":["minecraft:detect_suffocating"]},"remove":{"component_groups":["minecraft:start_suffocating"]}},"on_not_riding_parent":{"add":{"component_groups":["minecraft:strider_pathing_behaviors"]}}}}},"minecraft:tadpole":{"format_version":"1.16.0","minecraft:entity":{"description":{"identifier":"minecraft:tadpole","is_spawnable":true,"is_summonable":true,"is_experimental":false},"component_groups":{"grow_up":{"minecraft:transformation":{"into":"minecraft:frog","transformation_sound":"convert_to_frog"}}},"components":{"minecraft:is_hidden_when_invisible":{},"minecraft:type_family":{"family":["tadpole","mob"]},"minecraft:collision_box":{"width":0.8,"height":0.6},"minecraft:breathable":{"total_supply":8,"suffocate_time":0,"breathes_water":true,"breathes_air":false,"generates_bubbles":false},"minecraft:nameable":{},"minecraft:health":{"value":6},"minecraft:hurt_on_condition":{"damage_conditions":[{"filters":{"test":"in_lava","subject":"self","operator":"==","value":true},"cause":"lava","damage_per_tick":4}]},"minecraft:navigation.generic":{"can_path_over_water":true,"can_swim":true,"can_walk":false,"can_sink":false,"avoid_damage_blocks":true},"minecraft:movement.sway":{"sway_amplitude":0},"minecraft:movement":{"value":0.1},"minecraft:underwater_movement":{"value":0.1},"minecraft:physics":{},"minecraft:pushable":{},"minecraft:despawn":{"despawn_from_distance":{}},"minecraft:is_baby":{},"minecraft:ageable":{"duration":1200,"feed_items":["slime_ball"],"grow_up":{"event":"ageable_grow_up","target":"self"}},"minecraft:behavior.panic":{"priority":1,"speed_multiplier":2},"minecraft:behavior.tempt":{"priority":5,"speed_multiplier":1.25,"can_tempt_vertically":true,"items":["slime_ball"]},"minecraft:behavior.random_swim":{"priority":2,"interval":100},"minecraft:behavior.look_at_player":{"priority":3,"target_distance":6,"probability":0.02}},"events":{"ageable_grow_up":{"sequence":[{"add":{"component_groups":["grow_up"]}}]}}}},"minecraft:thrown_trident":{"format_version":"1.12.0","minecraft:entity":{"description":{"identifier":"minecraft:thrown_trident","is_spawnable":false,"is_summonable":false,"is_experimental":false},"components":{"minecraft:collision_box":{"width":0.25,"height":0.35},"minecraft:projectile":{"on_hit":{"impact_damage":{"damage":8,"knockback":true,"semi_random_diff_damage":false,"destroy_on_hit":false},"stick_in_ground":{"shake_time":0}},"liquid_inertia":0.99,"hit_sound":"item.trident.hit","hit_ground_sound":"item.trident.hit_ground","power":4,"gravity":0.1,"uncertainty_base":1,"uncertainty_multiplier":0,"stop_on_hurt":true,"anchor":1,"should_bounce":true,"multiple_targets":false,"offset":[0,-0.1,0]},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:conditional_bandwidth_optimization":{"default_values":{"max_optimized_distance":80,"max_dropped_ticks":7,"use_motion_prediction_hints":true}}}}},"minecraft:tnt":{"format_version":"1.12.0","minecraft:entity":{"description":{"identifier":"minecraft:tnt","is_spawnable":false,"is_summonable":true,"is_experimental":false},"component_groups":{"from_explosion":{"minecraft:explode":{"fuse_length":{"range_min":0.5,"range_max":2},"fuse_lit":true,"power":4,"causes_fire":false}}},"components":{"minecraft:type_family":{"family":["tnt","inanimate"]},"minecraft:collision_box":{"width":0.98,"height":0.98},"minecraft:explode":{"fuse_length":4,"fuse_lit":true,"power":4,"causes_fire":false},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":false,"is_pushable_by_piston":true},"minecraft:conditional_bandwidth_optimization":{"default_values":{"max_optimized_distance":80,"max_dropped_ticks":5,"use_motion_prediction_hints":true}}},"events":{"from_explosion":{"add":{"component_groups":["from_explosion"]}}}}},"minecraft:tnt_minecart":{"format_version":"1.13.0","minecraft:entity":{"description":{"identifier":"minecraft:tnt_minecart","is_spawnable":false,"is_summonable":true,"is_experimental":false},"component_groups":{"minecraft:primed_tnt":{"minecraft:explode":{"fuse_length":4,"fuse_lit":true,"power":3,"causes_fire":false},"minecraft:rail_sensor":{},"minecraft:is_ignited":{}},"minecraft:instant_explode_tnt":{"minecraft:explode":{"fuse_length":0,"fuse_lit":true,"power":3,"causes_fire":false},"minecraft:rail_sensor":{},"minecraft:is_ignited":{}},"minecraft:inactive":{"minecraft:rail_sensor":{"on_activate":{"filters":{"all_of":[{"test":"is_game_rule","domain":"tntexplodes","operator":"==","value":true}]},"event":"minecraft:on_prime"}},"minecraft:interact":{"interactions":[{"on_interact":{"filters":{"any_of":[{"test":"has_equipment","subject":"other","domain":"hand","value":"fireball:0"},{"test":"has_equipment","subject":"other","domain":"hand","value":"flint_and_steel"}],"all_of":[{"test":"is_family","subject":"other","value":"player"},{"test":"is_game_rule","domain":"tntexplodes","operator":"==","value":true}]},"event":"minecraft:on_prime","target":"self"},"swing":true,"play_sounds":"ignite","interact_text":"action.interact.creeper"},{"on_interact":{"filters":{"any_of":[{"test":"has_component","subject":"other","value":"fire_aspect"}],"all_of":[{"test":"is_game_rule","domain":"tntexplodes","operator":"==","value":true}]},"event":"minecraft:on_prime","target":"self"},"swing":true,"interact_text":"action.interact.creeper"}]}}},"components":{"minecraft:type_family":{"family":["minecart","inanimate"]},"minecraft:collision_box":{"width":0.98,"height":0.7},"minecraft:rail_movement":{},"minecraft:is_stackable":{},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:conditional_bandwidth_optimization":{"default_values":{"max_optimized_distance":60,"max_dropped_ticks":20,"use_motion_prediction_hints":true},"conditional_values":[{"max_optimized_distance":0,"max_dropped_ticks":0,"conditional_values":[{"test":"is_moving","subject":"self","operator":"==","value":true}]}]}},"events":{"minecraft:entity_spawned":{"add":{"component_groups":["minecraft:inactive"]}},"minecraft:on_prime":{"remove":{"component_groups":["minecraft:inactive"]},"add":{"component_groups":["minecraft:primed_tnt"]}},"minecraft:on_instant_prime":{"remove":{"component_groups":["minecraft:inactive"]},"add":{"component_groups":["minecraft:instant_explode_tnt"]}}}}},"minecraft:trader_llama":{"format_version":"1.13.0","minecraft:entity":{"description":{"identifier":"minecraft:trader_llama","is_spawnable":true,"is_summonable":true,"is_experimental":false},"component_groups":{"minecraft:llama_baby":{"minecraft:is_baby":{},"minecraft:scale":{"value":0.5},"minecraft:ageable":{"duration":1200,"feed_items":[{"item":"wheat","growth":0.1},{"item":"hay_block","growth":0.9}],"grow_up":{"event":"minecraft:ageable_grow_up","target":"self"}},"minecraft:behavior.follow_parent":{"priority":5,"speed_multiplier":1}},"minecraft:llama_adult":{"minecraft:experience_reward":{"on_bred":"Math.Random(1,7)","on_death":"query.last_hit_by_player ? Math.Random(1,3) : 0"},"minecraft:loot":{"table":"loot_tables/entities/llama.json"},"minecraft:behavior.breed":{"priority":4,"speed_multiplier":1},"minecraft:breedable":{"require_tame":true,"inherit_tamed":false,"breeds_with":[{"mate_type":"minecraft:llama","baby_type":"minecraft:llama","breed_event":{"event":"minecraft:entity_born","target":"baby"}},{"mate_type":"minecraft:trader_llama","baby_type":"minecraft:trader_llama","breed_event":{"event":"minecraft:entity_born","target":"baby"}}],"breed_items":["hay_block"]}},"minecraft:llama_wild":{"minecraft:rideable":{"seat_count":1,"family_types":["player"],"interact_text":"action.interact.mount","seats":{"position":[0,1.17,-0.3]}},"minecraft:tamemount":{"min_temper":0,"max_temper":30,"feed_text":"action.interact.feed","ride_text":"action.interact.mount","feed_items":[{"item":"wheat","temper_mod":3},{"item":"hay_block","temper_mod":6}],"auto_reject_items":[{"item":"horsearmorleather"},{"item":"horsearmoriron"},{"item":"horsearmorgold"},{"item":"horsearmordiamond"},{"item":"saddle"}],"tame_event":{"event":"minecraft:on_tame","target":"self"}}},"minecraft:llama_wandering_trader":{"minecraft:on_friendly_anger":{"event":"minecraft:defend_wandering_trader","target":"self"},"minecraft:environment_sensor":{"triggers":[{"filters":{"all_of":[{"test":"is_leashed","subject":"self","value":false},{"test":"has_component","subject":"self","operator":"!=","value":"minecraft:is_tamed"}]},"event":"minecraft:on_tame"},{"filters":{"all_of":[{"test":"is_leashed","subject":"self","value":false},{"test":"has_component","subject":"self","operator":"==","value":"minecraft:persistent"}]},"event":"minecraft:remove_persistence"}]}},"minecraft:llama_persistence":{"minecraft:persistent":{}},"minecraft:strength_1":{"minecraft:strength":{"value":1,"max":5}},"minecraft:strength_2":{"minecraft:strength":{"value":2,"max":5}},"minecraft:strength_3":{"minecraft:strength":{"value":3,"max":5}},"minecraft:strength_4":{"minecraft:strength":{"value":4,"max":5}},"minecraft:strength_5":{"minecraft:strength":{"value":5,"max":5}},"minecraft:llama_creamy":{"minecraft:variant":{"value":0}},"minecraft:llama_white":{"minecraft:variant":{"value":1}},"minecraft:llama_brown":{"minecraft:variant":{"value":2}},"minecraft:llama_gray":{"minecraft:variant":{"value":3}},"minecraft:llama_tamed":{"minecraft:is_tamed":{},"minecraft:rideable":{"seat_count":1,"crouching_skip_interact":true,"family_types":["player"],"interact_text":"action.interact.ride.horse","seats":{"position":[0,1.17,-0.3]}},"minecraft:inventory":{"inventory_size":16,"container_type":"horse","additional_slots_per_strength":3},"minecraft:equippable":{"slots":[{"slot":1,"item":"carpet","accepted_items":["carpet"]}]}},"minecraft:llama_unchested":{"minecraft:interact":{"interactions":[{"play_sounds":"armor.equip_generic","on_interact":{"filters":{"all_of":[{"test":"is_family","subject":"other","value":"player"},{"test":"has_equipment","domain":"hand","subject":"other","value":"chest"}]},"event":"minecraft:on_chest","target":"self"},"use_item":true,"interact_text":"action.interact.attachchest"}]}},"minecraft:llama_chested":{"minecraft:is_chested":{}},"minecraft:llama_angry":{"minecraft:angry":{"duration":4,"broadcast_anger":false,"calm_event":{"event":"minecraft:on_calm","target":"self"}},"minecraft:behavior.ranged_attack":{"priority":2,"attack_radius":64,"charge_shoot_trigger":2,"charge_charged_trigger":1}},"minecraft:llama_angry_wolf":{"minecraft:angry":{"duration":-1,"broadcast_anger":false,"calm_event":{"event":"minecraft:on_calm","target":"self"}},"minecraft:behavior.ranged_attack":{"priority":2,"attack_radius":64,"charge_shoot_trigger":2,"charge_charged_trigger":1}},"minecraft:llama_defend_trader":{"minecraft:angry":{"duration":10,"calm_event":{"event":"minecraft:on_calm","target":"self"}},"minecraft:behavior.ranged_attack":{"priority":2,"attack_radius":64,"charge_shoot_trigger":2,"charge_charged_trigger":1}},"minecraft:in_caravan":{"minecraft:damage_sensor":{"triggers":{"cause":"all","deals_damage":true}}}},"components":{"minecraft:behavior.float":{"priority":0},"minecraft:behavior.run_around_like_crazy":{"priority":1,"speed_multiplier":1.2},"minecraft:behavior.mount_pathing":{"priority":1,"speed_multiplier":1.25,"target_dist":0,"track_target":true},"minecraft:behavior.hurt_by_target":{"priority":1,"hurt_owner":true,"entity_types":{"filters":{"test":"is_family","subject":"other","operator":"!=","value":"trader_llama"}}},"minecraft:behavior.nearest_attackable_target":{"priority":2,"attack_interval":16,"entity_types":[{"filters":{"all_of":[{"test":"is_family","subject":"other","value":"wolf"},{"test":"has_component","subject":"other","operator":"!=","value":"minecraft:is_tamed"}]},"max_dist":10}],"must_see":false,"must_reach":true},"minecraft:behavior.follow_caravan":{"priority":3,"speed_multiplier":2.1,"entity_count":10,"entity_types":{"filters":{"test":"is_family","subject":"other","value":"llama"}}},"minecraft:behavior.panic":{"priority":4,"speed_multiplier":1.2},"minecraft:behavior.random_stroll":{"priority":6,"speed_multiplier":0.7},"minecraft:behavior.look_at_player":{"priority":7,"look_distance":6,"probability":0.02},"minecraft:behavior.random_look_around":{"priority":8},"minecraft:is_hidden_when_invisible":{},"minecraft:type_family":{"family":["trader_llama","llama","mob"]},"minecraft:breathable":{"total_supply":15,"suffocate_time":0},"minecraft:nameable":{},"minecraft:mark_variant":{"value":1},"minecraft:health":{"value":{"range_min":15,"range_max":30}},"minecraft:hurt_on_condition":{"damage_conditions":[{"filters":{"test":"in_lava","subject":"self","operator":"==","value":true},"cause":"lava","damage_per_tick":4}]},"minecraft:movement":{"value":0.25},"minecraft:navigation.walk":{"can_path_over_water":true,"avoid_damage_blocks":true},"minecraft:movement.basic":{},"minecraft:jump.static":{},"minecraft:follow_range":{"value":40,"max":40},"minecraft:leashable":{"soft_distance":4,"hard_distance":6,"max_distance":10,"can_be_stolen":true},"minecraft:balloonable":{},"minecraft:healable":{"items":[{"item":"wheat","heal_amount":2},{"item":"hay_block","heal_amount":10}]},"minecraft:shooter":{"def":"minecraft:llama_spit"},"minecraft:despawn":{"despawn_from_distance":{}},"minecraft:conditional_bandwidth_optimization":{},"minecraft:damage_sensor":{"triggers":{"cause":"all","deals_damage":true,"on_damage":{"filters":{"all_of":[{"test":"is_family","subject":"other","operator":"!=","value":"trader_llama"},{"test":"in_caravan","value":false}]},"event":"minecraft:become_angry"}}},"minecraft:on_target_acquired":{"filters":{"all_of":[{"test":"is_family","subject":"target","value":"wolf"},{"test":"has_component","subject":"target","operator":"!=","value":"minecraft:is_tamed"}]},"event":"minecraft:mad_at_wolf","target":"self"},"minecraft:on_target_escape":{"filters":{"all_of":[{"test":"is_family","subject":"target","value":"wolf"},{"test":"has_component","subject":"target","operator":"!=","value":"minecraft:is_tamed"}]},"event":"minecraft:on_calm","target":"self"},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:collision_box":{"width":0.9,"height":1.87}},"events":{"minecraft:entity_spawned":{"sequence":[{"randomize":[{"weight":90,"trigger":"minecraft:spawn_adult"},{"weight":10,"trigger":"minecraft:spawn_baby"}]}]},"minecraft:entity_born":{"add":{"component_groups":["minecraft:llama_baby"]}},"minecraft:from_wandering_trader":{"sequence":[{"add":{"component_groups":["minecraft:llama_adult","minecraft:llama_wandering_trader","minecraft:llama_persistence"]}},{"trigger":"minecraft:add_attributes"}]},"minecraft:ageable_grow_up":{"remove":{"component_groups":["minecraft:llama_baby"]},"add":{"component_groups":["minecraft:llama_adult","minecraft:llama_wild"]}},"minecraft:on_tame":{"remove":{"component_groups":["minecraft:llama_wild"]},"add":{"component_groups":["minecraft:llama_tamed","minecraft:llama_unchested"]}},"minecraft:remove_persistence":{"remove":{"component_groups":["minecraft:llama_persistence"]}},"minecraft:join_caravan":{"add":{"component_groups":["minecraft:in_caravan"]}},"minecraft:leave_caravan":{"remove":{"component_groups":["minecraft:in_caravan"]}},"minecraft:mad_at_wolf":{"add":{"component_groups":["minecraft:llama_angry_wolf"]}},"minecraft:defend_wandering_trader":{"add":{"component_groups":["minecraft:llama_defend_trader"]}},"minecraft:become_angry":{"add":{"component_groups":["minecraft:llama_angry"]}},"minecraft:on_calm":{"remove":{"component_groups":["minecraft:llama_angry","minecraft:llama_angry_wolf","minecraft:llama_defend_trader"]}},"minecraft:on_chest":{"remove":{"component_groups":["minecraft:llama_unchested"]},"add":{"component_groups":["minecraft:llama_chested"]}},"minecraft:add_attributes":{"sequence":[{"randomize":[{"weight":32,"add":{"component_groups":["minecraft:strength_1"]}},{"weight":32,"add":{"component_groups":["minecraft:strength_2"]}},{"weight":32,"add":{"component_groups":["minecraft:strength_3"]}},{"weight":2,"add":{"component_groups":["minecraft:strength_4"]}},{"weight":2,"add":{"component_groups":["minecraft:strength_5"]}}]},{"randomize":[{"weight":25,"add":{"component_groups":["minecraft:llama_creamy"]}},{"weight":25,"add":{"component_groups":["minecraft:llama_white"]}},{"weight":25,"add":{"component_groups":["minecraft:llama_brown"]}},{"weight":25,"add":{"component_groups":["minecraft:llama_gray"]}}]}]},"minecraft:spawn_baby":{"add":{"component_groups":["minecraft:llama_baby"]},"trigger":"minecraft:add_attributes"},"minecraft:spawn_adult":{"add":{"component_groups":["minecraft:llama_adult","minecraft:llama_wild"]},"trigger":"minecraft:add_attributes"}}}},"minecraft:tripod_camera":{"format_version":"1.13.0","minecraft:entity":{"description":{"identifier":"minecraft:tripod_camera","is_spawnable":false,"is_summonable":false,"is_experimental":false},"components":{"minecraft:type_family":{"family":["tripodcamera","inanimate","mob"]},"minecraft:health":{"value":4,"max":4},"minecraft:hurt_on_condition":{"damage_conditions":[{"filters":{"test":"in_lava","subject":"self","operator":"==","value":true},"cause":"lava","damage_per_tick":4}]},"minecraft:loot":{"table":"loot_tables/empty.json"},"minecraft:collision_box":{"width":0.75,"height":1.8},"minecraft:physics":{},"minecraft:conditional_bandwidth_optimization":{}}}},"minecraft:tropicalfish":{"format_version":"1.16.0","minecraft:entity":{"description":{"identifier":"minecraft:tropicalfish","is_spawnable":true,"is_summonable":true,"is_experimental":false},"component_groups":{"minecraft:tropicalfish_variant_a":{"minecraft:variant":{"value":0}},"minecraft:tropicalfish_variant_b":{"minecraft:variant":{"value":1}},"minecraft:tropicalfish_variant_pattern_1":{"minecraft:mark_variant":{"value":0}},"minecraft:tropicalfish_variant_pattern_2":{"minecraft:mark_variant":{"value":1}},"minecraft:tropicalfish_variant_pattern_3":{"minecraft:mark_variant":{"value":2}},"minecraft:tropicalfish_variant_pattern_4":{"minecraft:mark_variant":{"value":3}},"minecraft:tropicalfish_variant_pattern_5":{"minecraft:mark_variant":{"value":4}},"minecraft:tropicalfish_variant_pattern_6":{"minecraft:mark_variant":{"value":5}},"minecraft:tropicalfish_base_white":{"minecraft:color":{"value":0}},"minecraft:tropicalfish_base_orange":{"minecraft:color":{"value":1}},"minecraft:tropicalfish_base_magenta":{"minecraft:color":{"value":2}},"minecraft:tropicalfish_base_lightblue":{"minecraft:color":{"value":3}},"minecraft:tropicalfish_base_yellow":{"minecraft:color":{"value":4}},"minecraft:tropicalfish_base_lightgreen":{"minecraft:color":{"value":5}},"minecraft:tropicalfish_base_pink":{"minecraft:color":{"value":6}},"minecraft:tropicalfish_base_gray":{"minecraft:color":{"value":7}},"minecraft:tropicalfish_base_silver":{"minecraft:color":{"value":8}},"minecraft:tropicalfish_base_cyan":{"minecraft:color":{"value":9}},"minecraft:tropicalfish_base_purple":{"minecraft:color":{"value":10}},"minecraft:tropicalfish_base_blue":{"minecraft:color":{"value":11}},"minecraft:tropicalfish_base_brown":{"minecraft:color":{"value":12}},"minecraft:tropicalfish_base_green":{"minecraft:color":{"value":13}},"minecraft:tropicalfish_base_red":{"minecraft:color":{"value":14}},"minecraft:tropicalfish_pattern_white":{"minecraft:color2":{"value":0}},"minecraft:tropicalfish_pattern_orange":{"minecraft:color2":{"value":1}},"minecraft:tropicalfish_pattern_magenta":{"minecraft:color2":{"value":2}},"minecraft:tropicalfish_pattern_lightblue":{"minecraft:color2":{"value":3}},"minecraft:tropicalfish_pattern_yellow":{"minecraft:color2":{"value":4}},"minecraft:tropicalfish_pattern_lightgreen":{"minecraft:color2":{"value":5}},"minecraft:tropicalfish_pattern_pink":{"minecraft:color2":{"value":6}},"minecraft:tropicalfish_pattern_gray":{"minecraft:color2":{"value":7}},"minecraft:tropicalfish_pattern_silver":{"minecraft:color2":{"value":8}},"minecraft:tropicalfish_pattern_cyan":{"minecraft:color2":{"value":9}},"minecraft:tropicalfish_pattern_purple":{"minecraft:color2":{"value":10}},"minecraft:tropicalfish_pattern_blue":{"minecraft:color2":{"value":11}},"minecraft:tropicalfish_pattern_brown":{"minecraft:color2":{"value":12}},"minecraft:tropicalfish_pattern_green":{"minecraft:color2":{"value":13}},"minecraft:tropicalfish_pattern_red":{"minecraft:color2":{"value":14}},"minecraft:anenonme":{"minecraft:variant":{"value":1},"minecraft:mark_variant":{"value":1},"minecraft:color":{"value":1},"minecraft:color2":{"value":7}},"minecraft:black_tang":{"minecraft:variant":{"value":1},"minecraft:mark_variant":{"value":0},"minecraft:color":{"value":7},"minecraft:color2":{"value":7}},"minecraft:blue_dory":{"minecraft:variant":{"value":0},"minecraft:mark_variant":{"value":1},"minecraft:color":{"value":7},"minecraft:color2":{"value":3}},"minecraft:butterfly_fish":{"minecraft:variant":{"value":0},"minecraft:mark_variant":{"value":4},"minecraft:color":{"value":0},"minecraft:color2":{"value":7}},"minecraft:cichlid":{"minecraft:variant":{"value":0},"minecraft:mark_variant":{"value":1},"minecraft:color":{"value":11},"minecraft:color2":{"value":7}},"minecraft:clownfish":{"minecraft:variant":{"value":0},"minecraft:mark_variant":{"value":0},"minecraft:color":{"value":1},"minecraft:color2":{"value":0}},"minecraft:cc_betta":{"minecraft:variant":{"value":0},"minecraft:mark_variant":{"value":5},"minecraft:color":{"value":6},"minecraft:color2":{"value":3}},"minecraft:dog_fish":{"minecraft:variant":{"value":1},"minecraft:mark_variant":{"value":3},"minecraft:color":{"value":10},"minecraft:color2":{"value":4}},"minecraft:e_red_snapper":{"minecraft:variant":{"value":1},"minecraft:mark_variant":{"value":5},"minecraft:color":{"value":0},"minecraft:color2":{"value":14}},"minecraft:goat_fish":{"minecraft:variant":{"value":0},"minecraft:mark_variant":{"value":5},"minecraft:color":{"value":0},"minecraft:color2":{"value":4}},"minecraft:moorish_idol":{"minecraft:variant":{"value":1},"minecraft:mark_variant":{"value":2},"minecraft:color":{"value":0},"minecraft:color2":{"value":7}},"minecraft:ornate_butterfly":{"minecraft:variant":{"value":1},"minecraft:mark_variant":{"value":5},"minecraft:color":{"value":0},"minecraft:color2":{"value":1}},"minecraft:parrot_fish":{"minecraft:variant":{"value":0},"minecraft:mark_variant":{"value":3},"minecraft:color":{"value":9},"minecraft:color2":{"value":6}},"minecraft:queen_angel_fish":{"minecraft:variant":{"value":0},"minecraft:mark_variant":{"value":4},"minecraft:color":{"value":5},"minecraft:color2":{"value":3}},"minecraft:red_cichlid":{"minecraft:variant":{"value":1},"minecraft:mark_variant":{"value":4},"minecraft:color":{"value":14},"minecraft:color2":{"value":0}},"minecraft:red_lipped_benny":{"minecraft:variant":{"value":0},"minecraft:mark_variant":{"value":2},"minecraft:color":{"value":7},"minecraft:color2":{"value":14}},"minecraft:red_snapper":{"minecraft:variant":{"value":1},"minecraft:mark_variant":{"value":3},"minecraft:color":{"value":14},"minecraft:color2":{"value":0}},"minecraft:threadfin":{"minecraft:variant":{"value":1},"minecraft:mark_variant":{"value":0},"minecraft:color":{"value":0},"minecraft:color2":{"value":4}},"minecraft:tomato_clown":{"minecraft:variant":{"value":0},"minecraft:mark_variant":{"value":1},"minecraft:color":{"value":14},"minecraft:color2":{"value":0}},"minecraft:triggerfish":{"minecraft:variant":{"value":0},"minecraft:mark_variant":{"value":1},"minecraft:color":{"value":7},"minecraft:color2":{"value":0}},"minecraft:yellow_tang":{"minecraft:variant":{"value":1},"minecraft:mark_variant":{"value":1},"minecraft:color":{"value":4},"minecraft:color2":{"value":4}},"minecraft:yellowtail_parrot":{"minecraft:variant":{"value":0},"minecraft:mark_variant":{"value":3},"minecraft:color":{"value":9},"minecraft:color2":{"value":4}}},"components":{"minecraft:is_hidden_when_invisible":{},"minecraft:experience_reward":{"on_death":"query.last_hit_by_player ? Math.Random(1,3) : 0"},"minecraft:type_family":{"family":["tropicalfish","fish"]},"minecraft:collision_box":{"width":0.4,"height":0.4},"minecraft:health":{"value":3,"max":3},"minecraft:hurt_on_condition":{"damage_conditions":[{"filters":{"test":"in_lava","subject":"self","operator":"==","value":true},"cause":"lava","damage_per_tick":4}]},"minecraft:loot":{"table":"loot_tables/entities/tropicalfish.json"},"minecraft:scale":{"value":1.3},"minecraft:breathable":{"total_supply":15,"suffocate_time":0,"breathes_air":false,"breathes_water":true},"minecraft:movement":{"value":0.12},"minecraft:underwater_movement":{"value":0.12},"minecraft:navigation.generic":{"is_amphibious":false,"can_path_over_water":false,"can_swim":true,"can_walk":false,"can_breach":false,"can_sink":false},"minecraft:movement.sway":{"sway_amplitude":0},"minecraft:physics":{"has_gravity":false},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:despawn":{"despawn_from_distance":{"min_distance":32,"max_distance":40}},"minecraft:behavior.swim_idle":{"priority":5,"idle_time":5,"success_rate":0.1},"minecraft:behavior.random_swim":{"priority":3,"speed_multiplier":1,"xz_dist":16,"y_dist":4,"interval":0},"minecraft:behavior.avoid_mob_type":{"priority":1,"entity_types":[{"filters":{"any_of":[{"test":"is_family","subject":"other","value":"player"},{"test":"is_family","subject":"other","value":"axolotl"}]},"max_dist":6,"walk_speed_multiplier":1.5,"sprint_speed_multiplier":2}]},"minecraft:behavior.swim_wander":{"priority":4,"interval":0.1,"look_ahead":2,"speed_multiplier":1,"wander_time":5},"minecraft:flocking":{"in_water":true,"match_variants":true,"use_center_of_mass":false,"low_flock_limit":4,"high_flock_limit":8,"goal_weight":2,"loner_chance":0.1,"influence_radius":3,"breach_influence":7,"separation_weight":0.65,"separation_threshold":0.15,"cohesion_weight":2.75,"cohesion_threshold":1.5,"innner_cohesion_threshold":1.5,"min_height":1.5,"max_height":6,"block_distance":2,"block_weight":0.85},"minecraft:nameable":{},"minecraft:conditional_bandwidth_optimization":{}},"events":{"minecraft:become_anenonme":{"add":{"component_groups":["minecraft:anenonme"]}},"minecraft:become_black_tang":{"add":{"component_groups":["minecraft:black_tang"]}},"minecraft:become_blue_dory":{"add":{"component_groups":["minecraft:blue_dory"]}},"minecraft:become_butterfly_fish":{"add":{"component_groups":["minecraft:butterfly_fish"]}},"minecraft:become_cichlid":{"add":{"component_groups":["minecraft:cichlid"]}},"minecraft:become_clownfish":{"add":{"component_groups":["minecraft:clownfish"]}},"minecraft:become_cc_betta":{"add":{"component_groups":["minecraft:cc_betta"]}},"minecraft:become_dog_fish":{"add":{"component_groups":["minecraft:dog_fish"]}},"minecraft:become_e_red_snapper":{"add":{"component_groups":["minecraft:e_red_snapper"]}},"minecraft:become_goat_fish":{"add":{"component_groups":["minecraft:goat_fish"]}},"minecraft:become_moorish_idol":{"add":{"component_groups":["minecraft:moorish_idol"]}},"minecraft:become_ornate_butterfly":{"add":{"component_groups":["minecraft:ornate_butterfly"]}},"minecraft:become_parrot_fish":{"add":{"component_groups":["minecraft:parrot_fish"]}},"minecraft:become_queen_angel_fish":{"add":{"component_groups":["minecraft:queen_angel_fish"]}},"minecraft:become_red_cichlid":{"add":{"component_groups":["minecraft:red_cichlid"]}},"minecraft:become_red_lipped_benny":{"add":{"component_groups":["minecraft:red_lipped_benny"]}},"minecraft:become_red_snapper":{"add":{"component_groups":["minecraft:red_snapper"]}},"minecraft:become_threadfin":{"add":{"component_groups":["minecraft:threadfin"]}},"minecraft:become_tomato_clown":{"add":{"component_groups":["minecraft:tomato_clown"]}},"minecraft:become_triggerfish":{"add":{"component_groups":["minecraft:triggerfish"]}},"minecraft:become_yellow_tang":{"add":{"component_groups":["minecraft:yellow_tang"]}},"minecraft:become_yellow_tail_parrot":{"add":{"component_groups":["minecraft:yellow_tail_parrot"]}},"minecraft:entity_spawned":{"sequence":[{"add":{"component_groups":["adult"]}},{"randomize":[{"weight":1,"add":{"component_groups":["minecraft:tropicalfish_variant_a"]}},{"weight":1,"add":{"component_groups":["minecraft:tropicalfish_variant_b"]}}]},{"randomize":[{"weight":1,"add":{"component_groups":["minecraft:tropicalfish_variant_pattern_1"]}},{"weight":1,"add":{"component_groups":["minecraft:tropicalfish_variant_pattern_2"]}},{"weight":1,"add":{"component_groups":["minecraft:tropicalfish_variant_pattern_3"]}},{"weight":1,"add":{"component_groups":["minecraft:tropicalfish_variant_pattern_4"]}},{"weight":1,"add":{"component_groups":["minecraft:tropicalfish_variant_pattern_5"]}},{"weight":1,"add":{"component_groups":["minecraft:tropicalfish_variant_pattern_6"]}}]},{"randomize":[{"weight":1,"add":{"component_groups":["minecraft:tropicalfish_base_white"]}},{"weight":1,"add":{"component_groups":["minecraft:tropicalfish_base_orange"]}},{"weight":1,"add":{"component_groups":["minecraft:tropicalfish_base_magenta"]}},{"weight":1,"add":{"component_groups":["minecraft:tropicalfish_base_lightblue"]}},{"weight":1,"add":{"component_groups":["minecraft:tropicalfish_base_yellow"]}},{"weight":1,"add":{"component_groups":["minecraft:tropicalfish_base_lightgreen"]}},{"weight":1,"add":{"component_groups":["minecraft:tropicalfish_base_pink"]}},{"weight":1,"add":{"component_groups":["minecraft:tropicalfish_base_gray"]}},{"weight":1,"add":{"component_groups":["minecraft:tropicalfish_base_silver"]}},{"weight":1,"add":{"component_groups":["minecraft:tropicalfish_base_cyan"]}},{"weight":1,"add":{"component_groups":["minecraft:tropicalfish_base_purple"]}},{"weight":1,"add":{"component_groups":["minecraft:tropicalfish_base_blue"]}},{"weight":1,"add":{"component_groups":["minecraft:tropicalfish_base_brown"]}},{"weight":1,"add":{"component_groups":["minecraft:tropicalfish_base_green"]}},{"weight":1,"add":{"component_groups":["minecraft:tropicalfish_base_red"]}}]},{"randomize":[{"weight":1,"add":{"component_groups":["minecraft:tropicalfish_pattern_white"]}},{"weight":1,"add":{"component_groups":["minecraft:tropicalfish_pattern_orange"]}},{"weight":1,"add":{"component_groups":["minecraft:tropicalfish_pattern_magenta"]}},{"weight":1,"add":{"component_groups":["minecraft:tropicalfish_pattern_lightblue"]}},{"weight":1,"add":{"component_groups":["minecraft:tropicalfish_pattern_yellow"]}},{"weight":1,"add":{"component_groups":["minecraft:tropicalfish_pattern_lightgreen"]}},{"weight":1,"add":{"component_groups":["minecraft:tropicalfish_pattern_pink"]}},{"weight":1,"add":{"component_groups":["minecraft:tropicalfish_pattern_gray"]}},{"weight":1,"add":{"component_groups":["minecraft:tropicalfish_pattern_silver"]}},{"weight":1,"add":{"component_groups":["minecraft:tropicalfish_pattern_cyan"]}},{"weight":1,"add":{"component_groups":["minecraft:tropicalfish_pattern_purple"]}},{"weight":1,"add":{"component_groups":["minecraft:tropicalfish_pattern_blue"]}},{"weight":1,"add":{"component_groups":["minecraft:tropicalfish_pattern_brown"]}},{"weight":1,"add":{"component_groups":["minecraft:tropicalfish_pattern_green"]}},{"weight":1,"add":{"component_groups":["minecraft:tropicalfish_pattern_red"]}}]}]}}}},"minecraft:turtle":{"format_version":"1.18.20","minecraft:entity":{"description":{"identifier":"minecraft:turtle","is_spawnable":true,"is_summonable":true,"is_experimental":false},"component_groups":{"minecraft:baby":{"minecraft:type_family":{"family":["turtle","baby_turtle","mob"]},"minecraft:collision_box":{"width":0.6,"height":0.2},"minecraft:underwater_movement":{"value":0.06},"minecraft:is_baby":{},"minecraft:scale":{"value":0.16},"minecraft:behavior.move_to_water":{"priority":1,"search_range":15,"search_height":5,"goal_radius":0.1},"minecraft:ageable":{"duration":1200,"feed_items":["seagrass"],"drop_items":["turtle_shell_piece"],"grow_up":{"event":"minecraft:ageable_grow_up","target":"self"}}},"minecraft:adult":{"minecraft:experience_reward":{"on_bred":"Math.Random(1,7)","on_death":"query.last_hit_by_player ? Math.Random(1,3) : 0"},"minecraft:type_family":{"family":["turtle","mob"]},"minecraft:collision_box":{"width":1.2,"height":0.4},"minecraft:underwater_movement":{"value":0.12},"minecraft:loot":{"table":"loot_tables/entities/sea_turtle.json"},"minecraft:breedable":{"require_tame":false,"causes_pregnancy":true,"breeds_with":{"mate_type":"minecraft:turtle","baby_type":"minecraft:turtle","breed_event":{"event":"minecraft:become_pregnant","target":"self"}},"breed_items":["seagrass"]},"minecraft:behavior.breed":{"priority":2,"speed_multiplier":1},"minecraft:behavior.move_to_land":{"priority":6,"search_range":16,"search_height":5,"goal_radius":0.5},"minecraft:behavior.random_stroll":{"priority":9,"interval":100}},"minecraft:pregnant":{"minecraft:behavior.go_home":{"priority":1,"speed_multiplier":1,"interval":700,"goal_radius":4,"on_home":[{"event":"minecraft:go_lay_egg","target":"self"}]}},"minecraft:wants_to_lay_egg":{"minecraft:behavior.lay_egg":{"priority":1,"speed_multiplier":1,"search_range":16,"search_height":4,"goal_radius":1.5,"on_lay":{"event":"minecraft:laid_egg","target":"self"}}}},"components":{"minecraft:is_hidden_when_invisible":{},"minecraft:breathable":{"total_supply":15,"suffocate_time":0,"breathes_water":true,"breathes_air":true,"generates_bubbles":false},"minecraft:nameable":{},"minecraft:health":{"value":30},"minecraft:damage_sensor":{"triggers":{"cause":"lightning","deals_damage":true,"damage_multiplier":2000}},"minecraft:hurt_on_condition":{"damage_conditions":[{"filters":{"test":"in_lava","subject":"self","operator":"==","value":true},"cause":"lava","damage_per_tick":4}]},"minecraft:movement":{"value":0.1},"minecraft:water_movement":{"drag_factor":0.9},"minecraft:navigation.generic":{"is_amphibious":true,"can_path_over_water":false,"can_swim":true,"can_walk":true,"can_sink":false,"avoid_damage_blocks":true},"minecraft:movement.amphibious":{"max_turn":5},"minecraft:jump.static":{},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:home":{},"minecraft:follow_range":{"value":1024},"minecraft:despawn":{"despawn_from_distance":{}},"minecraft:behavior.panic":{"priority":0,"prefer_water":true,"speed_multiplier":1.2},"minecraft:behavior.hurt_by_target":{"priority":1},"minecraft:behavior.tempt":{"priority":3,"speed_multiplier":1.1,"can_tempt_vertically":true,"items":["seagrass"]},"minecraft:behavior.move_to_water":{"priority":4,"search_range":16,"search_height":5,"goal_radius":1.5},"minecraft:behavior.random_swim":{"priority":7,"interval":0,"xz_dist":30,"y_dist":15},"minecraft:behavior.look_at_player":{"priority":8,"target_distance":6,"probability":0.02},"minecraft:conditional_bandwidth_optimization":{}},"events":{"minecraft:entity_spawned":{"randomize":[{"weight":9,"add":{"component_groups":["minecraft:adult"]}},{"weight":1,"add":{"component_groups":["minecraft:baby"]}}]},"minecraft:entity_born":{"add":{"component_groups":["minecraft:baby"]}},"minecraft:ageable_grow_up":{"remove":{"component_groups":["minecraft:baby"]},"add":{"component_groups":["minecraft:adult"]}},"minecraft:become_pregnant":{"add":{"component_groups":["minecraft:pregnant"]}},"minecraft:go_lay_egg":{"add":{"component_groups":["minecraft:wants_to_lay_egg"]},"remove":{"component_groups":["minecraft:pregnant"]}},"minecraft:laid_egg":{"remove":{"component_groups":["minecraft:wants_to_lay_egg"]}}}}},"minecraft:vex":{"format_version":"1.16.0","minecraft:entity":{"description":{"identifier":"minecraft:vex","is_spawnable":true,"is_summonable":true,"is_experimental":false},"components":{"minecraft:is_hidden_when_invisible":{},"minecraft:experience_reward":{"on_death":"query.last_hit_by_player ? 5 + (query.equipment_count * Math.Random(1,3)) : 0"},"minecraft:nameable":{},"minecraft:type_family":{"family":["vex","monster","mob"]},"minecraft:equipment":{"table":"loot_tables/entities/vex_gear.json"},"minecraft:health":{"value":14,"max":14},"minecraft:attack":{"damage":3},"minecraft:collision_box":{"width":0.4,"height":0.8},"minecraft:movement":{"value":1},"minecraft:navigation.walk":{"can_path_over_water":true},"minecraft:movement.basic":{},"minecraft:jump.static":{},"minecraft:can_climb":{},"minecraft:fire_immune":{},"minecraft:despawn":{"despawn_from_distance":{}},"minecraft:behavior.float":{"priority":0},"minecraft:behavior.charge_attack":{"priority":4},"minecraft:behavior.nearest_attackable_target":{"priority":3,"entity_types":[{"filters":{"any_of":[{"test":"is_family","subject":"other","value":"player"},{"test":"is_family","subject":"other","value":"irongolem"},{"test":"is_family","subject":"other","value":"wandering_trader"}]},"max_dist":70},{"filters":{"all_of":[{"test":"is_family","subject":"other","value":"villager"},{"test":"has_component","subject":"other","operator":"!=","value":"minecraft:is_baby"}]},"max_dist":70}],"must_see":true},"minecraft:behavior.look_at_player":{"priority":9,"look_distance":6,"probability":0.02},"minecraft:behavior.look_at_entity":{"priority":9,"look_distance":6,"probability":0.02,"filters":{"test":"is_family","subject":"other","value":"mob"}},"minecraft:behavior.hurt_by_target":{"priority":1},"minecraft:physics":{"has_gravity":false,"has_collision":false},"minecraft:conditional_bandwidth_optimization":{},"minecraft:game_event_movement_tracking":{"emit_move":false,"emit_swim":false}}}},"minecraft:villager":{"format_version":"1.18.10","minecraft:entity":{"description":{"identifier":"minecraft:villager","is_spawnable":true,"is_summonable":true,"is_experimental":false},"component_groups":{"minecraft:celebrate":{"minecraft:behavior.celebrate_survive":{"priority":5,"fireworks_interval":{"range_min":2,"range_max":7},"duration":30,"on_celebration_end_event":{"event":"minecraft:stop_celebrating","target":"self"}},"minecraft:behavior.move_outdoors":{"priority":2,"speed_multiplier":0.8,"timeout_cooldown":8}},"become_witch":{"minecraft:transformation":{"into":"minecraft:witch","delay":0.5}},"become_villager_v2":{"minecraft:transformation":{"into":"minecraft:villager_v2","keep_level":true}},"become_zombie":{"minecraft:transformation":{"into":"minecraft:zombie_villager"}},"behavior_peasant":{"minecraft:shareables":{"items":[{"item":"minecraft:bread","want_amount":3,"surplus_amount":6,"stored_in_inventory":true},{"item":"minecraft:carrot","want_amount":60,"surplus_amount":4,"stored_in_inventory":true},{"item":"minecraft:potato","want_amount":60,"surplus_amount":24,"stored_in_inventory":true},{"item":"minecraft:beetroot","want_amount":60,"surplus_amount":24,"stored_in_inventory":true},{"item":"minecraft:wheat_seeds","want_amount":64,"surplus_amount":64,"stored_in_inventory":true,"pickup_only":true},{"item":"minecraft:beetroot_seeds","want_amount":64,"surplus_amount":64,"stored_in_inventory":true,"pickup_only":true},{"item":"minecraft:wheat","want_amount":45,"surplus_amount":18,"craft_into":"minecraft:bread","stored_in_inventory":true}]},"minecraft:behavior.harvest_farm_block":{"priority":9,"speed_multiplier":0.5}},"behavior_non_peasant":{"minecraft:shareables":{"items":[{"item":"minecraft:bread","want_amount":3,"surplus_amount":6,"stored_in_inventory":true},{"item":"minecraft:carrot","want_amount":12,"surplus_amount":24,"stored_in_inventory":true},{"item":"minecraft:potato","want_amount":12,"surplus_amount":24,"stored_in_inventory":true},{"item":"minecraft:beetroot","want_amount":12,"surplus_amount":24,"stored_in_inventory":true}]}},"farmer":{"minecraft:type_family":{"family":["villager","peasant","farmer","mob"]},"minecraft:variant":{"value":0},"minecraft:trade_table":{"display_name":"entity.villager.farmer","table":"trading/farmer_trades.json","convert_trades_economy":true}},"fisherman":{"minecraft:type_family":{"family":["villager","peasant","fisherman","mob"]},"minecraft:variant":{"value":0},"minecraft:trade_table":{"display_name":"entity.villager.fisherman","table":"trading/fisherman_trades.json","convert_trades_economy":true}},"shepherd":{"minecraft:type_family":{"family":["villager","peasant","shepherd","mob"]},"minecraft:variant":{"value":0},"minecraft:trade_table":{"display_name":"entity.villager.shepherd","table":"trading/shepherd_trades.json","convert_trades_economy":true}},"fletcher":{"minecraft:type_family":{"family":["villager","peasant","fletcher","mob"]},"minecraft:variant":{"value":0},"minecraft:trade_table":{"display_name":"entity.villager.fletcher","table":"trading/fletcher_trades.json","convert_trades_economy":true}},"librarian":{"minecraft:type_family":{"family":["villager","librarian","mob"]},"minecraft:variant":{"value":1},"minecraft:trade_table":{"display_name":"entity.villager.librarian","table":"trading/librarian_trades.json","convert_trades_economy":true}},"cartographer":{"minecraft:type_family":{"family":["villager","cartographer","mob"]},"minecraft:variant":{"value":1},"minecraft:trade_table":{"display_name":"entity.villager.cartographer","table":"trading/cartographer_trades.json","convert_trades_economy":true}},"cleric":{"minecraft:type_family":{"family":["villager","priest","cleric","mob"]},"minecraft:variant":{"value":2},"minecraft:trade_table":{"display_name":"entity.villager.cleric","table":"trading/cleric_trades.json","convert_trades_economy":true}},"armorer":{"minecraft:type_family":{"family":["villager","blacksmith","armorer","mob"]},"minecraft:variant":{"value":3},"minecraft:trade_table":{"display_name":"entity.villager.armor","table":"trading/armorer_trades.json","convert_trades_economy":true}},"weaponsmith":{"minecraft:type_family":{"family":["villager","blacksmith","weaponsmith","mob"]},"minecraft:variant":{"value":3},"minecraft:trade_table":{"display_name":"entity.villager.weapon","table":"trading/weapon_smith_trades.json","convert_trades_economy":true}},"toolsmith":{"minecraft:type_family":{"family":["villager","blacksmith","toolsmith","mob"]},"minecraft:variant":{"value":3},"minecraft:trade_table":{"display_name":"entity.villager.tool","table":"trading/tool_smith_trades.json","convert_trades_economy":true}},"butcher":{"minecraft:type_family":{"family":["villager","artisan","butcher","mob"]},"minecraft:variant":{"value":4},"minecraft:trade_table":{"display_name":"entity.villager.butcher","table":"trading/butcher_trades.json","convert_trades_economy":true}},"leatherworker":{"minecraft:type_family":{"family":["villager","artisan","leatherworker","mob"]},"minecraft:variant":{"value":4},"minecraft:trade_table":{"display_name":"entity.villager.leather","table":"trading/leather_worker_trades.json","convert_trades_economy":true}},"baby":{"minecraft:is_baby":{},"minecraft:scale":{"value":0.5},"minecraft:ageable":{"duration":1200,"grow_up":{"event":"minecraft:ageable_grow_up","target":"self"}},"minecraft:behavior.take_flower":{"priority":7},"minecraft:behavior.play":{"priority":8,"speed_multiplier":0.32}},"adult":{"minecraft:behavior.make_love":{"priority":6},"minecraft:behavior.receive_love":{"priority":7}}},"components":{"minecraft:is_hidden_when_invisible":{},"minecraft:type_family":{"family":["villager","mob"]},"minecraft:breathable":{"total_supply":15,"suffocate_time":0},"minecraft:health":{"value":20,"max":20},"minecraft:hurt_on_condition":{"damage_conditions":[{"filters":{"test":"in_lava","subject":"self","operator":"==","value":true},"cause":"lava","damage_per_tick":4}]},"minecraft:collision_box":{"width":0.6,"height":1.9},"minecraft:nameable":{},"minecraft:movement":{"value":0.5},"minecraft:navigation.walk":{"is_amphibious":true,"can_path_over_water":true,"can_pass_doors":true,"can_open_doors":true,"can_walk":true,"avoid_water":true},"minecraft:annotation.open_door":{},"minecraft:movement.basic":{},"minecraft:jump.static":{},"minecraft:can_climb":{},"minecraft:inventory":{"inventory_size":8,"private":true},"minecraft:damage_sensor":{"triggers":[{"on_damage":{"filters":{"test":"is_family","subject":"other","value":"lightning"},"event":"become_witch"},"deals_damage":false},{"on_damage":{"filters":{"any_of":[{"test":"is_family","subject":"other","value":"zombie"},{"test":"is_family","subject":"other","value":"husk"}],"all_of":[{"test":"has_damage","value":"fatal"}]},"event":"become_zombie"}}]},"minecraft:persistent":{},"minecraft:behavior.float":{"priority":0},"minecraft:behavior.trade_with_player":{"priority":1},"minecraft:behavior.look_at_trading_player":{"priority":2},"minecraft:behavior.panic":{"priority":3,"speed_multiplier":0.6},"minecraft:behavior.avoid_mob_type":{"priority":3,"entity_types":[{"filters":{"any_of":[{"test":"is_family","subject":"other","value":"zombie"},{"test":"is_family","subject":"other","value":"zombie_villager"},{"test":"is_family","subject":"other","value":"illager"},{"test":"is_family","subject":"other","value":"vex"}]},"max_dist":8,"walk_speed_multiplier":0.6,"sprint_speed_multiplier":0.6}]},"minecraft:behavior.move_indoors":{"priority":4,"speed_multiplier":0.8},"minecraft:behavior.restrict_open_door":{"priority":5},"minecraft:behavior.open_door":{"priority":6,"close_door_after":true},"minecraft:behavior.share_items":{"priority":8,"max_dist":3,"goal_radius":2,"speed_multiplier":0.5,"entity_types":[{"filters":{"test":"is_family","subject":"other","value":"villager"}}]},"minecraft:behavior.pickup_items":{"priority":9,"max_dist":3,"goal_radius":2,"speed_multiplier":0.5,"can_pickup_to_hand_or_equipment":false},"minecraft:behavior.random_stroll":{"priority":11,"speed_multiplier":0.6},"minecraft:behavior.look_at_player":{"priority":12,"look_distance":8,"probability":0.02},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:conditional_bandwidth_optimization":{}},"events":{"become_witch":{"add":{"component_groups":["become_witch"]}},"become_zombie":{"sequence":[{"filters":{"test":"is_difficulty","value":"normal"},"randomize":[{"weight":50,"add":{"component_groups":["become_zombie"]}},{"weight":50}]},{"filters":{"test":"is_difficulty","value":"hard"},"add":{"component_groups":["become_zombie"]}}]},"minecraft:entity_spawned":{"sequence":[{"filters":{"test":"has_component","operator":"!=","value":"minecraft:variant"},"randomize":[{"weight":5,"add":{"component_groups":["baby"]}},{"weight":95,"add":{"component_groups":["adult"]}}]},{"filters":{"test":"has_component","operator":"!=","value":"minecraft:variant"},"randomize":[{"weight":5,"add":{"component_groups":["farmer","behavior_peasant"]}},{"weight":5,"add":{"component_groups":["fisherman","behavior_peasant"]}},{"weight":5,"add":{"component_groups":["shepherd","behavior_peasant"]}},{"weight":5,"add":{"component_groups":["fletcher","behavior_peasant"]}},{"weight":20,"add":{"component_groups":["librarian","behavior_non_peasant"]}},{"weight":20,"add":{"component_groups":["cartographer","behavior_non_peasant"]}},{"weight":20,"add":{"component_groups":["cleric","behavior_non_peasant"]}},{"weight":6,"add":{"component_groups":["armorer","behavior_non_peasant"]}},{"weight":6,"add":{"component_groups":["weaponsmith","behavior_non_peasant"]}},{"weight":6,"add":{"component_groups":["toolsmith","behavior_non_peasant"]}},{"weight":10,"add":{"component_groups":["butcher","behavior_non_peasant"]}},{"weight":10,"add":{"component_groups":["leatherworker","behavior_non_peasant"]}}]}]},"minecraft:entity_transformed":{"sequence":[{"filters":{"test":"has_component","subject":"other","value":"minecraft:is_baby"},"add":{"component_groups":["baby"]}},{"filters":{"test":"has_component","subject":"other","operator":"!=","value":"minecraft:is_baby"},"add":{"component_groups":["adult"]}},{"filters":{"test":"is_family","subject":"other","value":"farmer"},"add":{"component_groups":["farmer","behavior_peasant"]}},{"filters":{"test":"is_family","subject":"other","value":"fisherman"},"add":{"component_groups":["fisherman","behavior_peasant"]}},{"filters":{"test":"is_family","subject":"other","value":"shepherd"},"add":{"component_groups":["shepherd","behavior_peasant"]}},{"filters":{"test":"is_family","subject":"other","value":"fletcher"},"add":{"component_groups":["fletcher","behavior_peasant"]}},{"filters":{"test":"is_family","subject":"other","value":"librarian"},"add":{"component_groups":["librarian","behavior_non_peasant"]}},{"filters":{"test":"is_family","subject":"other","value":"cartographer"},"add":{"component_groups":["cartographer","behavior_non_peasant"]}},{"filters":{"test":"is_family","subject":"other","value":"cleric"},"add":{"component_groups":["cleric","behavior_non_peasant"]}},{"filters":{"test":"is_family","subject":"other","value":"armorer"},"add":{"component_groups":["armorer","behavior_non_peasant"]}},{"filters":{"test":"is_family","subject":"other","value":"weaponsmith"},"add":{"component_groups":["weaponsmith","behavior_non_peasant"]}},{"filters":{"test":"is_family","subject":"other","value":"toolsmith"},"add":{"component_groups":["toolsmith","behavior_non_peasant"]}},{"filters":{"test":"is_family","subject":"other","value":"butcher"},"add":{"component_groups":["butcher","behavior_non_peasant"]}},{"filters":{"test":"is_family","subject":"other","value":"leatherworker"},"add":{"component_groups":["leatherworker","behavior_non_peasant"]}}]},"minecraft:entity_born":{"sequence":[{"add":{"component_groups":["baby"]}},{"randomize":[{"weight":5,"add":{"component_groups":["farmer","behavior_peasant"]}},{"weight":5,"add":{"component_groups":["fisherman","behavior_peasant"]}},{"weight":5,"add":{"component_groups":["shepherd","behavior_peasant"]}},{"weight":5,"add":{"component_groups":["fletcher","behavior_peasant"]}},{"weight":20,"add":{"component_groups":["librarian","behavior_non_peasant"]}},{"weight":20,"add":{"component_groups":["cartographer","behavior_non_peasant"]}},{"weight":20,"add":{"component_groups":["cleric","behavior_non_peasant"]}},{"weight":6,"add":{"component_groups":["armorer","behavior_non_peasant"]}},{"weight":6,"add":{"component_groups":["weaponsmith","behavior_non_peasant"]}},{"weight":6,"add":{"component_groups":["toolsmith","behavior_non_peasant"]}},{"weight":10,"add":{"component_groups":["butcher","behavior_non_peasant"]}},{"weight":10,"add":{"component_groups":["leatherworker","behavior_non_peasant"]}}]}]},"minecraft:spawn_farmer":{"randomize":[{"weight":5,"add":{"component_groups":["farmer","adult","behavior_peasant"]},"remove":{"component_groups":["baby"]}},{"weight":5,"add":{"component_groups":["fisherman","adult","behavior_peasant"]},"remove":{"component_groups":["baby"]}},{"weight":5,"add":{"component_groups":["shepherd","adult","behavior_peasant"]},"remove":{"component_groups":["baby"]}},{"weight":5,"add":{"component_groups":["fletcher","adult","behavior_peasant"]},"remove":{"component_groups":["baby"]}}]},"minecraft:spawn_librarian":{"randomize":[{"weight":20,"add":{"component_groups":["librarian","adult","behavior_non_peasant"]},"remove":{"component_groups":["baby"]}},{"weight":20,"add":{"component_groups":["cartographer","behavior_non_peasant"]},"remove":{"component_groups":["baby"]}}]},"minecraft:spawn_cleric":{"add":{"component_groups":["cleric","adult","behavior_non_peasant"]},"remove":{"component_groups":["baby"]}},"minecraft:spawn_armorer":{"randomize":[{"weight":6,"add":{"component_groups":["armorer","adult","behavior_non_peasant"]},"remove":{"component_groups":["baby"]}},{"weight":6,"add":{"component_groups":["weaponsmith","adult","behavior_non_peasant"]},"remove":{"component_groups":["baby"]}},{"weight":6,"add":{"component_groups":["toolsmith","adult","behavior_non_peasant"]},"remove":{"component_groups":["baby"]}}]},"minecraft:spawn_butcher":{"randomize":[{"weight":10,"add":{"component_groups":["butcher","adult","behavior_non_peasant"]},"remove":{"component_groups":["baby"]}},{"weight":10,"add":{"component_groups":["leatherworker","adult","behavior_non_peasant"]},"remove":{"component_groups":["baby"]}}]},"minecraft:ageable_grow_up":{"sequence":[{"remove":{"component_groups":["baby"]},"add":{"component_groups":["adult"]}}]},"minecraft:become_cleric":{"add":{"component_groups":["cleric","adult","behavior_non_peasant"]},"remove":{"component_groups":["baby"]}},"minecraft:start_celebrating":{"add":{"component_groups":["minecraft:celebrate"]}},"minecraft:stop_celebrating":{"remove":{"component_groups":["minecraft:celebrate"]}}}}},"minecraft:villager_v2":{"format_version":"1.19.0","minecraft:entity":{"description":{"identifier":"minecraft:villager_v2","is_spawnable":true,"is_summonable":false,"is_experimental":false},"component_groups":{"minecraft:celebrate":{"minecraft:behavior.celebrate_survive":{"priority":5,"fireworks_interval":{"range_min":2,"range_max":7},"duration":30,"on_celebration_end_event":{"event":"minecraft:stop_celebrating","target":"self"}},"minecraft:behavior.move_outdoors":{"priority":2,"speed_multiplier":0.8,"timeout_cooldown":8}},"trade_resupply_component_group":{"minecraft:trade_resupply":{}},"become_witch":{"minecraft:transformation":{"into":"minecraft:witch","delay":0.5}},"become_zombie":{"minecraft:transformation":{"into":"minecraft:zombie_villager_v2","keep_level":true}},"work_schedule":{"minecraft:scheduler":{"min_delay_secs":0,"max_delay_secs":10,"scheduled_events":[{"filters":{"all_of":[{"test":"hourly_clock_time","operator":">=","value":0},{"test":"hourly_clock_time","operator":"<","value":8000}]},"event":"minecraft:schedule_work_pro_villager"},{"filters":{"all_of":[{"test":"hourly_clock_time","operator":">=","value":8000},{"test":"hourly_clock_time","operator":"<","value":10000}]},"event":"minecraft:schedule_gather_villager"},{"filters":{"all_of":[{"test":"hourly_clock_time","operator":">=","value":10000},{"test":"hourly_clock_time","operator":"<","value":11000}]},"event":"minecraft:schedule_work_pro_villager"},{"filters":{"all_of":[{"test":"hourly_clock_time","operator":">=","value":11000},{"test":"hourly_clock_time","operator":"<","value":12000}]},"event":"minecraft:schedule_home_villager"},{"filters":{"all_of":[{"test":"hourly_clock_time","operator":">=","value":12000},{"test":"hourly_clock_time","operator":"<","value":24000}]},"event":"minecraft:schedule_bed_villager"}]}},"basic_schedule":{"minecraft:scheduler":{"min_delay_secs":0,"max_delay_secs":10,"scheduled_events":[{"filters":{"all_of":[{"test":"hourly_clock_time","operator":">=","value":0},{"test":"hourly_clock_time","operator":"<","value":8000}]},"event":"minecraft:schedule_wander_villager"},{"filters":{"all_of":[{"test":"hourly_clock_time","operator":">=","value":8000},{"test":"hourly_clock_time","operator":"<","value":10000}]},"event":"minecraft:schedule_gather_villager"},{"filters":{"all_of":[{"test":"hourly_clock_time","operator":">=","value":10000},{"test":"hourly_clock_time","operator":"<","value":11000}]},"event":"minecraft:schedule_wander_villager"},{"filters":{"all_of":[{"test":"hourly_clock_time","operator":">=","value":11000},{"test":"hourly_clock_time","operator":"<","value":12000}]},"event":"minecraft:schedule_home_villager"},{"filters":{"all_of":[{"test":"hourly_clock_time","operator":">=","value":12000},{"test":"hourly_clock_time","operator":"<","value":24000}]},"event":"minecraft:schedule_bed_villager"}]}},"child_schedule":{"minecraft:scheduler":{"min_delay_secs":0,"max_delay_secs":10,"scheduled_events":[{"filters":{"all_of":[{"test":"hourly_clock_time","operator":">=","value":0},{"test":"hourly_clock_time","operator":"<","value":11000}]},"event":"minecraft:schedule_play_villager"},{"filters":{"all_of":[{"test":"hourly_clock_time","operator":">=","value":11000},{"test":"hourly_clock_time","operator":"<","value":12000}]},"event":"minecraft:schedule_home_villager"},{"filters":{"all_of":[{"test":"hourly_clock_time","operator":">=","value":12000},{"test":"hourly_clock_time","operator":"<","value":24000}]},"event":"minecraft:schedule_bed_villager"}]}},"jobless_schedule":{"minecraft:scheduler":{"min_delay_secs":0,"max_delay_secs":10,"scheduled_events":[{"filters":{"all_of":[{"test":"hourly_clock_time","operator":">=","value":2000},{"test":"hourly_clock_time","operator":"<","value":13000}]},"event":"minecraft:schedule_wander_villager"},{"filters":{"all_of":[{"test":"hourly_clock_time","operator":">=","value":13000},{"test":"hourly_clock_time","operator":"<","value":14000}]},"event":"minecraft:schedule_home_villager"},{"filters":{"all_of":[{"test":"hourly_clock_time","operator":">=","value":14000},{"test":"hourly_clock_time","operator":"<","value":24000}]},"event":"minecraft:schedule_bed_villager"},{"filters":{"all_of":[{"test":"hourly_clock_time","operator":">=","value":0},{"test":"hourly_clock_time","operator":"<","value":2000}]},"event":"minecraft:schedule_bed_villager"}]}},"fisher_schedule":{"minecraft:scheduler":{"min_delay_secs":0,"max_delay_secs":10,"scheduled_events":[{"filters":{"all_of":[{"test":"hourly_clock_time","operator":">=","value":0},{"test":"hourly_clock_time","operator":"<","value":8000}]},"event":"minecraft:schedule_work_fisher"},{"filters":{"all_of":[{"test":"hourly_clock_time","operator":">=","value":8000},{"test":"hourly_clock_time","operator":"<","value":10000}]},"event":"minecraft:schedule_gather_villager"},{"filters":{"all_of":[{"test":"hourly_clock_time","operator":">=","value":10000},{"test":"hourly_clock_time","operator":"<","value":11000}]},"event":"minecraft:schedule_work_fisher"},{"filters":{"all_of":[{"test":"hourly_clock_time","operator":">=","value":11000},{"test":"hourly_clock_time","operator":"<","value":12000}]},"event":"minecraft:schedule_home_villager"},{"filters":{"all_of":[{"test":"hourly_clock_time","operator":">=","value":12000},{"test":"hourly_clock_time","operator":"<","value":24000}]},"event":"minecraft:schedule_bed_villager"}]}},"librarian_schedule":{"minecraft:scheduler":{"min_delay_secs":0,"max_delay_secs":10,"scheduled_events":[{"filters":{"all_of":[{"test":"hourly_clock_time","operator":">=","value":0},{"test":"hourly_clock_time","operator":"<","value":8000}]},"event":"minecraft:schedule_work_librarian"},{"filters":{"all_of":[{"test":"hourly_clock_time","operator":">=","value":8000},{"test":"hourly_clock_time","operator":"<","value":10000}]},"event":"minecraft:schedule_gather_villager"},{"filters":{"all_of":[{"test":"hourly_clock_time","operator":">=","value":10000},{"test":"hourly_clock_time","operator":"<","value":11000}]},"event":"minecraft:schedule_work_librarian"},{"filters":{"all_of":[{"test":"hourly_clock_time","operator":">=","value":11000},{"test":"hourly_clock_time","operator":"<","value":12000}]},"event":"minecraft:schedule_home_villager"},{"filters":{"all_of":[{"test":"hourly_clock_time","operator":">=","value":12000},{"test":"hourly_clock_time","operator":"<","value":24000}]},"event":"minecraft:schedule_bed_villager"}]}},"farmer_schedule":{"minecraft:scheduler":{"min_delay_secs":0,"max_delay_secs":10,"scheduled_events":[{"filters":{"all_of":[{"test":"hourly_clock_time","operator":">=","value":0},{"test":"hourly_clock_time","operator":"<","value":8000}]},"event":"minecraft:schedule_work_farmer"},{"filters":{"all_of":[{"test":"hourly_clock_time","operator":">=","value":8000},{"test":"hourly_clock_time","operator":"<","value":10000}]},"event":"minecraft:schedule_gather_villager"},{"filters":{"all_of":[{"test":"hourly_clock_time","operator":">=","value":10000},{"test":"hourly_clock_time","operator":"<","value":11000}]},"event":"minecraft:schedule_work_farmer"},{"filters":{"all_of":[{"test":"hourly_clock_time","operator":">=","value":11000},{"test":"hourly_clock_time","operator":"<","value":12000}]},"event":"minecraft:schedule_home_villager"},{"filters":{"all_of":[{"test":"hourly_clock_time","operator":">=","value":12000},{"test":"hourly_clock_time","operator":"<","value":24000}]},"event":"minecraft:schedule_bed_villager"}]}},"job_specific_goals":{"minecraft:behavior.inspect_bookshelf":{},"minecraft:behavior.harvest_farm_block":{},"minecraft:behavior.explore_outskirts":{},"minecraft:behavior.work":{},"minecraft:behavior.work_composter":{},"minecraft:behavior.mingle":{},"minecraft:behavior.sleep":{}},"work_schedule_villager":{"minecraft:behavior.work":{"priority":7,"active_time":250,"speed_multiplier":0.5,"goal_cooldown":200,"sound_delay_min":100,"sound_delay_max":200,"can_work_in_rain":false,"work_in_rain_tolerance":100,"on_arrival":{"event":"minecraft:resupply_trades","target":"self"}}},"work_schedule_fisher":{"minecraft:behavior.work":{"priority":7,"active_time":250,"speed_multiplier":0.5,"goal_cooldown":200,"sound_delay_min":100,"sound_delay_max":200,"can_work_in_rain":false,"work_in_rain_tolerance":100,"on_arrival":{"event":"minecraft:resupply_trades","target":"self"}}},"work_schedule_farmer":{"minecraft:shareables":{"items":[{"item":"minecraft:bread","want_amount":3,"surplus_amount":6,"stored_in_inventory":true},{"item":"minecraft:carrot","want_amount":60,"surplus_amount":24,"stored_in_inventory":true},{"item":"minecraft:potato","want_amount":60,"surplus_amount":24,"stored_in_inventory":true},{"item":"minecraft:beetroot","want_amount":60,"surplus_amount":24,"stored_in_inventory":true},{"item":"minecraft:wheat_seeds","want_amount":64,"surplus_amount":64,"stored_in_inventory":true,"pickup_only":true},{"item":"minecraft:beetroot_seeds","want_amount":64,"surplus_amount":64,"stored_in_inventory":true,"pickup_only":true},{"item":"minecraft:bone_meal","want_amount":64,"surplus_amount":64,"stored_in_inventory":true},{"item":"minecraft:wheat","want_amount":45,"surplus_amount":18,"craft_into":"minecraft:bread","stored_in_inventory":true}]},"minecraft:behavior.work_composter":{"priority":9,"active_time":250,"speed_multiplier":0.5,"goal_cooldown":200,"can_work_in_rain":false,"work_in_rain_tolerance":100,"on_arrival":{"event":"minecraft:resupply_trades","target":"self"}},"minecraft:behavior.harvest_farm_block":{"priority":7},"minecraft:behavior.fertilize_farm_block":{"priority":8}},"work_schedule_librarian":{"minecraft:behavior.work":{"priority":7,"active_time":250,"speed_multiplier":0.5,"goal_cooldown":200,"sound_delay_min":100,"sound_delay_max":200,"can_work_in_rain":false,"work_in_rain_tolerance":100,"on_arrival":{"event":"minecraft:resupply_trades","target":"self"}},"minecraft:behavior.inspect_bookshelf":{"priority":8,"speed_multiplier":0.6,"search_range":4,"search_height":3,"goal_radius":0.8,"search_count":0}},"play_schedule_villager":{"minecraft:behavior.play":{"priority":8,"speed_multiplier":0.32,"friend_types":[{"filters":{"all_of":[{"test":"is_family","subject":"other","value":"villager"},{"test":"is_baby","subject":"other","operator":"==","value":true}]}}]}},"gather_schedule_villager":{"minecraft:behavior.mingle":{"priority":7,"speed_multiplier":0.5,"duration":30,"cooldown_time":10,"mingle_partner_type":"minecraft:villager_v2","mingle_distance":2}},"home_schedule_villager":{},"bed_schedule_villager":{"minecraft:behavior.sleep":{"priority":3,"goal_radius":1.5,"speed_multiplier":0.6,"sleep_collider_height":0.3,"sleep_collider_width":1,"sleep_y_offset":0.6,"timeout_cooldown":10}},"wander_schedule_villager":{"minecraft:behavior.explore_outskirts":{"priority":9,"next_xz":5,"next_y":3,"min_wait_time":3,"max_wait_time":10,"max_travel_time":60,"speed_multiplier":0.6,"explore_dist":6,"min_perimeter":1,"min_dist_from_target":2.5,"timer_ratio":2,"dist_from_boundary":[5,0,5]}},"behavior_peasant":{"minecraft:shareables":{"items":[{"item":"minecraft:bread","want_amount":3,"surplus_amount":6,"stored_in_inventory":true},{"item":"minecraft:carrot","want_amount":60,"surplus_amount":24,"stored_in_inventory":true},{"item":"minecraft:potato","want_amount":60,"surplus_amount":24,"stored_in_inventory":true},{"item":"minecraft:beetroot","want_amount":60,"surplus_amount":24,"stored_in_inventory":true},{"item":"minecraft:wheat_seeds","want_amount":64,"surplus_amount":64,"stored_in_inventory":true,"pickup_only":true},{"item":"minecraft:beetroot_seeds","want_amount":64,"surplus_amount":64,"stored_in_inventory":true,"pickup_only":true},{"item":"minecraft:wheat","want_amount":45,"surplus_amount":18,"craft_into":"minecraft:bread","stored_in_inventory":true}]}},"behavior_non_peasant":{"minecraft:shareables":{"items":[{"item":"minecraft:bread","want_amount":3,"surplus_amount":6,"stored_in_inventory":true},{"item":"minecraft:carrot","want_amount":12,"surplus_amount":24,"stored_in_inventory":true},{"item":"minecraft:potato","want_amount":12,"surplus_amount":24,"stored_in_inventory":true},{"item":"minecraft:beetroot","want_amount":12,"surplus_amount":24,"stored_in_inventory":true}]}},"trade_components":{"minecraft:behavior.trade_interest":{},"minecraft:economy_trade_table":{}},"unskilled":{"minecraft:type_family":{"family":["villager","peasant","unskilled","mob"]},"minecraft:variant":{"value":0}},"farmer":{"minecraft:type_family":{"family":["villager","peasant","farmer","mob"]},"minecraft:variant":{"value":1},"minecraft:behavior.trade_interest":{"priority":5,"within_radius":6,"interest_time":45,"remove_item_time":1,"carried_item_switch_time":2,"cooldown":2},"minecraft:economy_trade_table":{"display_name":"entity.villager.farmer","table":"trading/economy_trades/farmer_trades.json","new_screen":true,"persist_trades":true,"cured_discount":[-100,-100],"max_cured_discount":[-500,-500]},"minecraft:dweller":{"dwelling_type":"village","dweller_role":"inhabitant","preferred_profession":"farmer","update_interval_base":60,"update_interval_variant":40,"can_find_poi":true,"can_migrate":true,"first_founding_reward":5}},"fisherman":{"minecraft:type_family":{"family":["villager","peasant","fisherman","mob"]},"minecraft:variant":{"value":2},"minecraft:behavior.trade_interest":{"priority":5,"within_radius":6,"interest_time":45,"remove_item_time":1,"carried_item_switch_time":2,"cooldown":2},"minecraft:economy_trade_table":{"display_name":"entity.villager.fisherman","table":"trading/economy_trades/fisherman_trades.json","new_screen":true,"persist_trades":true,"cured_discount":[-100,-100],"max_cured_discount":[-500,-500]},"minecraft:dweller":{"dwelling_type":"village","dweller_role":"inhabitant","preferred_profession":"fisherman","update_interval_base":60,"update_interval_variant":40,"can_find_poi":true,"can_migrate":true,"first_founding_reward":5}},"shepherd":{"minecraft:type_family":{"family":["villager","peasant","shepherd","mob"]},"minecraft:variant":{"value":3},"minecraft:behavior.trade_interest":{"priority":5,"within_radius":6,"interest_time":45,"remove_item_time":1,"carried_item_switch_time":2,"cooldown":2},"minecraft:economy_trade_table":{"display_name":"entity.villager.shepherd","table":"trading/economy_trades/shepherd_trades.json","new_screen":true,"persist_trades":true,"cured_discount":[-100,-100],"max_cured_discount":[-500,-500]},"minecraft:dweller":{"dwelling_type":"village","dweller_role":"inhabitant","preferred_profession":"shepherd","update_interval_base":60,"update_interval_variant":40,"can_find_poi":true,"can_migrate":true,"first_founding_reward":5}},"fletcher":{"minecraft:type_family":{"family":["villager","peasant","fletcher","mob"]},"minecraft:variant":{"value":4},"minecraft:behavior.trade_interest":{"priority":5,"within_radius":6,"interest_time":45,"remove_item_time":1,"carried_item_switch_time":2,"cooldown":2},"minecraft:economy_trade_table":{"display_name":"entity.villager.fletcher","table":"trading/economy_trades/fletcher_trades.json","new_screen":true,"persist_trades":true,"cured_discount":[-100,-100],"max_cured_discount":[-500,-500]},"minecraft:dweller":{"dwelling_type":"village","dweller_role":"inhabitant","preferred_profession":"fletcher","update_interval_base":60,"update_interval_variant":40,"can_find_poi":true,"can_migrate":true,"first_founding_reward":5}},"librarian":{"minecraft:type_family":{"family":["villager","librarian","mob"]},"minecraft:variant":{"value":5},"minecraft:behavior.trade_interest":{"priority":5,"within_radius":6,"interest_time":45,"remove_item_time":1,"carried_item_switch_time":2,"cooldown":2},"minecraft:economy_trade_table":{"display_name":"entity.villager.librarian","table":"trading/economy_trades/librarian_trades.json","new_screen":true,"persist_trades":true,"cured_discount":[-100,-100],"max_cured_discount":[-500,-500]},"minecraft:dweller":{"dwelling_type":"village","dweller_role":"inhabitant","preferred_profession":"librarian","update_interval_base":60,"update_interval_variant":40,"can_find_poi":true,"can_migrate":true,"first_founding_reward":5}},"cartographer":{"minecraft:type_family":{"family":["villager","cartographer","mob"]},"minecraft:variant":{"value":6},"minecraft:behavior.trade_interest":{"priority":5,"within_radius":6,"interest_time":45,"remove_item_time":1,"carried_item_switch_time":2,"cooldown":2},"minecraft:economy_trade_table":{"display_name":"entity.villager.cartographer","table":"trading/economy_trades/cartographer_trades.json","new_screen":true,"persist_trades":true,"cured_discount":[-100,-100],"max_cured_discount":[-500,-500]},"minecraft:dweller":{"dwelling_type":"village","dweller_role":"inhabitant","preferred_profession":"cartographer","update_interval_base":60,"update_interval_variant":40,"can_find_poi":true,"can_migrate":true,"first_founding_reward":5}},"cleric":{"minecraft:type_family":{"family":["villager","priest","cleric","mob"]},"minecraft:variant":{"value":7},"minecraft:behavior.trade_interest":{"priority":5,"within_radius":6,"interest_time":45,"remove_item_time":1,"carried_item_switch_time":2,"cooldown":2},"minecraft:economy_trade_table":{"display_name":"entity.villager.cleric","table":"trading/economy_trades/cleric_trades.json","new_screen":true,"persist_trades":true,"cured_discount":[-100,-100],"max_cured_discount":[-500,-500]},"minecraft:dweller":{"dwelling_type":"village","dweller_role":"inhabitant","preferred_profession":"cleric","update_interval_base":60,"update_interval_variant":40,"can_find_poi":true,"can_migrate":true,"first_founding_reward":5}},"armorer":{"minecraft:type_family":{"family":["villager","blacksmith","armorer","mob"]},"minecraft:variant":{"value":8},"minecraft:behavior.trade_interest":{"priority":5,"within_radius":6,"interest_time":45,"remove_item_time":1,"carried_item_switch_time":2,"cooldown":2},"minecraft:economy_trade_table":{"display_name":"entity.villager.armor","table":"trading/economy_trades/armorer_trades.json","new_screen":true,"persist_trades":true,"cured_discount":[-100,-100],"max_cured_discount":[-500,-500]},"minecraft:dweller":{"dwelling_type":"village","dweller_role":"inhabitant","preferred_profession":"armorer","update_interval_base":60,"update_interval_variant":40,"can_find_poi":true,"can_migrate":true,"first_founding_reward":5}},"weaponsmith":{"minecraft:type_family":{"family":["villager","blacksmith","weaponsmith","mob"]},"minecraft:variant":{"value":9},"minecraft:behavior.trade_interest":{"priority":5,"within_radius":6,"interest_time":45,"remove_item_time":1,"carried_item_switch_time":2,"cooldown":2},"minecraft:economy_trade_table":{"display_name":"entity.villager.weapon","table":"trading/economy_trades/weapon_smith_trades.json","new_screen":true,"persist_trades":true,"cured_discount":[-100,-100],"max_cured_discount":[-500,-500]},"minecraft:dweller":{"dwelling_type":"village","dweller_role":"inhabitant","preferred_profession":"weaponsmith","update_interval_base":60,"update_interval_variant":40,"can_find_poi":true,"can_migrate":true,"first_founding_reward":5}},"toolsmith":{"minecraft:type_family":{"family":["villager","blacksmith","toolsmith","mob"]},"minecraft:variant":{"value":10},"minecraft:behavior.trade_interest":{"priority":5,"within_radius":6,"interest_time":45,"remove_item_time":1,"carried_item_switch_time":2,"cooldown":2},"minecraft:economy_trade_table":{"display_name":"entity.villager.tool","table":"trading/economy_trades/tool_smith_trades.json","new_screen":true,"persist_trades":true,"cured_discount":[-100,-100],"max_cured_discount":[-500,-500]},"minecraft:dweller":{"dwelling_type":"village","dweller_role":"inhabitant","preferred_profession":"toolsmith","update_interval_base":60,"update_interval_variant":40,"can_find_poi":true,"can_migrate":true,"first_founding_reward":5}},"butcher":{"minecraft:type_family":{"family":["villager","artisan","butcher","mob"]},"minecraft:variant":{"value":11},"minecraft:behavior.trade_interest":{"priority":5,"within_radius":6,"interest_time":45,"remove_item_time":1,"carried_item_switch_time":2,"cooldown":2},"minecraft:economy_trade_table":{"display_name":"entity.villager.butcher","table":"trading/economy_trades/butcher_trades.json","new_screen":true,"persist_trades":true,"cured_discount":[-100,-100],"max_cured_discount":[-500,-500]},"minecraft:dweller":{"dwelling_type":"village","dweller_role":"inhabitant","preferred_profession":"butcher","update_interval_base":60,"update_interval_variant":40,"can_find_poi":true,"can_migrate":true,"first_founding_reward":5}},"leatherworker":{"minecraft:type_family":{"family":["villager","artisan","leatherworker","mob"]},"minecraft:variant":{"value":12},"minecraft:behavior.trade_interest":{"priority":5,"within_radius":6,"interest_time":45,"remove_item_time":1,"carried_item_switch_time":2,"cooldown":2},"minecraft:economy_trade_table":{"display_name":"entity.villager.leather","table":"trading/economy_trades/leather_worker_trades.json","new_screen":true,"persist_trades":true,"cured_discount":[-100,-100],"max_cured_discount":[-500,-500]},"minecraft:dweller":{"dwelling_type":"village","dweller_role":"inhabitant","preferred_profession":"leatherworker","update_interval_base":60,"update_interval_variant":40,"can_find_poi":true,"can_migrate":true,"first_founding_reward":5}},"mason":{"minecraft:type_family":{"family":["villager","artisan","stone_mason","mob"]},"minecraft:variant":{"value":13},"minecraft:behavior.trade_interest":{"priority":5,"within_radius":6,"interest_time":45,"remove_item_time":1,"carried_item_switch_time":2,"cooldown":2},"minecraft:economy_trade_table":{"display_name":"entity.villager.mason","table":"trading/economy_trades/stone_mason_trades.json","new_screen":true,"persist_trades":true,"cured_discount":[-100,-100],"max_cured_discount":[-500,-500]},"minecraft:dweller":{"dwelling_type":"village","dweller_role":"inhabitant","preferred_profession":"mason","update_interval_base":60,"update_interval_variant":40,"can_find_poi":true,"can_migrate":true,"first_founding_reward":5}},"nitwit":{"minecraft:type_family":{"family":["villager","peasant","nitwit","mob"]},"minecraft:variant":{"value":14}},"baby":{"minecraft:is_baby":{},"minecraft:scale":{"value":0.5},"minecraft:ageable":{"duration":1200,"grow_up":{"event":"minecraft:ageable_grow_up","target":"self"}},"minecraft:behavior.take_flower":{"priority":9},"minecraft:preferred_path":{"max_fall_blocks":1,"jump_cost":5,"default_block_cost":1.5,"preferred_path_blocks":[{"cost":0,"blocks":["grass_path"]},{"cost":1,"blocks":["cobblestone","stone","stonebrick","sandstone","mossy_cobblestone","stone_slab","stone_slab2","stone_slab3","stone_slab4","double_stone_slab","double_stone_slab2","double_stone_slab3","double_stone_slab4","wooden_slab","double_wooden_slab","planks","brick_block","nether_brick","red_nether_brick","end_bricks","red_sandstone","stained_glass","glass","glowstone","prismarine","emerald_block","diamond_block","lapis_block","gold_block","redstone_block","purple_glazed_terracotta","white_glazed_terracotta","orange_glazed_terracotta","magenta_glazed_terracotta","light_blue_glazed_terracotta","yellow_glazed_terracotta","lime_glazed_terracotta","pink_glazed_terracotta","gray_glazed_terracotta","silver_glazed_terracotta","cyan_glazed_terracotta","blue_glazed_terracotta","brown_glazed_terracotta","green_glazed_terracotta","red_glazed_terracotta","black_glazed_terracotta"]},{"cost":50,"blocks":["bed","lectern","composter","grindstone","blast_furnace","smoker","fletching_table","cartography_table","brewing_stand","smithing_table","cauldron","barrel","loom","stonecutter"]}]}},"make_and_receive_love":{"minecraft:behavior.make_love":{"priority":5},"minecraft:behavior.receive_love":{"priority":6}},"adult":{"minecraft:preferred_path":{"max_fall_blocks":1,"jump_cost":20,"default_block_cost":3,"preferred_path_blocks":[{"cost":0,"blocks":["grass_path"]},{"cost":1,"blocks":["cobblestone","stone","stonebrick","sandstone","mossy_cobblestone","stone_slab","stone_slab2","stone_slab3","stone_slab4","double_stone_slab","double_stone_slab2","double_stone_slab3","double_stone_slab4","wooden_slab","double_wooden_slab","planks","brick_block","nether_brick","red_nether_brick","end_bricks","red_sandstone","stained_glass","glass","glowstone","prismarine","emerald_block","diamond_block","lapis_block","gold_block","redstone_block","purple_glazed_terracotta","white_glazed_terracotta","orange_glazed_terracotta","magenta_glazed_terracotta","light_blue_glazed_terracotta","yellow_glazed_terracotta","lime_glazed_terracotta","pink_glazed_terracotta","gray_glazed_terracotta","silver_glazed_terracotta","cyan_glazed_terracotta","blue_glazed_terracotta","brown_glazed_terracotta","green_glazed_terracotta","red_glazed_terracotta","black_glazed_terracotta"]},{"cost":50,"blocks":["bed","lectern","composter","grindstone","blast_furnace","smoker","fletching_table","cartography_table","brewing_stand","smithing_table","cauldron","barrel","loom","stonecutter"]}]}},"villager_skin_0":{"minecraft:skin_id":{"value":0}},"villager_skin_1":{"minecraft:skin_id":{"value":1}},"villager_skin_2":{"minecraft:skin_id":{"value":2}},"villager_skin_3":{"minecraft:skin_id":{"value":3}},"villager_skin_4":{"minecraft:skin_id":{"value":4}},"villager_skin_5":{"minecraft:skin_id":{"value":5}},"desert_villager":{"minecraft:mark_variant":{"value":1}},"jungle_villager":{"minecraft:mark_variant":{"value":2}},"savanna_villager":{"minecraft:mark_variant":{"value":3}},"snow_villager":{"minecraft:mark_variant":{"value":4}},"swamp_villager":{"minecraft:mark_variant":{"value":5}},"taiga_villager":{"minecraft:mark_variant":{"value":6}}},"components":{"minecraft:is_hidden_when_invisible":{},"minecraft:type_family":{"family":["villager","mob"]},"minecraft:mark_variant":{"value":0},"minecraft:breathable":{"total_supply":15,"suffocate_time":0},"minecraft:health":{"value":20,"max":20},"minecraft:conditional_bandwidth_optimization":{},"minecraft:hurt_on_condition":{"damage_conditions":[{"filters":{"test":"in_lava","subject":"self","operator":"==","value":true},"cause":"lava","damage_per_tick":4}]},"minecraft:hide":{},"minecraft:collision_box":{"width":0.6,"height":1.9},"minecraft:nameable":{},"minecraft:movement":{"value":0.5},"minecraft:navigation.walk":{"can_path_over_water":true,"can_pass_doors":true,"can_open_doors":true,"avoid_water":true},"minecraft:follow_range":{"value":128},"minecraft:annotation.open_door":{},"minecraft:movement.basic":{},"minecraft:jump.static":{},"minecraft:can_climb":{},"minecraft:inventory":{"inventory_size":8,"private":true},"minecraft:dweller":{"dwelling_type":"village","dweller_role":"inhabitant","update_interval_base":60,"update_interval_variant":40,"can_find_poi":true,"can_migrate":true,"first_founding_reward":5},"minecraft:damage_sensor":{"triggers":[{"on_damage":{"filters":[{"test":"is_family","subject":"other","value":"lightning"},{"test":"is_difficulty","operator":"!=","value":"peaceful"}],"event":"become_witch"},"deals_damage":false},{"on_damage":{"filters":{"any_of":[{"test":"is_family","subject":"other","value":"zombie"},{"test":"is_family","subject":"other","value":"husk"}],"all_of":[{"test":"has_damage","value":"fatal"}]},"event":"become_zombie"}}]},"minecraft:persistent":{},"minecraft:behavior.float":{"priority":0},"minecraft:behavior.hide":{"priority":0,"speed_multiplier":0.8,"poi_type":"bed","duration":30},"minecraft:behavior.panic":{"priority":1,"speed_multiplier":0.6},"minecraft:behavior.trade_with_player":{"priority":2},"minecraft:behavior.avoid_mob_type":{"priority":4,"entity_types":[{"filters":{"any_of":[{"test":"is_family","subject":"other","value":"zombie"},{"test":"is_family","subject":"other","value":"zombie_villager"},{"test":"is_family","subject":"other","value":"illager"},{"test":"is_family","subject":"other","value":"vex"},{"test":"is_family","subject":"other","value":"zoglin"}]},"max_dist":8,"walk_speed_multiplier":0.6,"sprint_speed_multiplier":0.6}]},"minecraft:behavior.pickup_items":{"priority":4,"max_dist":3,"goal_radius":2,"speed_multiplier":0.5,"can_pickup_to_hand_or_equipment":false},"minecraft:behavior.move_indoors":{"priority":6,"speed_multiplier":0.8,"timeout_cooldown":8},"minecraft:behavior.look_at_trading_player":{"priority":7},"minecraft:behavior.look_at_player":{"priority":9,"look_distance":8,"probability":0.02},"minecraft:behavior.share_items":{"priority":10,"max_dist":3,"goal_radius":2,"speed_multiplier":0.5,"entity_types":[{"filters":{"test":"is_family","subject":"other","value":"villager"}}]},"minecraft:behavior.move_towards_dwelling_restriction":{"priority":11,"speed_multiplier":0.6},"minecraft:behavior.random_stroll":{"priority":11,"speed_multiplier":0.6},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true}},"events":{"become_witch":{"add":{"component_groups":["become_witch"]}},"become_zombie":{"sequence":[{"filters":{"test":"is_difficulty","value":"normal"},"randomize":[{"weight":50,"add":{"component_groups":["become_zombie"]}},{"weight":50}]},{"filters":{"test":"is_difficulty","value":"hard"},"add":{"component_groups":["become_zombie"]}}]},"minecraft:entity_spawned":{"sequence":[{"filters":{"test":"has_component","operator":"!=","value":"minecraft:skin_id"},"randomize":[{"weight":1,"add":{"component_groups":["villager_skin_0"]}},{"weight":1,"add":{"component_groups":["villager_skin_1"]}},{"weight":1,"add":{"component_groups":["villager_skin_2"]}},{"weight":1,"add":{"component_groups":["villager_skin_3"]}},{"weight":1,"add":{"component_groups":["villager_skin_4"]}},{"weight":1,"add":{"component_groups":["villager_skin_5"]}}]},{"filters":{"test":"has_component","operator":"!=","value":"minecraft:variant"},"randomize":[{"weight":5,"add":{"component_groups":["baby","child_schedule"]}},{"weight":95,"sequence":[{"add":{"component_groups":["adult","make_and_receive_love"]}},{"randomize":[{"weight":1,"add":{"component_groups":["farmer","behavior_peasant","basic_schedule"]}},{"weight":1,"add":{"component_groups":["fisherman","behavior_peasant","basic_schedule"]}},{"weight":1,"add":{"component_groups":["shepherd","behavior_peasant","basic_schedule"]}},{"weight":1,"add":{"component_groups":["fletcher","behavior_peasant","basic_schedule"]}},{"weight":1,"add":{"component_groups":["librarian","behavior_non_peasant","basic_schedule"]}},{"weight":1,"add":{"component_groups":["cartographer","behavior_non_peasant","basic_schedule"]}},{"weight":1,"add":{"component_groups":["cleric","behavior_non_peasant","basic_schedule"]}},{"weight":1,"add":{"component_groups":["armorer","behavior_non_peasant","basic_schedule"]}},{"weight":1,"add":{"component_groups":["weaponsmith","behavior_non_peasant","basic_schedule"]}},{"weight":1,"add":{"component_groups":["toolsmith","behavior_non_peasant","basic_schedule"]}},{"weight":1,"add":{"component_groups":["butcher","behavior_non_peasant","basic_schedule"]}},{"weight":1,"add":{"component_groups":["leatherworker","behavior_non_peasant","basic_schedule"]}},{"weight":1,"add":{"component_groups":["mason","behavior_non_peasant","basic_schedule"]}},{"weight":1,"add":{"component_groups":["nitwit","behavior_peasant","jobless_schedule"]}}]}]}]},{"filters":{"any_of":[{"test":"has_biome_tag","value":"desert"},{"test":"has_biome_tag","value":"mesa"}]},"add":{"component_groups":["desert_villager"]}},{"filters":{"test":"has_biome_tag","value":"jungle"},"add":{"component_groups":["jungle_villager"]}},{"filters":{"test":"has_biome_tag","value":"savanna"},"add":{"component_groups":["savanna_villager"]}},{"filters":{"any_of":[{"all_of":[{"test":"has_biome_tag","value":"cold"},{"test":"has_biome_tag","operator":"!=","value":"ocean"}]},{"test":"has_biome_tag","value":"frozen"}]},"add":{"component_groups":["snow_villager"]}},{"filters":{"any_of":[{"test":"has_biome_tag","value":"swamp"},{"test":"has_biome_tag","value":"mangrove_swamp"}]},"add":{"component_groups":["swamp_villager"]}},{"filters":{"all_of":[{"any_of":[{"test":"has_biome_tag","value":"taiga"},{"test":"has_biome_tag","value":"extreme_hills"}]},{"test":"has_biome_tag","operator":"!=","value":"cold"}]},"add":{"component_groups":["taiga_villager"]}}]},"minecraft:spawn_from_village":{"sequence":[{"filters":{"test":"has_component","operator":"!=","value":"minecraft:variant"},"randomize":[{"weight":5,"add":{"component_groups":["baby","child_schedule"]}},{"weight":95,"add":{"component_groups":["adult","make_and_receive_love"]},"sequence":[{"randomize":[{"weight":90,"add":{"component_groups":["unskilled","behavior_peasant","basic_schedule"]}},{"weight":10,"add":{"component_groups":["nitwit","behavior_peasant","jobless_schedule"]}}]}]}]},{"filters":{"test":"has_component","operator":"!=","value":"minecraft:skin_id"},"randomize":[{"weight":1,"add":{"component_groups":["villager_skin_0"]}},{"weight":1,"add":{"component_groups":["villager_skin_1"]}},{"weight":1,"add":{"component_groups":["villager_skin_2"]}},{"weight":1,"add":{"component_groups":["villager_skin_3"]}},{"weight":1,"add":{"component_groups":["villager_skin_4"]}},{"weight":1,"add":{"component_groups":["villager_skin_5"]}}]},{"filters":{"any_of":[{"test":"has_biome_tag","value":"desert"},{"test":"has_biome_tag","value":"mesa"}]},"add":{"component_groups":["desert_villager"]}},{"filters":{"test":"has_biome_tag","value":"jungle"},"add":{"component_groups":["jungle_villager"]}},{"filters":{"test":"has_biome_tag","value":"savanna"},"add":{"component_groups":["savanna_villager"]}},{"filters":{"any_of":[{"all_of":[{"test":"has_biome_tag","value":"cold"},{"test":"has_biome_tag","operator":"!=","value":"ocean"}]},{"test":"has_biome_tag","value":"frozen"}]},"add":{"component_groups":["snow_villager"]}},{"filters":{"any_of":[{"test":"has_biome_tag","value":"swamp"},{"test":"has_biome_tag","value":"mangrove_swamp"}]},"add":{"component_groups":["swamp_villager"]}},{"filters":{"all_of":[{"any_of":[{"test":"has_biome_tag","value":"taiga"},{"test":"has_biome_tag","value":"extreme_hills"}]},{"test":"has_biome_tag","operator":"!=","value":"cold"}]},"add":{"component_groups":["taiga_villager"]}}]},"minecraft:entity_transformed":{"sequence":[{"filters":{"test":"has_component","subject":"other","operator":"==","value":"minecraft:is_baby"},"add":{"component_groups":["baby","child_schedule"]}},{"filters":{"test":"has_component","subject":"other","operator":"!=","value":"minecraft:is_baby"},"sequence":[{"add":{"component_groups":["adult","make_and_receive_love"]}},{"filters":{"test":"is_family","subject":"other","value":"farmer"},"add":{"component_groups":["farmer","behavior_peasant","farmer_schedule"]}},{"filters":{"test":"is_family","subject":"other","value":"fisherman"},"add":{"component_groups":["fisherman","behavior_peasant","fisher_schedule"]}},{"filters":{"test":"is_family","subject":"other","value":"shepherd"},"add":{"component_groups":["shepherd","behavior_peasant","work_schedule"]}},{"filters":{"test":"is_family","subject":"other","value":"fletcher"},"add":{"component_groups":["fletcher","behavior_peasant","work_schedule"]}},{"filters":{"test":"is_family","subject":"other","value":"librarian"},"add":{"component_groups":["librarian","behavior_non_peasant","librarian_schedule"]}},{"filters":{"test":"is_family","subject":"other","value":"cartographer"},"add":{"component_groups":["cartographer","behavior_non_peasant","work_schedule"]}},{"filters":{"test":"is_family","subject":"other","value":"cleric"},"add":{"component_groups":["cleric","behavior_non_peasant","work_schedule"]}},{"filters":{"test":"is_family","subject":"other","value":"armorer"},"add":{"component_groups":["armorer","behavior_non_peasant","work_schedule"]}},{"filters":{"test":"is_family","subject":"other","value":"weaponsmith"},"add":{"component_groups":["weaponsmith","behavior_non_peasant","work_schedule"]}},{"filters":{"test":"is_family","subject":"other","value":"toolsmith"},"add":{"component_groups":["toolsmith","behavior_non_peasant","work_schedule"]}},{"filters":{"test":"is_family","subject":"other","value":"butcher"},"add":{"component_groups":["butcher","behavior_non_peasant","work_schedule"]}},{"filters":{"test":"is_family","subject":"other","value":"leatherworker"},"add":{"component_groups":["leatherworker","behavior_non_peasant","work_schedule"]}},{"filters":{"test":"is_family","subject":"other","value":"stone_mason"},"add":{"component_groups":["mason","behavior_non_peasant","work_schedule"]}}]},{"filters":{"test":"is_family","subject":"other","operator":"==","value":"zombie_villager"},"sequence":[{"filters":{"test":"is_skin_id","subject":"other","value":0},"add":{"component_groups":["villager_skin_0"]}},{"filters":{"test":"is_skin_id","subject":"other","value":1},"add":{"component_groups":["villager_skin_1"]}},{"filters":{"test":"is_skin_id","subject":"other","value":2},"add":{"component_groups":["villager_skin_2"]}},{"filters":{"test":"is_skin_id","subject":"other","value":3},"add":{"component_groups":["villager_skin_3"]}},{"filters":{"test":"is_skin_id","subject":"other","value":4},"add":{"component_groups":["villager_skin_4"]}},{"filters":{"test":"is_skin_id","subject":"other","value":5},"add":{"component_groups":["villager_skin_5"]}},{"filters":{"test":"is_mark_variant","subject":"other","value":1},"add":{"component_groups":["desert_villager"]}},{"filters":{"test":"is_mark_variant","subject":"other","value":2},"add":{"component_groups":["jungle_villager"]}},{"filters":{"test":"is_mark_variant","subject":"other","value":3},"add":{"component_groups":["savanna_villager"]}},{"filters":{"test":"is_mark_variant","subject":"other","value":4},"add":{"component_groups":["snow_villager"]}},{"filters":{"test":"is_mark_variant","subject":"other","value":5},"add":{"component_groups":["swamp_villager"]}},{"filters":{"test":"is_mark_variant","subject":"other","value":6},"add":{"component_groups":["taiga_villager"]}}]},{"filters":{"test":"is_family","subject":"other","operator":"==","value":"villager"},"sequence":[{"randomize":[{"weight":1,"add":{"component_groups":["villager_skin_0"]}},{"weight":1,"add":{"component_groups":["villager_skin_1"]}},{"weight":1,"add":{"component_groups":["villager_skin_2"]}},{"weight":1,"add":{"component_groups":["villager_skin_3"]}},{"weight":1,"add":{"component_groups":["villager_skin_4"]}},{"weight":1,"add":{"component_groups":["villager_skin_5"]}}]},{"filters":{"any_of":[{"test":"has_biome_tag","value":"desert"},{"test":"has_biome_tag","value":"mesa"}]},"add":{"component_groups":["desert_villager"]}},{"filters":{"test":"has_biome_tag","value":"jungle"},"add":{"component_groups":["jungle_villager"]}},{"filters":{"test":"has_biome_tag","value":"savanna"},"add":{"component_groups":["savanna_villager"]}},{"filters":{"any_of":[{"all_of":[{"test":"has_biome_tag","value":"cold"},{"test":"has_biome_tag","operator":"!=","value":"ocean"}]},{"test":"has_biome_tag","value":"frozen"}]},"add":{"component_groups":["snow_villager"]}},{"filters":{"any_of":[{"test":"has_biome_tag","value":"swamp"},{"test":"has_biome_tag","value":"mangrove_swamp"}]},"add":{"component_groups":["swamp_villager"]}},{"filters":{"all_of":[{"any_of":[{"test":"has_biome_tag","value":"taiga"},{"test":"has_biome_tag","value":"extreme_hills"}]},{"test":"has_biome_tag","operator":"!=","value":"cold"}]},"add":{"component_groups":["taiga_villager"]}}]}]},"minecraft:entity_born":{"sequence":[{"filters":{"test":"has_component","operator":"!=","value":"minecraft:skin_id"},"randomize":[{"weight":1,"add":{"component_groups":["villager_skin_0"]}},{"weight":1,"add":{"component_groups":["villager_skin_1"]}},{"weight":1,"add":{"component_groups":["villager_skin_2"]}},{"weight":1,"add":{"component_groups":["villager_skin_3"]}},{"weight":1,"add":{"component_groups":["villager_skin_4"]}},{"weight":1,"add":{"component_groups":["villager_skin_5"]}}]},{"add":{"component_groups":["baby","unskilled","child_schedule"]}},{"filters":{"test":"has_biome_tag","value":"desert"},"add":{"component_groups":["desert_villager"]}},{"filters":{"test":"has_biome_tag","value":"jungle"},"add":{"component_groups":["jungle_villager"]}},{"filters":{"test":"has_biome_tag","value":"savanna"},"add":{"component_groups":["savanna_villager"]}},{"filters":{"any_of":[{"test":"has_biome_tag","value":"cold"},{"test":"has_biome_tag","value":"frozen"}]},"add":{"component_groups":["snow_villager"]}},{"filters":{"any_of":[{"test":"has_biome_tag","value":"swamp"},{"test":"has_biome_tag","value":"mangrove_swamp"}]},"add":{"component_groups":["swamp_villager"]}},{"filters":{"test":"has_biome_tag","value":"taiga"},"add":{"component_groups":["taiga_villager"]}}]},"minecraft:spawn_farmer":{"randomize":[{"weight":5,"add":{"component_groups":["farmer","adult","make_and_receive_love","behavior_peasant","basic_schedule"]},"remove":{"component_groups":["baby","child_schedule"]}},{"weight":5,"add":{"component_groups":["fisherman","adult","make_and_receive_love","behavior_peasant","basic_schedule"]},"remove":{"component_groups":["baby","child_schedule"]}},{"weight":5,"add":{"component_groups":["shepherd","adult","make_and_receive_love","behavior_peasant","basic_schedule"]},"remove":{"component_groups":["baby","child_schedule"]}},{"weight":5,"add":{"component_groups":["fletcher","adult","make_and_receive_love","behavior_peasant","basic_schedule"]},"remove":{"component_groups":["baby","child_schedule"]}},{"weight":5,"add":{"component_groups":["mason","adult","make_and_receive_love","behavior_non_peasant","work_schedule"]},"remove":{"component_groups":["baby","child_schedule"]}}]},"minecraft:spawn_librarian":{"randomize":[{"weight":20,"add":{"component_groups":["librarian","adult","make_and_receive_love","behavior_non_peasant","basic_schedule"]},"remove":{"component_groups":["baby","child_schedule"]}},{"weight":20,"add":{"component_groups":["cartographer","behavior_non_peasant","basic_schedule"]},"remove":{"component_groups":["baby","child_schedule"]}}]},"minecraft:spawn_cleric":{"add":{"component_groups":["cleric","adult","make_and_receive_love","behavior_non_peasant","basic_schedule"]},"remove":{"component_groups":["baby","child_schedule"]}},"minecraft:spawn_armorer":{"randomize":[{"weight":6,"add":{"component_groups":["armorer","adult","make_and_receive_love","behavior_non_peasant","basic_schedule"]},"remove":{"component_groups":["baby","child_schedule"]}},{"weight":6,"add":{"component_groups":["weaponsmith","adult","make_and_receive_love","behavior_non_peasant","basic_schedule"]},"remove":{"component_groups":["baby","child_schedule"]}},{"weight":6,"add":{"component_groups":["toolsmith","adult","make_and_receive_love","behavior_non_peasant","basic_schedule"]},"remove":{"component_groups":["baby","child_schedule"]}}]},"minecraft:spawn_butcher":{"randomize":[{"weight":10,"add":{"component_groups":["butcher","adult","make_and_receive_love","behavior_non_peasant","basic_schedule"]},"remove":{"component_groups":["baby","child_schedule"]}},{"weight":10,"add":{"component_groups":["leatherworker","adult","make_and_receive_love","behavior_non_peasant","basic_schedule"]},"remove":{"component_groups":["baby","child_schedule"]}}]},"minecraft:ageable_grow_up":{"randomize":[{"weight":10,"remove":{"component_groups":["baby","child_schedule"]},"add":{"component_groups":["adult","make_and_receive_love","nitwit","behavior_peasant","jobless_schedule"]}},{"weight":90,"remove":{"component_groups":["baby","child_schedule"]},"add":{"component_groups":["adult","make_and_receive_love","unskilled","behavior_peasant","basic_schedule"]}}]},"minecraft:become_unskilled":{"remove":{"component_groups":["baby","child_schedule","job_specific_goals","trade_components"]},"add":{"component_groups":["adult","make_and_receive_love","unskilled","behavior_peasant","basic_schedule"]}},"minecraft:become_cleric":{"remove":{"component_groups":["baby","child_schedule","job_specific_goals","trade_components"]},"add":{"component_groups":["cleric","adult","make_and_receive_love","behavior_non_peasant","work_schedule"]}},"minecraft:become_farmer":{"remove":{"component_groups":["baby","child_schedule","job_specific_goals","trade_components"]},"add":{"component_groups":["farmer","adult","make_and_receive_love","behavior_peasant","farmer_schedule"]}},"minecraft:become_fisherman":{"remove":{"component_groups":["baby","child_schedule","job_specific_goals","trade_components"]},"add":{"component_groups":["fisherman","adult","make_and_receive_love","behavior_non_peasant","fisher_schedule"]}},"minecraft:become_fletcher":{"remove":{"component_groups":["baby","child_schedule","job_specific_goals","trade_components"]},"add":{"component_groups":["fletcher","adult","make_and_receive_love","behavior_non_peasant","work_schedule"]}},"minecraft:become_librarian":{"remove":{"component_groups":["baby","child_schedule","job_specific_goals","trade_components"]},"add":{"component_groups":["librarian","adult","make_and_receive_love","behavior_non_peasant","librarian_schedule"]}},"minecraft:become_cartographer":{"remove":{"component_groups":["baby","child_schedule","job_specific_goals","trade_components"]},"add":{"component_groups":["cartographer","adult","make_and_receive_love","behavior_non_peasant","work_schedule"]}},"minecraft:become_armorer":{"remove":{"component_groups":["baby","child_schedule","job_specific_goals","trade_components"]},"add":{"component_groups":["armorer","adult","make_and_receive_love","behavior_non_peasant","work_schedule"]}},"minecraft:become_weaponsmith":{"remove":{"component_groups":["baby","child_schedule","job_specific_goals","trade_components"]},"add":{"component_groups":["weaponsmith","adult","make_and_receive_love","behavior_non_peasant","work_schedule"]}},"minecraft:become_toolsmith":{"remove":{"component_groups":["baby","child_schedule","job_specific_goals","trade_components"]},"add":{"component_groups":["toolsmith","adult","make_and_receive_love","behavior_non_peasant","work_schedule"]}},"minecraft:become_butcher":{"remove":{"component_groups":["baby","child_schedule","job_specific_goals","trade_components"]},"add":{"component_groups":["butcher","adult","make_and_receive_love","behavior_non_peasant","work_schedule"]}},"minecraft:become_leatherworker":{"remove":{"component_groups":["baby","child_schedule","job_specific_goals","trade_components"]},"add":{"component_groups":["leatherworker","adult","make_and_receive_love","behavior_non_peasant","work_schedule"]}},"minecraft:become_sheperd":{"remove":{"component_groups":["baby","child_schedule","job_specific_goals","trade_components"]},"add":{"component_groups":["shepherd","adult","make_and_receive_love","behavior_non_peasant","work_schedule"]}},"minecraft:become_mason":{"remove":{"component_groups":["baby","child_schedule","job_specific_goals","trade_components"]},"add":{"component_groups":["mason","adult","make_and_receive_love","behavior_non_peasant","work_schedule"]}},"minecraft:schedule_wander_villager":{"remove":{"component_groups":["home_schedule_villager","bed_schedule_villager","wander_schedule_villager","job_specific_goals","play_schedule_villager","trade_resupply_component_group"]},"add":{"component_groups":["make_and_receive_love","wander_schedule_villager"]}},"minecraft:schedule_gather_villager":{"remove":{"component_groups":["bed_schedule_villager","wander_schedule_villager","home_schedule_villager","job_specific_goals","play_schedule_villager","trade_resupply_component_group"]},"add":{"component_groups":["make_and_receive_love","gather_schedule_villager"]}},"minecraft:schedule_home_villager":{"remove":{"component_groups":["bed_schedule_villager","wander_schedule_villager","gather_schedule_villager","job_specific_goals","play_schedule_villager","trade_resupply_component_group"]},"add":{"component_groups":["make_and_receive_love","home_schedule_villager"]}},"minecraft:schedule_bed_villager":{"remove":{"component_groups":["make_and_receive_love","home_schedule_villager","gather_schedule_villager","wander_schedule_villager","job_specific_goals","play_schedule_villager","trade_resupply_component_group"]},"add":{"component_groups":["bed_schedule_villager"]}},"minecraft:schedule_play_villager":{"remove":{"component_groups":["home_schedule_villager","gather_schedule_villager","wander_schedule_villager","bed_schedule_villager","job_specific_goals","trade_resupply_component_group"]},"add":{"component_groups":["play_schedule_villager"]}},"minecraft:schedule_work_pro_villager":{"remove":{"component_groups":["home_schedule_villager","gather_schedule_villager","wander_schedule_villager","bed_schedule_villager","play_schedule_villager"]},"add":{"component_groups":["make_and_receive_love","work_schedule_villager"]}},"minecraft:schedule_work_farmer":{"remove":{"component_groups":["home_schedule_villager","gather_schedule_villager","wander_schedule_villager","bed_schedule_villager","job_specific_goals","play_schedule_villager"]},"add":{"component_groups":["make_and_receive_love","work_schedule_farmer"]}},"minecraft:schedule_work_fisher":{"remove":{"component_groups":["home_schedule_villager","gather_schedule_villager","wander_schedule_villager","bed_schedule_villager","job_specific_goals","play_schedule_villager"]},"add":{"component_groups":["make_and_receive_love","work_schedule_fisher"]}},"minecraft:schedule_work_librarian":{"remove":{"component_groups":["home_schedule_villager","gather_schedule_villager","wander_schedule_villager","bed_schedule_villager","job_specific_goals","play_schedule_villager"]},"add":{"component_groups":["make_and_receive_love","work_schedule_librarian"]}},"minecraft:resupply_trades":{"add":{"component_groups":["trade_resupply_component_group"]}},"minecraft:start_celebrating":{"add":{"component_groups":["minecraft:celebrate"]}},"minecraft:stop_celebrating":{"remove":{"component_groups":["minecraft:celebrate"]}}}}},"minecraft:vindicator":{"format_version":"1.16.0","minecraft:entity":{"description":{"identifier":"minecraft:vindicator","is_spawnable":true,"is_summonable":true,"is_experimental":false},"component_groups":{"minecraft:celebrate":{"minecraft:behavior.celebrate":{"priority":5,"celebration_sound":"celebrate","sound_interval":{"range_min":2,"range_max":7},"jump_interval":{"range_min":1,"range_max":3.5},"duration":30,"on_celebration_end_event":{"event":"minecraft:stop_celebrating","target":"self"}}},"minecraft:vindicator_aggro":{"minecraft:angry":{"duration":-1,"broadcast_anger":false,"calm_event":{"event":"minecraft:stop_aggro","target":"self"}}},"minecraft:vindicator_johnny":{"minecraft:behavior.nearest_attackable_target":{"priority":2,"must_see":true,"within_radius":12,"must_see_forget_duration":40,"entity_types":[{"filters":{"all_of":[{"test":"is_family","subject":"other","operator":"!=","value":"illager"}]},"max_dist":12}]}},"minecraft:default_targeting":{"minecraft:behavior.nearest_attackable_target":{"priority":2,"must_see":true,"within_radius":12,"must_see_forget_duration":40,"entity_types":[{"filters":{"any_of":[{"test":"is_family","subject":"other","value":"player"},{"test":"is_family","subject":"other","value":"snowgolem"},{"test":"is_family","subject":"other","value":"irongolem"},{"test":"is_family","subject":"other","value":"wandering_trader"}]},"max_dist":12},{"filters":{"all_of":[{"test":"is_family","subject":"other","value":"villager"},{"test":"has_component","subject":"other","operator":"!=","value":"minecraft:is_baby"}]},"max_dist":12}]}},"minecraft:raid_configuration":{"minecraft:dweller":{"dwelling_type":"village","dweller_role":"hostile","update_interval_base":60,"update_interval_variant":40,"can_find_poi":false,"can_migrate":true,"first_founding_reward":0},"minecraft:behavior.move_to_village":{"priority":4,"speed_multiplier":1,"goal_radius":2},"minecraft:loot":{"table":"loot_tables/entities/vindicator_raid.json"},"minecraft:navigation.walk":{"can_path_over_water":true,"can_pass_doors":true,"can_break_doors":true},"minecraft:annotation.break_door":{"break_time":30,"min_difficulty":"normal"},"minecraft:ambient_sound_interval":{"value":2,"range":4,"event_name":"ambient.in.raid"}},"minecraft:raid_persistence":{"minecraft:persistent":{}},"minecraft:raid_despawn":{"minecraft:despawn":{"despawn_from_distance":{}}},"minecraft:illager_squad_captain":{"minecraft:is_illager_captain":{},"minecraft:variant":{"value":1},"minecraft:equipment":{"table":"loot_tables/entities/vindicator_captain_equipment.json","slot_drop_chance":[{"slot":"slot.armor.chest","drop_chance":1}]},"minecraft:damage_sensor":{"triggers":{"on_damage":{"filters":{"all_of":[{"test":"has_damage","value":"fatal"},{"test":"is_family","subject":"other","value":"player"}]},"event":"minecraft:gain_bad_omen","target":"other"}}}},"minecraft:patrol_captain":{"minecraft:is_illager_captain":{},"minecraft:variant":{"value":1},"minecraft:equipment":{"table":"loot_tables/entities/vindicator_captain_equipment.json","slot_drop_chance":[{"slot":"slot.armor.chest","drop_chance":1}]},"minecraft:damage_sensor":{"triggers":{"on_damage":{"filters":{"all_of":[{"test":"has_damage","value":"fatal"},{"test":"is_family","subject":"other","value":"player"}]},"event":"minecraft:gain_bad_omen","target":"other"}}},"minecraft:behavior.move_to_random_block":{"priority":5,"speed_multiplier":0.55,"within_radius":8,"block_distance":512}},"minecraft:patrol_follower":{"minecraft:behavior.follow_target_captain":{"priority":5,"speed_multiplier":0.8,"within_radius":64,"follow_distance":5}}},"components":{"minecraft:is_hidden_when_invisible":{},"minecraft:experience_reward":{"on_death":"query.last_hit_by_player ? (query.is_baby ? 12 : 5) + (Math.die_roll(query.equipment_count,1,3)) : 0"},"minecraft:conditional_bandwidth_optimization":{},"minecraft:nameable":{"default_trigger":{"event":"minecraft:stop_johnny","target":"self"},"name_actions":[{"name_filter":"Johnny","on_named":{"event":"minecraft:start_johnny","target":"self"}}]},"minecraft:type_family":{"family":["vindicator","monster","illager","mob"]},"minecraft:variant":{"value":0},"minecraft:breathable":{"total_supply":15,"suffocate_time":0},"minecraft:collision_box":{"width":0.6,"height":1.9},"minecraft:health":{"value":24,"max":24},"minecraft:hurt_on_condition":{"damage_conditions":[{"filters":{"test":"in_lava","subject":"self","operator":"==","value":true},"cause":"lava","damage_per_tick":4}]},"minecraft:attack":{"damage":8},"minecraft:movement":{"value":0.35},"minecraft:navigation.walk":{"can_path_over_water":true},"minecraft:movement.basic":{},"minecraft:jump.static":{},"minecraft:follow_range":{"value":64},"minecraft:loot":{"table":"loot_tables/entities/vindication_illager.json"},"minecraft:equipment":{"table":"loot_tables/entities/vindicator_gear.json"},"minecraft:behavior.float":{"priority":0},"minecraft:behavior.melee_attack":{"priority":3},"minecraft:behavior.random_stroll":{"priority":9,"speed_multiplier":1},"minecraft:behavior.look_at_player":{"priority":10,"look_distance":8,"probability":0.02},"minecraft:behavior.hurt_by_target":{"priority":1},"minecraft:on_target_acquired":{"event":"minecraft:become_aggro","target":"self"},"minecraft:on_target_escape":{"event":"minecraft:stop_aggro","target":"self"},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true}},"events":{"minecraft:entity_spawned":{"add":{"component_groups":["minecraft:default_targeting"]}},"minecraft:spawn_as_patrol_follower":{"add":{"component_groups":["minecraft:default_targeting","minecraft:patrol_follower"]}},"minecraft:become_aggro":{"add":{"component_groups":["minecraft:vindicator_aggro"]}},"minecraft:stop_aggro":{"remove":{"component_groups":["minecraft:vindicator_aggro"]}},"minecraft:start_johnny":{"add":{"component_groups":["minecraft:vindicator_johnny"]}},"minecraft:stop_johnny":{"remove":{"component_groups":["minecraft:vindicator_johnny"]},"add":{"component_groups":["minecraft:default_targeting"]}},"minecraft:spawn_for_raid":{"add":{"component_groups":["minecraft:default_targeting","minecraft:raid_configuration","minecraft:raid_persistence","minecraft:raid_despawn"]}},"minecraft:spawn_as_illager_captain":{"add":{"component_groups":["minecraft:default_targeting","minecraft:illager_squad_captain"]}},"minecraft:promote_to_illager_captain":{"add":{"component_groups":["minecraft:default_targeting","minecraft:illager_squad_captain"]},"remove":{"component_groups":["minecraft:patrol_follower"]}},"minecraft:promote_to_patrol_captain":{"add":{"component_groups":["minecraft:default_targeting","minecraft:patrol_captain"]},"remove":{"component_groups":["minecraft:patrol_follower"]}},"minecraft:start_celebrating":{"sequence":[{"add":{"component_groups":["minecraft:celebrate"]}},{"filters":{"test":"has_nametag","value":false},"remove":{"component_groups":["minecraft:raid_persistence"]}}]},"minecraft:stop_celebrating":{"remove":{"component_groups":["minecraft:celebrate"]}},"minecraft:raid_expired":{"sequence":[{"filters":{"test":"has_nametag","value":false},"remove":{"component_groups":["minecraft:raid_persistence"]}}]}}}},"minecraft:wandering_trader":{"format_version":"1.16.0","minecraft:entity":{"description":{"identifier":"minecraft:wandering_trader","is_spawnable":true,"is_summonable":true,"is_experimental":false},"component_groups":{"managed":{"minecraft:managed_wandering_trader":{}},"despawning":{"minecraft:type_family":{"family":["wandering_trader","wandering_trader_despawning","mob"]}},"minecraft:scared":{"minecraft:angry":{"duration":5,"broadcastAnger":true,"broadcastRange":10,"broadcast_targets":["llama","trader_llama"],"broadcast_filters":{"test":"is_leashed_to","subject":"other","value":true},"calm_event":{"event":"minecraft:become_calm","target":"self"}}}},"components":{"minecraft:type_family":{"family":["wandering_trader","mob"]},"minecraft:is_hidden_when_invisible":{},"minecraft:timer":{"looping":false,"random_time_choices":[{"weight":50,"value":2400},{"weight":50,"value":3600}],"time_down_event":{"event":"minecraft:start_despawn","target":"self"}},"minecraft:spawn_entity":{"entities":[{"min_wait_time":0,"max_wait_time":0,"spawn_entity":"trader_llama","spawn_event":"minecraft:from_wandering_trader","single_use":true,"num_to_spawn":2,"should_leash":true}]},"minecraft:economy_trade_table":{"display_name":"entity.wandering_trader.name","table":"trading/economy_trades/wandering_trader_trades.json","new_screen":true},"minecraft:breathable":{"total_supply":15,"suffocate_time":0},"minecraft:health":{"value":20,"max":20},"minecraft:hurt_on_condition":{"damage_conditions":[{"filters":{"test":"in_lava","subject":"self","operator":"==","value":true},"cause":"lava","damage_per_tick":4}]},"minecraft:collision_box":{"width":0.6,"height":1.9},"minecraft:movement":{"value":0.5},"minecraft:navigation.walk":{"can_path_over_water":true,"can_pass_doors":true,"can_open_doors":false,"avoid_water":true},"minecraft:movement.basic":{},"minecraft:jump.static":{},"minecraft:can_climb":{},"minecraft:home":{"restriction_radius":16},"minecraft:behavior.float":{"priority":0},"minecraft:conditional_bandwidth_optimization":{},"minecraft:despawn":{"remove_child_entities":true,"filters":{"all_of":[{"any_of":[{"test":"is_family","subject":"self","value":"wandering_trader_despawning"},{"test":"has_trade_supply","subject":"self","value":false}]},{"test":"distance_to_nearest_player","operator":">","value":24}]}},"minecraft:damage_sensor":{"triggers":[{"cause":"entity_attack","deals_damage":true,"on_damage":{"event":"minecraft:become_scared"}},{"cause":"projectile","deals_damage":true,"on_damage":{"event":"minecraft:become_scared"}},{"cause":"magic","deals_damage":true,"on_damage":{"event":"minecraft:become_scared"}}]},"minecraft:behavior.trade_with_player":{"priority":1},"minecraft:behavior.trade_interest":{"priority":3,"within_radius":6,"interest_time":45,"remove_item_time":1,"carried_item_switch_time":2,"cooldown":2},"minecraft:behavior.look_at_trading_player":{"priority":4},"minecraft:behavior.panic":{"priority":1,"speed_multiplier":0.6},"minecraft:behavior.drink_potion":{"priority":1,"speed_modifier":-0.2,"potions":[{"id":7,"chance":1,"filters":{"all_of":[{"any_of":[{"test":"hourly_clock_time","operator":">=","value":18000},{"test":"hourly_clock_time","operator":"<","value":12000}]},{"test":"is_visible","subject":"self","value":true},{"any_of":[{"test":"is_avoiding_mobs","subject":"self","value":true},{"all_of":[{"test":"has_component","subject":"self","value":"minecraft:angry"},{"test":"is_family","subject":"target","operator":"!=","value":"player"}]}]}]}},{"id":8,"chance":1,"filters":{"all_of":[{"test":"hourly_clock_time","operator":">=","value":12000},{"test":"hourly_clock_time","operator":"<","value":18000},{"test":"is_visible","subject":"self","value":true},{"any_of":[{"test":"is_avoiding_mobs","subject":"self","value":true},{"test":"has_component","subject":"self","value":"minecraft:angry"}]}]}}]},"minecraft:behavior.avoid_mob_type":{"priority":2,"entity_types":[{"filters":{"any_of":[{"test":"is_family","subject":"other","value":"zombie"},{"test":"is_family","subject":"other","value":"zombie_villager"},{"test":"is_family","subject":"other","value":"zombie_pigman"},{"test":"is_family","subject":"other","value":"illager"},{"test":"is_family","subject":"other","value":"vex"},{"test":"is_family","subject":"other","value":"zoglin"}]},"walk_speed_multiplier":0.6,"sprint_speed_multiplier":0.6}],"max_dist":6},"minecraft:behavior.drink_milk":{"priority":5,"filters":{"all_of":[{"test":"is_daytime","value":true},{"test":"is_visible","subject":"self","value":false},{"test":"is_avoiding_mobs","subject":"self","value":false}]}},"minecraft:behavior.move_towards_home_restriction":{"priority":6,"speed_multiplier":0.6},"minecraft:behavior.random_stroll":{"priority":7,"speed_multiplier":0.6},"minecraft:behavior.look_at_player":{"priority":8,"look_distance":8,"probability":0.02},"minecraft:behavior.random_look_around":{"priority":9},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:nameable":{}},"events":{"minecraft:scheduled":{"add":{"component_groups":["managed"]}},"minecraft:start_despawn":{"add":{"component_groups":["despawning"]}},"minecraft:become_scared":{"add":{"component_groups":["minecraft:scared"]}},"minecraft:become_calm":{"remove":{"component_groups":["minecraft:scared"]}}}}},"minecraft:warden":{"format_version":"1.16.0","minecraft:entity":{"description":{"identifier":"minecraft:warden","is_spawnable":true,"is_summonable":true,"is_experimental":false},"component_groups":{"emerging":{"minecraft:behavior.emerge":{"duration":7,"on_done":{"event":"minecraft:emerged","target":"self"}}},"pushable":{"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true}}},"components":{"minecraft:movement_sound_distance_offset":{"value":0.55},"minecraft:experience_reward":{"on_bred":"Math.Random(1,7)","on_death":"query.last_hit_by_player ? 5 : 0"},"minecraft:attack":{"damage":30},"minecraft:vibration_listener":{},"minecraft:vibration_damper":{},"minecraft:suspect_tracking":{},"minecraft:anger_level":{"max_anger":150,"angry_threshold":80,"remove_targets_below_angry_threshold":true,"angry_boost":20,"anger_decrement_interval":1,"default_annoyingness":35,"default_projectile_annoyingness":10,"on_increase_sounds":[{"sound":"listening_angry","condition":"query.anger_level(this) >= 40"},{"sound":"listening","condition":"query.anger_level(this) >= 0"}],"nuisance_filter":{"all_of":[{"test":"is_family","subject":"other","operator":"not","value":"warden"},{"test":"is_family","subject":"other","operator":"not","value":"inanimate"}]}},"minecraft:is_hidden_when_invisible":{},"minecraft:type_family":{"family":["warden","monster","mob"]},"minecraft:breathable":{"total_supply":15,"suffocate_time":0},"minecraft:navigation.walk":{"can_path_over_water":true,"can_path_over_lava":true,"avoid_damage_blocks":true},"minecraft:preferred_path":{"max_fall_blocks":20},"minecraft:ambient_sound_interval":{"value":2,"range":4,"event_name":"ambient","event_names":[{"event_name":"angry","condition":"query.anger_level(this) >= 80"},{"event_name":"agitated","condition":"query.anger_level(this) >= 40"}]},"minecraft:heartbeat":{"interval":"2.0 - math.clamp(query.anger_level / 80 * 1.5, 0, 1.5)"},"minecraft:movement.basic":{},"minecraft:jump.static":{},"minecraft:can_climb":{},"minecraft:collision_box":{"width":0.9,"height":2.9},"minecraft:health":{"value":500,"max":500},"minecraft:movement":{"value":0.3},"minecraft:knockback_resistance":{"value":1},"minecraft:behavior.float":{"priority":0},"minecraft:behavior.dig":{"priority":1,"duration":5.5,"idle_time":60,"vibration_is_disturbance":true,"suspicion_is_disturbance":true,"digs_in_daylight":false,"on_start":{"event":"on_digging_event","target":"self"}},"minecraft:behavior.roar":{"priority":2,"duration":4.2},"minecraft:behavior.sonic_boom":{"priority":3,"duration":3,"speed_multiplier":1.2,"attack_damage":10,"attack_range_horizontal":15,"attack_range_vertical":20,"attack_cooldown":2,"knockback_vertical_strength":0.5,"knockback_horizontal_strength":2.5,"knockback_height_cap":0.5,"duration_until_attack_sound":1.7,"charge_sound":"sonic_charge","attack_sound":"sonic_boom"},"minecraft:behavior.melee_attack":{"priority":4,"speed_multiplier":1.2,"melee_fov":360},"minecraft:behavior.investigate_suspicious_location":{"priority":5,"speed_multiplier":0.7},"minecraft:behavior.sniff":{"priority":6,"duration":4.16,"sniffing_radius":24,"suspicion_radius_horizontal":6,"suspicion_radius_vertical":20,"cooldown_range":[5,10]},"minecraft:behavior.random_stroll":{"priority":9,"speed_multiplier":0.5},"minecraft:behavior.random_look_around":{"priority":11},"minecraft:physics":{},"minecraft:mob_effect":{"effect_range":20,"effect_time":13,"mob_effect":"darkness","cooldown_time":6,"entity_filter":{"all_of":[{"test":"is_family","subject":"other","value":"player"},{"operator":"not","test":"has_ability","subject":"other","value":"invulnerable"}]}},"minecraft:follow_range":30,"minecraft:fire_immune":{},"minecraft:nameable":{},"minecraft:loot":{"table":"loot_tables/entities/warden.json"}},"events":{"minecraft:spawn_emerging":{"add":{"component_groups":["emerging"]}},"minecraft:emerged":{"add":{"component_groups":["pushable"]},"remove":{"component_groups":["emerging"]}},"minecraft:entity_spawned":{"add":{"component_groups":["pushable"]}},"on_digging_event":{"remove":{"component_groups":["pushable"]}}}}},"minecraft:witch":{"format_version":"1.16.0","minecraft:entity":{"description":{"identifier":"minecraft:witch","is_spawnable":true,"is_summonable":true,"is_experimental":false},"component_groups":{"minecraft:celebrate":{"minecraft:behavior.celebrate":{"priority":5,"celebration_sound":"celebrate","sound_interval":{"range_min":2,"range_max":7},"jump_interval":{"range_min":1,"range_max":3.5},"duration":30,"on_celebration_end_event":{"event":"minecraft:stop_celebrating","target":"self"}}},"minecraft:raid_configuration":{"minecraft:dweller":{"dwelling_type":"village","dweller_role":"hostile","update_interval_base":60,"update_interval_variant":40,"can_find_poi":false,"can_migrate":true,"first_founding_reward":0},"minecraft:behavior.move_to_village":{"priority":3,"speed_multiplier":1.2,"goal_radius":2},"minecraft:ambient_sound_interval":{"value":2,"range":4,"event_name":"ambient.in.raid"}},"minecraft:raid_persistence":{"minecraft:persistent":{}}},"components":{"minecraft:is_hidden_when_invisible":{},"minecraft:experience_reward":{"on_death":"query.last_hit_by_player ? (query.is_baby ? 12 : 5) + (Math.die_roll(query.equipment_count,1,3)) : 0"},"minecraft:breathable":{"total_supply":15,"suffocate_time":0},"minecraft:nameable":{},"minecraft:loot":{"table":"loot_tables/entities/witch.json"},"minecraft:health":{"value":26,"max":26},"minecraft:hurt_on_condition":{"damage_conditions":[{"filters":{"test":"in_lava","subject":"self","operator":"==","value":true},"cause":"lava","damage_per_tick":4}]},"minecraft:movement":{"value":0.25},"minecraft:navigation.walk":{"can_path_over_water":true,"avoid_water":false},"minecraft:movement.basic":{},"minecraft:jump.static":{},"minecraft:can_climb":{},"minecraft:despawn":{"despawn_from_distance":{}},"minecraft:behavior.float":{"priority":1},"minecraft:behavior.ranged_attack":{"priority":2,"speed_multiplier":1,"attack_interval_min":3,"attack_interval_max":3,"attack_radius":10},"minecraft:behavior.random_stroll":{"priority":4,"speed_multiplier":1},"minecraft:behavior.look_at_player":{"priority":5,"look_distance":8},"minecraft:behavior.random_look_around":{"priority":5,"look_distance":8},"minecraft:behavior.hurt_by_target":{"priority":1},"minecraft:behavior.nearest_attackable_target":{"priority":2,"entity_types":[{"filters":{"any_of":[{"test":"is_family","subject":"other","value":"player"},{"test":"is_family","subject":"other","value":"snowgolem"},{"test":"is_family","subject":"other","value":"irongolem"}]},"max_dist":10}],"must_reach":true},"minecraft:type_family":{"family":["witch","monster","mob"]},"minecraft:collision_box":{"width":0.6,"height":1.9},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:follow_range":{"value":64},"minecraft:conditional_bandwidth_optimization":{}},"events":{"minecraft:spawn_for_raid":{"add":{"component_groups":["minecraft:raid_configuration","minecraft:raid_persistence"]}},"minecraft:start_celebrating":{"sequence":[{"add":{"component_groups":["minecraft:celebrate"]}},{"filters":{"test":"has_nametag","value":false},"remove":{"component_groups":["minecraft:raid_persistence"]}}]},"minecraft:stop_celebrating":{"remove":{"component_groups":["minecraft:celebrate"]}},"minecraft:raid_expired":{"sequence":[{"filters":{"test":"has_nametag","value":false},"remove":{"component_groups":["minecraft:raid_persistence"]}}]}}}},"minecraft:wither":{"format_version":"1.16.0","minecraft:entity":{"description":{"identifier":"minecraft:wither","is_spawnable":false,"is_summonable":true,"is_experimental":false},"components":{"minecraft:is_hidden_when_invisible":{},"minecraft:experience_reward":{"on_death":"50"},"minecraft:breathable":{"total_supply":15,"suffocate_time":0},"minecraft:boss":{"should_darken_sky":true,"hud_range":55},"minecraft:damage_sensor":{"triggers":{"on_damage":{"filters":{"test":"is_family","subject":"other","value":"undead"}},"deals_damage":false}},"minecraft:health":{"value":600,"max":600},"minecraft:collision_box":{"width":1,"height":3},"minecraft:fire_immune":{},"minecraft:loot":{"table":"loot_tables/entities/wither_boss.json"},"minecraft:nameable":{},"minecraft:movement":{"value":0.25},"minecraft:navigation.walk":{"can_path_over_water":true,"avoid_water":true},"minecraft:movement.basic":{"max_turn":180},"minecraft:jump.static":{},"minecraft:can_climb":{},"minecraft:can_fly":{},"minecraft:behavior.float":{"priority":1},"minecraft:behavior.wither_random_attack_pos_goal":{"priority":3},"minecraft:behavior.wither_target_highest_damage":{"priority":1},"minecraft:behavior.hurt_by_target":{"priority":2},"minecraft:behavior.nearest_attackable_target":{"priority":3,"entity_types":[{"filters":{"test":"is_family","subject":"other","value":"player"},"max_dist":70},{"filters":{"all_of":[{"test":"is_family","subject":"other","operator":"!=","value":"undead"},{"test":"is_family","subject":"other","operator":"!=","value":"inanimate"}]},"max_dist":70}],"must_see":true},"minecraft:behavior.random_stroll":{"priority":5,"speed_multiplier":1},"minecraft:behavior.look_at_target":{"priority":5},"minecraft:behavior.look_at_player":{"priority":6,"look_distance":8},"minecraft:behavior.random_look_around":{"priority":7},"minecraft:type_family":{"family":["wither","skeleton","monster","undead","mob"]},"minecraft:persistent":{},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:conditional_bandwidth_optimization":{}},"events":{"minecraft:entity_spawned":{}}}},"minecraft:wither_skeleton":{"format_version":"1.16.0","minecraft:entity":{"description":{"identifier":"minecraft:wither_skeleton","is_spawnable":true,"is_summonable":true,"is_experimental":false},"components":{"minecraft:is_hidden_when_invisible":{},"minecraft:experience_reward":{"on_death":"query.last_hit_by_player ? 5 + (query.equipment_count * Math.Random(1,3)) : 0"},"minecraft:nameable":{},"minecraft:breathable":{"total_supply":15,"suffocate_time":0,"breathes_water":true},"minecraft:health":{"value":20,"max":20},"minecraft:equip_item":{},"minecraft:collision_box":{"width":0.72,"height":2.01},"minecraft:attack":{"damage":4,"effect_name":"wither","effect_duration":10},"minecraft:loot":{"table":"loot_tables/entities/wither_skeleton.json"},"minecraft:equipment":{"table":"loot_tables/entities/wither_skeleton_gear.json"},"minecraft:movement":{"value":0.25},"minecraft:navigation.walk":{"is_amphibious":true,"avoid_sun":true,"avoid_water":true},"minecraft:movement.basic":{},"minecraft:jump.static":{},"minecraft:can_climb":{},"minecraft:shareables":{"items":[{"item":"minecraft:netherite_sword","want_amount":1,"surplus_amount":1,"priority":0},{"item":"minecraft:diamond_sword","want_amount":1,"surplus_amount":1,"priority":1},{"item":"minecraft:iron_sword","want_amount":1,"surplus_amount":1,"priority":2},{"item":"minecraft:stone_sword","want_amount":1,"surplus_amount":1,"priority":3},{"item":"minecraft:golden_sword","want_amount":1,"surplus_amount":1,"priority":4},{"item":"minecraft:wooden_sword","want_amount":1,"surplus_amount":1,"priority":5},{"item":"minecraft:wooden_shovel","want_amount":1,"surplus_amount":1,"priority":6},{"item":"minecraft:stone_shovel","want_amount":1,"surplus_amount":1,"priority":6},{"item":"minecraft:golden_shovel","want_amount":1,"surplus_amount":1,"priority":6},{"item":"minecraft:iron_shovel","want_amount":1,"surplus_amount":1,"priority":6},{"item":"minecraft:diamond_shovel","want_amount":1,"surplus_amount":1,"priority":6},{"item":"minecraft:netherite_shovel","want_amount":1,"surplus_amount":1,"priority":6},{"item":"minecraft:wooden_pickaxe","want_amount":1,"surplus_amount":1,"priority":6},{"item":"minecraft:stone_pickaxe","want_amount":1,"surplus_amount":1,"priority":6},{"item":"minecraft:golden_pickaxe","want_amount":1,"surplus_amount":1,"priority":6},{"item":"minecraft:iron_pickaxe","want_amount":1,"surplus_amount":1,"priority":6},{"item":"minecraft:diamond_pickaxe","want_amount":1,"surplus_amount":1,"priority":6},{"item":"minecraft:netherite_pickaxe","want_amount":1,"surplus_amount":1,"priority":6},{"item":"minecraft:wooden_axe","want_amount":1,"surplus_amount":1,"priority":6},{"item":"minecraft:stone_axe","want_amount":1,"surplus_amount":1,"priority":6},{"item":"minecraft:golden_axe","want_amount":1,"surplus_amount":1,"priority":6},{"item":"minecraft:iron_axe","want_amount":1,"surplus_amount":1,"priority":6},{"item":"minecraft:diamond_axe","want_amount":1,"surplus_amount":1,"priority":6},{"item":"minecraft:netherite_axe","want_amount":1,"surplus_amount":1,"priority":6},{"item":"minecraft:wooden_hoe","want_amount":1,"surplus_amount":1,"priority":6},{"item":"minecraft:stone_hoe","want_amount":1,"surplus_amount":1,"priority":6},{"item":"minecraft:golden_hoe","want_amount":1,"surplus_amount":1,"priority":6},{"item":"minecraft:iron_hoe","want_amount":1,"surplus_amount":1,"priority":6},{"item":"minecraft:diamond_hoe","want_amount":1,"surplus_amount":1,"priority":6},{"item":"minecraft:netherite_hoe","want_amount":1,"surplus_amount":1,"priority":6},{"item":"minecraft:netherite_helmet","want_amount":1,"surplus_amount":1,"priority":0},{"item":"minecraft:diamond_helmet","want_amount":1,"surplus_amount":1,"priority":1},{"item":"minecraft:iron_helmet","want_amount":1,"surplus_amount":1,"priority":2},{"item":"minecraft:chainmail_helmet","want_amount":1,"surplus_amount":1,"priority":3},{"item":"minecraft:golden_helmet","want_amount":1,"surplus_amount":1,"priority":4},{"item":"minecraft:leather_helmet","want_amount":1,"surplus_amount":1,"priority":5},{"item":"minecraft:turtle_helmet","want_amount":1,"surplus_amount":1,"priority":6},{"item":"minecraft:skull:0","want_amount":1,"surplus_amount":1,"priority":7},{"item":"minecraft:skull:1","want_amount":1,"surplus_amount":1,"priority":7},{"item":"minecraft:carved_pumpkin","want_amount":1,"surplus_amount":1,"priority":7},{"item":"minecraft:netherite_chestplate","want_amount":1,"surplus_amount":1,"priority":0},{"item":"minecraft:diamond_chestplate","want_amount":1,"surplus_amount":1,"priority":1},{"item":"minecraft:iron_chestplate","want_amount":1,"surplus_amount":1,"priority":2},{"item":"minecraft:chainmail_chestplate","want_amount":1,"surplus_amount":1,"priority":3},{"item":"minecraft:golden_chestplate","want_amount":1,"surplus_amount":1,"priority":4},{"item":"minecraft:leather_chestplate","want_amount":1,"surplus_amount":1,"priority":5},{"item":"minecraft:netherite_leggings","want_amount":1,"surplus_amount":1,"priority":0},{"item":"minecraft:diamond_leggings","want_amount":1,"surplus_amount":1,"priority":1},{"item":"minecraft:iron_leggings","want_amount":1,"surplus_amount":1,"priority":2},{"item":"minecraft:chainmail_leggings","want_amount":1,"surplus_amount":1,"priority":3},{"item":"minecraft:golden_leggings","want_amount":1,"surplus_amount":1,"priority":4},{"item":"minecraft:leather_leggings","want_amount":1,"surplus_amount":1,"priority":5},{"item":"minecraft:netherite_boots","want_amount":1,"surplus_amount":1,"priority":0},{"item":"minecraft:diamond_boots","want_amount":1,"surplus_amount":1,"priority":1},{"item":"minecraft:iron_boots","want_amount":1,"surplus_amount":1,"priority":2},{"item":"minecraft:chainmail_boots","want_amount":1,"surplus_amount":1,"priority":3},{"item":"minecraft:golden_boots","want_amount":1,"surplus_amount":1,"priority":4},{"item":"minecraft:leather_boots","want_amount":1,"surplus_amount":1,"priority":5}]},"minecraft:scale":{"value":1.2},"minecraft:fire_immune":{},"minecraft:despawn":{"despawn_from_distance":{}},"minecraft:behavior.hurt_by_target":{"priority":1},"minecraft:behavior.nearest_attackable_target":{"priority":2,"reselect_targets":true,"must_see":true,"entity_types":[{"filters":{"test":"is_family","subject":"other","value":"player"},"max_dist":16},{"filters":{"all_of":[{"test":"is_family","subject":"other","value":"piglin"},{"test":"is_difficulty","operator":"!=","value":"peaceful"}]},"max_dist":16},{"filters":{"test":"is_family","subject":"other","value":"irongolem"},"max_dist":16},{"filters":{"all_of":[{"test":"is_family","subject":"other","value":"baby_turtle"},{"test":"in_water","subject":"other","operator":"!=","value":true}]},"max_dist":16}]},"minecraft:behavior.equip_item":{"priority":3},"minecraft:behavior.melee_attack":{"priority":4,"track_target":true,"speed_multiplier":1.25},"minecraft:behavior.pickup_items":{"priority":5,"max_dist":3,"goal_radius":2,"speed_multiplier":1,"pickup_based_on_chance":true},"minecraft:behavior.random_stroll":{"priority":6,"speed_multiplier":1},"minecraft:behavior.look_at_player":{"priority":7,"look_distance":8},"minecraft:behavior.random_look_around":{"priority":8},"minecraft:type_family":{"family":["wither","monster","undead","skeleton","mob"]},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:conditional_bandwidth_optimization":{}},"events":{"minecraft:entity_spawned":{}}}},"minecraft:wither_skull":{"format_version":"1.12.0","minecraft:entity":{"description":{"identifier":"minecraft:wither_skull","is_spawnable":false,"is_summonable":false,"is_experimental":false},"component_groups":{"minecraft:exploding":{"minecraft:explode":{"fuse_length":0,"fuse_lit":true,"power":1,"causes_fire":false,"destroy_affected_by_griefing":true}}},"components":{"minecraft:collision_box":{"width":0.15,"height":0.15},"minecraft:projectile":{"on_hit":{"definition_event":{"affect_projectile":true,"event_trigger":{"event":"minecraft:explode","target":"self"}},"mob_effect":{"effect":"wither","durationeasy":0,"durationnormal":200,"durationhard":800,"amplifier":1}},"power":1.2,"gravity":0,"uncertainty_base":7.5,"uncertainty_multiplier":1,"shoot_sound":"bow","hit_sound":"bow.hit","anchor":1,"offset":[0,-0.1,0],"inertia":1,"liquid_inertia":1,"shoot_target":false},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:conditional_bandwidth_optimization":{"default_values":{"max_optimized_distance":80,"max_dropped_ticks":7,"use_motion_prediction_hints":true}}},"events":{"minecraft:explode":{"add":{"component_groups":["minecraft:exploding"]}}}}},"minecraft:wither_skull_dangerous":{"format_version":"1.12.0","minecraft:entity":{"description":{"identifier":"minecraft:wither_skull_dangerous","is_spawnable":false,"is_summonable":false,"is_experimental":false},"component_groups":{"minecraft:exploding":{"minecraft:explode":{"fuse_length":0,"fuse_lit":true,"power":1,"causes_fire":false,"max_resistance":4,"destroy_affected_by_griefing":true}}},"components":{"minecraft:collision_box":{"width":0.15,"height":0.15},"minecraft:projectile":{"on_hit":{"definition_event":{"affect_projectile":true,"event_trigger":{"event":"minecraft:explode","target":"self"}},"mob_effect":{"effect":"wither","durationeasy":0,"durationnormal":200,"durationhard":800,"amplifier":1}},"power":0.6,"gravity":0,"uncertainty_base":7.5,"uncertainty_multiplier":1,"shoot_sound":"bow","hit_sound":"bow.hit","anchor":1,"offset":[0,-0.1,0],"is_dangerous":true,"inertia":1,"liquid_inertia":1,"shoot_target":false,"reflect_on_hurt":true},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:conditional_bandwidth_optimization":{"default_values":{"max_optimized_distance":80,"max_dropped_ticks":7,"use_motion_prediction_hints":true}}},"events":{"minecraft:explode":{"add":{"component_groups":["minecraft:exploding"]}}}}},"minecraft:wolf":{"format_version":"1.18.10","minecraft:entity":{"description":{"identifier":"minecraft:wolf","is_spawnable":true,"is_summonable":true,"is_experimental":false},"component_groups":{"minecraft:wolf_baby":{"minecraft:is_baby":{},"minecraft:scale":{"value":0.5},"minecraft:ageable":{"duration":1200,"feed_items":["chicken","cooked_chicken","beef","cooked_beef","muttonRaw","muttonCooked","porkchop","cooked_porkchop","rabbit","cooked_rabbit","rotten_flesh"],"grow_up":{"event":"minecraft:ageable_grow_up","target":"self"}}},"minecraft:wolf_adult":{"minecraft:experience_reward":{"on_bred":"Math.Random(1,7)","on_death":"query.last_hit_by_player ? Math.Random(1,3) : 0"},"minecraft:loot":{"table":"loot_tables/entities/wolf.json"},"minecraft:breedable":{"require_tame":true,"require_full_health":true,"breeds_with":{"mate_type":"minecraft:wolf","baby_type":"minecraft:wolf","breed_event":{"event":"minecraft:entity_born","target":"baby"}},"breed_items":["chicken","cooked_chicken","beef","cooked_beef","muttonRaw","muttonCooked","porkchop","cooked_porkchop","rabbit","cooked_rabbit","rotten_flesh"]}},"minecraft:wolf_angry":{"minecraft:angry":{"duration":25,"broadcast_anger":true,"broadcast_range":20,"calm_event":{"event":"minecraft:on_calm","target":"self"}},"minecraft:on_target_acquired":{},"minecraft:rideable":{"seat_count":1,"family_types":["zombie"],"seats":{"position":[0,0.675,-0.1]}}},"minecraft:wolf_wild":{"minecraft:behavior.avoid_mob_type":{"priority":3,"entity_types":[{"filters":{"test":"is_family","subject":"other","value":"llama"},"max_dist":24,"walk_speed_multiplier":1.5,"sprint_speed_multiplier":1.5}],"probability_per_strength":0.14},"minecraft:tameable":{"probability":0.33,"tame_items":"bone","tame_event":{"event":"minecraft:on_tame","target":"self"}},"minecraft:behavior.nearest_attackable_target":{"priority":4,"reselect_targets":true,"must_see":true,"entity_types":[{"filters":{"any_of":[{"test":"is_family","subject":"other","value":"skeleton"},{"test":"is_family","subject":"other","value":"sheep"},{"test":"is_family","subject":"other","value":"rabbit"},{"test":"is_family","subject":"other","value":"fox"}]},"max_dist":16},{"filters":{"all_of":[{"test":"is_family","subject":"other","value":"baby_turtle"},{"test":"in_water","subject":"other","operator":"!=","value":true}]},"max_dist":16},{"filters":{"all_of":[{"test":"is_family","subject":"other","value":"skeleton"},{"test":"is_underwater","subject":"other","operator":"!=","value":true}]},"max_dist":16}]},"minecraft:on_target_acquired":{"event":"minecraft:become_angry","target":"self"},"minecraft:rideable":{"seat_count":1,"family_types":["zombie"],"seats":{"position":[0,0.675,-0.1]}}},"minecraft:wolf_tame":{"minecraft:is_tamed":{},"minecraft:health":{"value":20,"max":20},"minecraft:color":{"value":14},"minecraft:behavior.follow_owner":{"priority":6,"speed_multiplier":1,"start_distance":10,"stop_distance":2},"minecraft:attack":{"damage":4},"minecraft:behavior.breed":{"priority":2,"speed_multiplier":1},"minecraft:behavior.owner_hurt_by_target":{"priority":1},"minecraft:behavior.owner_hurt_target":{"priority":2},"minecraft:behavior.nearest_attackable_target":{"priority":5,"must_see":true,"entity_types":[{"filters":{"test":"is_family","subject":"other","value":"skeleton"},"max_dist":16}]},"minecraft:sittable":{},"minecraft:is_dyeable":{"interact_text":"action.interact.dye"}}},"components":{"minecraft:leashable":{"soft_distance":4,"hard_distance":6,"max_distance":10,"on_leash":{"event":"minecraft:on_leash","target":"self"},"on_unleash":{"event":"minecraft:on_unleash","target":"self"}},"minecraft:balloonable":{"mass":0.8},"minecraft:is_hidden_when_invisible":{},"minecraft:nameable":{},"minecraft:type_family":{"family":["wolf","mob"]},"minecraft:breathable":{"total_supply":15,"suffocate_time":0},"minecraft:collision_box":{"width":0.6,"height":0.8},"minecraft:health":{"value":8,"max":8},"minecraft:hurt_on_condition":{"damage_conditions":[{"filters":{"test":"in_lava","subject":"self","operator":"==","value":true},"cause":"lava","damage_per_tick":4}]},"minecraft:movement":{"value":0.3},"minecraft:navigation.walk":{"can_path_over_water":true,"avoid_damage_blocks":true},"minecraft:movement.basic":{},"minecraft:jump.static":{},"minecraft:can_climb":{},"minecraft:attack":{"damage":3},"minecraft:healable":{"items":[{"item":"porkchop","heal_amount":3},{"item":"cooked_porkchop","heal_amount":8},{"item":"fish","heal_amount":2},{"item":"salmon","heal_amount":2},{"item":"clownfish","heal_amount":1},{"item":"pufferfish","heal_amount":1},{"item":"cooked_fish","heal_amount":5},{"item":"cooked_salmon","heal_amount":6},{"item":"beef","heal_amount":3},{"item":"cooked_beef","heal_amount":8},{"item":"chicken","heal_amount":2},{"item":"cooked_chicken","heal_amount":6},{"item":"muttonRaw","heal_amount":2},{"item":"muttonCooked","heal_amount":6},{"item":"rotten_flesh","heal_amount":4},{"item":"rabbit","heal_amount":3},{"item":"cooked_rabbit","heal_amount":5},{"item":"rabbit_stew","heal_amount":10}]},"minecraft:despawn":{"despawn_from_distance":{}},"minecraft:behavior.float":{"priority":0},"minecraft:behavior.mount_pathing":{"priority":1,"speed_multiplier":1.25,"target_dist":0,"track_target":true},"minecraft:behavior.stay_while_sitting":{"priority":3},"minecraft:behavior.leap_at_target":{"priority":4,"target_dist":0.4},"minecraft:behavior.melee_attack":{"priority":5},"minecraft:behavior.random_stroll":{"priority":8,"speed_multiplier":1},"minecraft:behavior.look_at_player":{"priority":6,"target_distance":6,"probability":0.02},"minecraft:behavior.beg":{"priority":9,"look_distance":8,"look_time":[2,4],"items":["bone","porkchop","cooked_porkchop","chicken","cooked_chicken","beef","cooked_beef","rotten_flesh","muttonraw","muttoncooked","rabbit","cooked_rabbit"]},"minecraft:behavior.hurt_by_target":{"priority":3},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:conditional_bandwidth_optimization":{}},"events":{"minecraft:entity_spawned":{"randomize":[{"weight":9,"remove":{},"add":{"component_groups":["minecraft:wolf_adult","minecraft:wolf_wild"]}},{"weight":1,"remove":{},"add":{"component_groups":["minecraft:wolf_baby","minecraft:wolf_wild"]}}]},"minecraft:entity_born":{"remove":{},"add":{"component_groups":["minecraft:wolf_baby","minecraft:wolf_tame"]}},"minecraft:ageable_grow_up":{"remove":{"component_groups":["minecraft:wolf_baby"]},"add":{"component_groups":["minecraft:wolf_adult"]}},"minecraft:ageable_set_baby":{"remove":{"component_groups":["minecraft:wolf_adult"]},"add":{"component_groups":["minecraft:wolf_baby"]}},"minecraft:on_tame":{"remove":{"component_groups":["minecraft:wolf_wild"]},"add":{"component_groups":["minecraft:wolf_tame"]}},"minecraft:become_angry":{"remove":{"component_groups":["minecraft:wolf_wild"]},"add":{"component_groups":["minecraft:wolf_angry"]}},"minecraft:on_calm":{"remove":{"component_groups":["minecraft:wolf_angry"]},"add":{"component_groups":["minecraft:wolf_wild"]}}}}},"minecraft:xp_bottle":{"format_version":"1.12.0","minecraft:entity":{"description":{"identifier":"minecraft:xp_bottle","is_spawnable":false,"is_summonable":true,"is_experimental":false},"components":{"minecraft:collision_box":{"width":0.25,"height":0.25},"minecraft:projectile":{"on_hit":{"grant_xp":{"minXP":3,"maxXP":11},"remove_on_hit":{}},"power":0.5,"gravity":0.05,"angle_offset":-20,"hit_sound":"glass"},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:conditional_bandwidth_optimization":{"default_values":{"max_optimized_distance":80,"max_dropped_ticks":5,"use_motion_prediction_hints":true}}}}},"minecraft:xp_orb":{"format_version":"1.16.0","minecraft:entity":{"description":{"identifier":"minecraft:xp_orb","is_spawnable":false,"is_summonable":true,"is_experimental":false},"components":{"minecraft:collision_box":{"width":0.25,"height":0.25},"minecraft:type_family":{"family":["inanimate"]},"minecraft:health":{"value":5,"max":5},"minecraft:buoyant":{"apply_gravity":false,"liquid_blocks":["minecraft:flowing_water","minecraft:water"]},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:conditional_bandwidth_optimization":{"default_values":{"max_optimized_distance":80,"max_dropped_ticks":10,"use_motion_prediction_hints":true}}}}},"minecraft:zoglin":{"format_version":"1.18.30","minecraft:entity":{"description":{"identifier":"minecraft:zoglin","is_spawnable":true,"is_summonable":true,"is_experimental":false},"component_groups":{"zoglin_baby":{"minecraft:type_family":{"family":["zoglin","zoglin_baby","undead","mob"]},"minecraft:is_baby":{},"minecraft:attack":{"damage":0.5},"minecraft:scale":{"value":0.5},"minecraft:collision_box":{"width":0.85,"height":0.85},"minecraft:custom_hit_test":{"hitboxes":[{"width":1,"height":0.85,"pivot":[0,0.5,0]}]}},"zoglin_adult":{"minecraft:type_family":{"family":["zoglin","zoglin_adult","undead","mob"]},"minecraft:collision_box":{"width":1.4,"height":1.4},"minecraft:custom_hit_test":{"hitboxes":[{"width":2,"height":1.75,"pivot":[0,1,0]}]},"minecraft:behavior.hurt_by_target":{"priority":1},"minecraft:attack":{"damage":[3,8]}}},"components":{"minecraft:is_hidden_when_invisible":{},"minecraft:nameable":{},"minecraft:loot":{"table":"loot_tables/entities/zoglin.json"},"minecraft:experience_reward":{"on_bred":"Math.Random(1,7)","on_death":"query.last_hit_by_player ? 5 : 0"},"minecraft:health":{"value":40,"max":40},"minecraft:knockback_resistance":{"value":0.6},"minecraft:behavior.nearest_attackable_target":{"priority":3,"within_radius":16,"entity_types":[{"filters":{"all_of":[{"test":"is_family","subject":"other","operator":"!=","value":"zoglin"},{"test":"is_family","subject":"other","operator":"!=","value":"creeper"}]},"max_dist":16}],"must_see":true},"minecraft:behavior.melee_attack":{"priority":4,"reach_multiplier":2.15,"speed_multiplier":1.4,"track_target":true},"minecraft:breathable":{"total_supply":15,"suffocate_time":0,"breathes_water":true},"minecraft:movement":{"value":0.25},"minecraft:navigation.walk":{"is_amphibious":true,"can_path_over_water":false,"avoid_water":true,"avoid_damage_blocks":true},"minecraft:movement.basic":{},"minecraft:jump.static":{},"minecraft:can_climb":{},"minecraft:fire_immune":{},"minecraft:leashable":{"soft_distance":4,"hard_distance":6,"max_distance":10},"minecraft:balloonable":{},"minecraft:despawn":{"filters":{"any_of":[{"all_of":[{"test":"is_persistent","value":false},{"test":"distance_to_nearest_player","operator":">","value":54}]},{"all_of":[{"test":"is_persistent","value":false},{"test":"inactivity_timer","subject":"self","value":30},{"test":"random_chance","value":800},{"test":"distance_to_nearest_player","operator":">","value":32}]}]}},"minecraft:behavior.random_stroll":{"priority":7,"speed_multiplier":1},"minecraft:behavior.random_look_around":{"priority":9},"minecraft:behavior.look_at_player":{"priority":8,"look_distance":6,"probability":0.02},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:conditional_bandwidth_optimization":{}},"events":{"minecraft:entity_transformed":{"sequence":[{"filters":{"test":"has_component","subject":"other","value":"minecraft:is_baby"},"add":{"component_groups":["zoglin_baby"]}},{"filters":{"test":"has_component","subject":"other","operator":"!=","value":"minecraft:is_baby"},"add":{"component_groups":["zoglin_adult"]}}]},"minecraft:entity_spawned":{"randomize":[{"weight":95,"add":{"component_groups":["zoglin_adult"]}},{"weight":5,"add":{"component_groups":["zoglin_baby"]}}]},"minecraft:as_adult":{"add":{"component_groups":["zoglin_adult"]}},"minecraft:as_baby":{"add":{"component_groups":["zoglin_baby"]}}}}},"minecraft:zombie":{"format_version":"1.17.20","minecraft:entity":{"description":{"identifier":"minecraft:zombie","is_spawnable":true,"is_summonable":true,"is_experimental":false},"component_groups":{"minecraft:look_to_start_drowned_transformation":{"minecraft:environment_sensor":{"triggers":{"filters":{"test":"is_underwater","subject":"self","operator":"==","value":true},"event":"minecraft:start_transforming"}}},"minecraft:start_drowned_transformation":{"minecraft:environment_sensor":{"triggers":{"filters":{"test":"is_underwater","subject":"self","operator":"==","value":false},"event":"minecraft:stop_transforming"}},"minecraft:timer":{"looping":false,"time":30,"time_down_event":{"event":"minecraft:convert_to_drowned"}}},"minecraft:convert_to_drowned":{"minecraft:transformation":{"into":"minecraft:drowned<minecraft:as_adult>","transformation_sound":"convert_to_drowned","drop_equipment":true,"delay":{"value":15}},"minecraft:is_shaking":{}},"minecraft:convert_to_baby_drowned":{"minecraft:transformation":{"into":"minecraft:drowned<minecraft:as_baby>","transformation_sound":"convert_to_drowned","drop_equipment":true,"delay":{"value":15}},"minecraft:is_shaking":{}},"minecraft:zombie_baby":{"minecraft:experience_reward":{"on_death":"query.last_hit_by_player ? 12 + (query.equipment_count * Math.Random(1,3)) : 0"},"minecraft:is_baby":{},"minecraft:scale":{"value":0.5},"minecraft:movement":{"value":0.35}},"minecraft:zombie_adult":{"minecraft:experience_reward":{"on_death":"query.last_hit_by_player ? 5 + (query.equipment_count * Math.Random(1,3)) : 0"},"minecraft:movement":{"value":0.23},"minecraft:rideable":{"seat_count":1,"family_types":["zombie"],"seats":{"position":[0,1.1,-0.35],"lock_rider_rotation":0}},"minecraft:behavior.mount_pathing":{"priority":2,"speed_multiplier":1.25,"target_dist":0,"track_target":true}},"minecraft:zombie_jockey":{"minecraft:behavior.find_mount":{"priority":1,"within_radius":16,"start_delay":15,"max_failed_attempts":20}},"minecraft:can_have_equipment":{"minecraft:equipment":{"table":"loot_tables/entities/zombie_equipment.json"}},"minecraft:can_break_doors":{"minecraft:annotation.break_door":{}}},"components":{"minecraft:is_hidden_when_invisible":{},"minecraft:nameable":{},"minecraft:type_family":{"family":["zombie","undead","monster","mob"]},"minecraft:equip_item":{},"minecraft:collision_box":{"width":0.6,"height":1.9},"minecraft:burns_in_daylight":{},"minecraft:movement.basic":{},"minecraft:navigation.walk":{"is_amphibious":true,"can_pass_doors":true,"can_walk":true,"can_break_doors":true},"minecraft:jump.static":{},"minecraft:can_climb":{},"minecraft:health":{"value":20,"max":20},"minecraft:hurt_on_condition":{"damage_conditions":[{"filters":{"test":"in_lava","subject":"self","operator":"==","value":true},"cause":"lava","damage_per_tick":4}]},"minecraft:breathable":{"total_supply":15,"suffocate_time":0,"breathes_air":true,"breathes_water":true},"minecraft:attack":{"damage":3},"minecraft:loot":{"table":"loot_tables/entities/zombie.json"},"minecraft:shareables":{"items":[{"item":"minecraft:netherite_sword","want_amount":1,"surplus_amount":1,"priority":0},{"item":"minecraft:diamond_sword","want_amount":1,"surplus_amount":1,"priority":1},{"item":"minecraft:iron_sword","want_amount":1,"surplus_amount":1,"priority":2},{"item":"minecraft:stone_sword","want_amount":1,"surplus_amount":1,"priority":3},{"item":"minecraft:golden_sword","want_amount":1,"surplus_amount":1,"priority":4},{"item":"minecraft:wooden_sword","want_amount":1,"surplus_amount":1,"priority":5},{"item":"minecraft:netherite_helmet","want_amount":1,"surplus_amount":1,"priority":0},{"item":"minecraft:diamond_helmet","want_amount":1,"surplus_amount":1,"priority":1},{"item":"minecraft:iron_helmet","want_amount":1,"surplus_amount":1,"priority":2},{"item":"minecraft:chainmail_helmet","want_amount":1,"surplus_amount":1,"priority":3},{"item":"minecraft:golden_helmet","want_amount":1,"surplus_amount":1,"priority":4},{"item":"minecraft:leather_helmet","want_amount":1,"surplus_amount":1,"priority":5},{"item":"minecraft:turtle_helmet","want_amount":1,"surplus_amount":1,"priority":6},{"item":"minecraft:skull:0","want_amount":1,"surplus_amount":1,"priority":7},{"item":"minecraft:skull:1","want_amount":1,"surplus_amount":1,"priority":7},{"item":"minecraft:carved_pumpkin","want_amount":1,"surplus_amount":1,"priority":7},{"item":"minecraft:netherite_chestplate","want_amount":1,"surplus_amount":1,"priority":0},{"item":"minecraft:diamond_chestplate","want_amount":1,"surplus_amount":1,"priority":1},{"item":"minecraft:iron_chestplate","want_amount":1,"surplus_amount":1,"priority":2},{"item":"minecraft:chainmail_chestplate","want_amount":1,"surplus_amount":1,"priority":3},{"item":"minecraft:golden_chestplate","want_amount":1,"surplus_amount":1,"priority":4},{"item":"minecraft:leather_chestplate","want_amount":1,"surplus_amount":1,"priority":5},{"item":"minecraft:netherite_leggings","want_amount":1,"surplus_amount":1,"priority":0},{"item":"minecraft:diamond_leggings","want_amount":1,"surplus_amount":1,"priority":1},{"item":"minecraft:iron_leggings","want_amount":1,"surplus_amount":1,"priority":2},{"item":"minecraft:chainmail_leggings","want_amount":1,"surplus_amount":1,"priority":3},{"item":"minecraft:golden_leggings","want_amount":1,"surplus_amount":1,"priority":4},{"item":"minecraft:leather_leggings","want_amount":1,"surplus_amount":1,"priority":5},{"item":"minecraft:netherite_boots","want_amount":1,"surplus_amount":1,"priority":0},{"item":"minecraft:diamond_boots","want_amount":1,"surplus_amount":1,"priority":1},{"item":"minecraft:iron_boots","want_amount":1,"surplus_amount":1,"priority":2},{"item":"minecraft:chainmail_boots","want_amount":1,"surplus_amount":1,"priority":3},{"item":"minecraft:golden_boots","want_amount":1,"surplus_amount":1,"priority":4},{"item":"minecraft:leather_boots","want_amount":1,"surplus_amount":1,"priority":5}]},"minecraft:environment_sensor":{"triggers":{"filters":{"test":"is_underwater","operator":"==","value":true},"event":"minecraft:start_transforming"}},"minecraft:despawn":{"despawn_from_distance":{}},"minecraft:behavior.equip_item":{"priority":2},"minecraft:behavior.melee_attack":{"priority":3},"minecraft:behavior.stomp_turtle_egg":{"priority":4,"speed_multiplier":1,"search_range":10,"search_height":2,"goal_radius":1.14,"interval":20},"minecraft:behavior.pickup_items":{"priority":6,"max_dist":3,"goal_radius":2,"speed_multiplier":1,"pickup_based_on_chance":true,"can_pickup_any_item":true,"excluded_items":["minecraft:glow_ink_sac"]},"minecraft:behavior.random_stroll":{"priority":7,"speed_multiplier":1},"minecraft:behavior.look_at_player":{"priority":8,"look_distance":6,"probability":0.02},"minecraft:behavior.random_look_around":{"priority":9},"minecraft:behavior.hurt_by_target":{"priority":1},"minecraft:behavior.nearest_attackable_target":{"priority":2,"must_see":true,"reselect_targets":true,"within_radius":25,"must_see_forget_duration":17,"entity_types":[{"filters":{"any_of":[{"test":"is_family","subject":"other","value":"player"},{"test":"is_family","subject":"other","value":"snowgolem"},{"test":"is_family","subject":"other","value":"irongolem"}]},"max_dist":35},{"filters":{"any_of":[{"test":"is_family","subject":"other","value":"villager"},{"test":"is_family","subject":"other","value":"wandering_trader"}]},"max_dist":35,"must_see":false},{"filters":{"all_of":[{"test":"is_family","subject":"other","value":"baby_turtle"},{"test":"in_water","subject":"other","operator":"!=","value":true}]},"max_dist":35}]},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:conditional_bandwidth_optimization":{}},"events":{"minecraft:entity_spawned":{"sequence":[{"randomize":[{"weight":380,"remove":{},"add":{"component_groups":["minecraft:zombie_adult","minecraft:can_have_equipment"]}},{"weight":17,"remove":{},"add":{"component_groups":["minecraft:zombie_baby","minecraft:can_have_equipment"]}},{"weight":3,"remove":{},"add":{"component_groups":["minecraft:zombie_baby","minecraft:zombie_jockey","minecraft:can_have_equipment"]}}]},{"randomize":[{"weight":10,"add":{"component_groups":["minecraft:can_break_doors"]}},{"weight":90}]}]},"minecraft:as_adult":{"add":{"component_groups":["minecraft:zombie_adult"]}},"minecraft:as_baby":{"add":{"component_groups":["minecraft:zombie_baby"]}},"minecraft:start_transforming":{"add":{"component_groups":["minecraft:start_drowned_transformation"]},"remove":{"component_groups":["minecraft:look_to_start_drowned_transformation"]}},"minecraft:stop_transforming":{"add":{"component_groups":["minecraft:look_to_start_drowned_transformation"]},"remove":{"component_groups":["minecraft:start_drowned_transformation"]}},"minecraft:convert_to_drowned":{"sequence":[{"filters":{"test":"has_component","operator":"!=","value":"minecraft:is_baby"},"add":{"component_groups":["minecraft:convert_to_drowned"]},"remove":{"component_groups":["minecraft:start_drowned_transformation"]}},{"filters":{"test":"has_component","value":"minecraft:is_baby"},"add":{"component_groups":["minecraft:convert_to_baby_drowned"]},"remove":{"component_groups":["minecraft:start_drowned_transformation"]}}]}}}},"minecraft:zombie_horse":{"format_version":"1.16.0","minecraft:entity":{"description":{"identifier":"minecraft:zombie_horse","is_spawnable":true,"is_summonable":true,"is_experimental":false},"component_groups":{"minecraft:horse_baby":{"minecraft:is_baby":{},"minecraft:scale_by_age":{"start_scale":0.5,"end_scale":1},"minecraft:ageable":{"duration":1200,"grow_up":{"event":"minecraft:ageable_grow_up","target":"self"}},"minecraft:behavior.follow_parent":{"priority":4,"speed_multiplier":1}},"minecraft:horse_adult":{"minecraft:experience_reward":{"on_death":"query.last_hit_by_player ? Math.Random(1,3) : 0"},"minecraft:loot":{"table":"loot_tables/entities/zombie_horse.json"},"minecraft:rideable":{"seat_count":1,"family_types":["zombie"],"interact_text":"action.interact.ride.horse","seats":{"position":[0,1.2,-0.2]}},"minecraft:behavior.mount_pathing":{"priority":2,"speed_multiplier":1.5,"target_dist":0,"track_target":true},"minecraft:behavior.player_ride_tamed":{}}},"components":{"minecraft:is_hidden_when_invisible":{},"minecraft:type_family":{"family":["zombiehorse","undead","mob"]},"minecraft:breathable":{"total_supply":15,"suffocate_time":0,"breathes_water":true},"minecraft:collision_box":{"width":1.4,"height":1.6},"minecraft:health":{"value":15,"max":15},"minecraft:hurt_on_condition":{"damage_conditions":[{"filters":{"test":"in_lava","subject":"self","operator":"==","value":true},"cause":"lava","damage_per_tick":4}]},"minecraft:movement":{"value":0.2},"minecraft:navigation.walk":{"is_amphibious":true,"avoid_water":true},"minecraft:movement.basic":{},"minecraft:jump.static":{},"minecraft:nameable":{},"minecraft:is_tamed":{},"minecraft:horse.jump_strength":{"value":{"range_min":0.4,"range_max":1}},"minecraft:leashable":{"soft_distance":4,"hard_distance":6,"max_distance":10},"minecraft:balloonable":{},"minecraft:despawn":{"despawn_from_distance":{}},"minecraft:behavior.panic":{"priority":1,"speed_multiplier":1.2},"minecraft:behavior.random_stroll":{"priority":6,"speed_multiplier":0.7},"minecraft:behavior.look_at_player":{"priority":7,"look_distance":6,"probability":0.02},"minecraft:behavior.random_look_around":{"priority":8},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:conditional_bandwidth_optimization":{}},"events":{"minecraft:entity_spawned":{"randomize":[{"weight":36,"add":{"component_groups":["minecraft:horse_adult"]}},{"weight":9,"add":{"component_groups":["minecraft:horse_baby"]}}]},"minecraft:ageable_grow_up":{"remove":{"component_groups":["minecraft:horse_baby"]},"add":{"component_groups":["minecraft:horse_adult"]}}}}},"minecraft:zombie_pigman":{"format_version":"1.16.0","minecraft:entity":{"description":{"identifier":"minecraft:zombie_pigman","is_spawnable":true,"is_summonable":true,"is_experimental":false},"component_groups":{"minecraft:pig_zombie_baby":{"minecraft:experience_reward":{"on_death":"query.last_hit_by_player ? 12 + (query.equipment_count * Math.Random(1,3)) : 0"},"minecraft:is_baby":{},"minecraft:scale":{"value":0.5}},"minecraft:pig_zombie_adult":{"minecraft:rideable":{"seat_count":1,"family_types":["zombie"],"seats":{"position":[0,1.1,-0.35],"lock_rider_rotation":0}},"minecraft:experience_reward":{"on_death":"query.last_hit_by_player ? 5 + (query.equipment_count * Math.Random(1,3)) : 0"}},"minecraft:pig_zombie_angry":{"minecraft:angry":{"duration":25,"broadcast_anger":true,"broadcast_range":20,"calm_event":{"event":"minecraft:on_calm","target":"self"}}},"minecraft:pig_zombie_calm":{"minecraft:on_target_acquired":{"event":"minecraft:become_angry","target":"self"}},"minecraft:strider_jockey":{"minecraft:equipment":{"table":"loot_tables/entities/zombified_piglin_rider_gear.json"}}},"components":{"minecraft:is_hidden_when_invisible":{},"minecraft:breathable":{"total_supply":15,"suffocate_time":0,"breathes_water":true},"minecraft:equip_item":{},"minecraft:collision_box":{"width":0.6,"height":1.9},"minecraft:nameable":{},"minecraft:navigation.walk":{"is_amphibious":true,"can_pass_doors":true,"can_open_doors":true,"avoid_water":true,"avoid_portals":true},"minecraft:movement.basic":{},"minecraft:jump.static":{},"minecraft:can_climb":{},"minecraft:fire_immune":{},"minecraft:type_family":{"family":["zombie_pigman","undead","monster","mob"]},"minecraft:loot":{"table":"loot_tables/entities/zombie_pigman.json"},"minecraft:equipment":{"table":"loot_tables/entities/zombie_pigman_gear.json"},"minecraft:health":{"value":20,"max":20},"minecraft:movement":{"value":0.23},"minecraft:attack":{"damage":5},"minecraft:despawn":{"despawn_from_distance":{}},"minecraft:shareables":{"items":[{"item":"minecraft:netherite_sword","want_amount":1,"surplus_amount":1,"priority":0},{"item":"minecraft:diamond_sword","want_amount":1,"surplus_amount":1,"priority":0},{"item":"minecraft:iron_sword","want_amount":1,"surplus_amount":1,"priority":1},{"item":"minecraft:stone_sword","want_amount":1,"surplus_amount":1,"priority":2},{"item":"minecraft:golden_sword","want_amount":1,"surplus_amount":1,"priority":3},{"item":"minecraft:wooden_sword","want_amount":1,"surplus_amount":1,"priority":4},{"item":"minecraft:netherite_helmet","want_amount":1,"surplus_amount":1,"priority":0},{"item":"minecraft:diamond_helmet","want_amount":1,"surplus_amount":1,"priority":1},{"item":"minecraft:iron_helmet","want_amount":1,"surplus_amount":1,"priority":2},{"item":"minecraft:chainmail_helmet","want_amount":1,"surplus_amount":1,"priority":3},{"item":"minecraft:golden_helmet","want_amount":1,"surplus_amount":1,"priority":4},{"item":"minecraft:leather_helmet","want_amount":1,"surplus_amount":1,"priority":5},{"item":"minecraft:turtle_helmet","want_amount":1,"surplus_amount":1,"priority":6},{"item":"minecraft:skull:0","want_amount":1,"surplus_amount":1,"priority":7},{"item":"minecraft:skull:1","want_amount":1,"surplus_amount":1,"priority":7},{"item":"minecraft:carved_pumpkin","want_amount":1,"surplus_amount":1,"priority":7},{"item":"minecraft:netherite_chestplate","want_amount":1,"surplus_amount":1,"priority":0},{"item":"minecraft:diamond_chestplate","want_amount":1,"surplus_amount":1,"priority":1},{"item":"minecraft:iron_chestplate","want_amount":1,"surplus_amount":1,"priority":2},{"item":"minecraft:chainmail_chestplate","want_amount":1,"surplus_amount":1,"priority":3},{"item":"minecraft:golden_chestplate","want_amount":1,"surplus_amount":1,"priority":4},{"item":"minecraft:leather_chestplate","want_amount":1,"surplus_amount":1,"priority":5},{"item":"minecraft:netherite_leggings","want_amount":1,"surplus_amount":1,"priority":0},{"item":"minecraft:diamond_leggings","want_amount":1,"surplus_amount":1,"priority":1},{"item":"minecraft:iron_leggings","want_amount":1,"surplus_amount":1,"priority":2},{"item":"minecraft:chainmail_leggings","want_amount":1,"surplus_amount":1,"priority":3},{"item":"minecraft:golden_leggings","want_amount":1,"surplus_amount":1,"priority":4},{"item":"minecraft:leather_leggings","want_amount":1,"surplus_amount":1,"priority":5},{"item":"minecraft:netherite_boots","want_amount":1,"surplus_amount":1,"priority":0},{"item":"minecraft:diamond_boots","want_amount":1,"surplus_amount":1,"priority":1},{"item":"minecraft:iron_boots","want_amount":1,"surplus_amount":1,"priority":2},{"item":"minecraft:chainmail_boots","want_amount":1,"surplus_amount":1,"priority":3},{"item":"minecraft:golden_boots","want_amount":1,"surplus_amount":1,"priority":4},{"item":"minecraft:leather_boots","want_amount":1,"surplus_amount":1,"priority":5}]},"minecraft:behavior.hurt_by_target":{"priority":1},"minecraft:behavior.mount_pathing":{"priority":2,"speed_multiplier":1.25,"target_dist":0,"track_target":true},"minecraft:behavior.equip_item":{"priority":3},"minecraft:behavior.melee_attack":{"priority":4,"speed_multiplier":1.5},"minecraft:behavior.stomp_turtle_egg":{"priority":5,"speed_multiplier":1,"search_range":10,"search_height":2,"goal_radius":1.14,"interval":20},"minecraft:behavior.pickup_items":{"priority":6,"max_dist":3,"goal_radius":2,"speed_multiplier":1,"pickup_based_on_chance":true,"can_pickup_any_item":true},"minecraft:behavior.random_stroll":{"priority":7,"speed_multiplier":1},"minecraft:behavior.look_at_player":{"priority":8,"look_distance":6,"probability":0.02},"minecraft:behavior.random_look_around":{"priority":9},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:conditional_bandwidth_optimization":{}},"events":{"minecraft:entity_transformed":{"sequence":[{"filters":{"test":"has_component","subject":"other","value":"minecraft:is_baby"},"add":{"component_groups":["minecraft:pig_zombie_baby","minecraft:pig_zombie_calm"]}},{"filters":{"test":"has_component","subject":"other","operator":"!=","value":"minecraft:is_baby"},"add":{"component_groups":["minecraft:pig_zombie_adult","minecraft:pig_zombie_calm"]}}]},"minecraft:entity_spawned":{"randomize":[{"weight":95,"remove":{},"add":{"component_groups":["minecraft:pig_zombie_adult","minecraft:pig_zombie_calm"]}},{"weight":5,"remove":{},"add":{"component_groups":["minecraft:pig_zombie_baby","minecraft:pig_zombie_calm"]}}]},"minecraft:on_calm":{"remove":{"component_groups":["minecraft:pig_zombie_angry"]},"add":{"component_groups":["minecraft:pig_zombie_calm"]}},"minecraft:become_angry":{"remove":{"component_groups":["minecraft:pig_zombie_calm"]},"add":{"component_groups":["minecraft:pig_zombie_angry"]}},"minecraft:spawn_as_strider_jockey":{"add":{"component_groups":["minecraft:strider_jockey"]}}}}},"minecraft:zombie_villager":{"format_version":"1.17.20","minecraft:entity":{"description":{"identifier":"minecraft:zombie_villager","is_spawnable":true,"is_summonable":true,"is_experimental":false},"component_groups":{"become_zombie_villager_v2":{"minecraft:transformation":{"into":"minecraft:zombie_villager_v2","keep_level":false}},"baby":{"minecraft:experience_reward":{"on_death":"query.last_hit_by_player ? 12 + (query.equipment_count * Math.Random(1,3)) : 0"},"minecraft:is_baby":{},"minecraft:scale":{"value":0.5},"minecraft:movement":{"value":0.35}},"adult":{"minecraft:experience_reward":{"on_death":"query.last_hit_by_player ? 5 + (query.equipment_count * Math.Random(1,3)) : 0"},"minecraft:movement":{"value":0.23},"minecraft:rideable":{"seat_count":1,"family_types":["zombie"],"seats":{"position":[0,1.1,-0.35]}},"minecraft:behavior.mount_pathing":{"priority":5,"speed_multiplier":1.25,"target_dist":0,"track_target":true}},"jockey":{"minecraft:behavior.find_mount":{"priority":1,"within_radius":16}},"can_break_doors":{"minecraft:annotation.break_door":{}},"from_abandoned_village":{"minecraft:navigation.walk":{"is_amphibious":true,"can_pass_doors":true,"can_open_doors":true,"avoid_water":true,"avoid_sun":true},"minecraft:behavior.flee_sun":{"priority":4,"speed_multiplier":1}},"to_villager":{"minecraft:transformation":{"into":"minecraft:villager","begin_transform_sound":"remedy","transformation_sound":"unfect","delay":{"value":100,"block_assist_chance":0.01,"block_radius":4,"block_chance":0.3,"block_types":["minecraft:bed","minecraft:iron_bars"]}},"minecraft:spell_effects":{"add_effects":[{"effect":"strength","duration":100},{"effect":"heal","duration":100}],"remove_effects":"weakness"},"minecraft:is_shaking":{}},"farmer":{"minecraft:type_family":{"family":["farmer","zombie","zombie_villager","undead","monster","mob"]},"minecraft:variant":{"value":0}},"fisherman":{"minecraft:type_family":{"family":["fisherman","zombie_villager","zombie","undead","monster","mob"]},"minecraft:variant":{"value":0}},"shepherd":{"minecraft:type_family":{"family":["shepherd","zombie_villager","zombie","undead","monster","mob"]},"minecraft:variant":{"value":0}},"fletcher":{"minecraft:type_family":{"family":["fletcher","zombie_villager","zombie","undead","monster","mob"]},"minecraft:variant":{"value":0}},"librarian":{"minecraft:type_family":{"family":["librarian","zombie_villager","zombie","undead","monster","mob"]},"minecraft:variant":{"value":1}},"cartographer":{"minecraft:type_family":{"family":["cartographer","zombie_villager","zombie","undead","monster","mob"]},"minecraft:variant":{"value":1}},"cleric":{"minecraft:type_family":{"family":["cleric","zombie_villager","zombie","undead","monster","mob"]},"minecraft:variant":{"value":2}},"armorer":{"minecraft:type_family":{"family":["armorer","zombie_villager","zombie","undead","monster","mob"]},"minecraft:variant":{"value":3}},"weaponsmith":{"minecraft:type_family":{"family":["weaponsmith","zombie_villager","zombie","undead","monster","mob"]},"minecraft:variant":{"value":3}},"toolsmith":{"minecraft:type_family":{"family":["toolsmith","zombie_villager","zombie","undead","monster","mob"]},"minecraft:variant":{"value":3}},"butcher":{"minecraft:type_family":{"family":["butcher","zombie_villager","zombie","undead","monster","mob"]},"minecraft:variant":{"value":4}},"leatherworker":{"minecraft:type_family":{"family":["leatherworker","zombie_villager","zombie","undead","monster","mob"]},"minecraft:variant":{"value":4}}},"components":{"minecraft:is_hidden_when_invisible":{},"minecraft:navigation.walk":{"is_amphibious":true,"can_pass_doors":true,"can_break_doors":true,"avoid_sun":false},"minecraft:movement.basic":{},"minecraft:jump.static":{},"minecraft:can_climb":{},"minecraft:breathable":{"total_supply":15,"suffocate_time":0,"breathes_water":true},"minecraft:loot":{"table":"loot_tables/entities/zombie.json"},"minecraft:equip_item":{},"minecraft:collision_box":{"width":0.6,"height":1.9},"minecraft:burns_in_daylight":{},"minecraft:health":{"value":20,"max":20},"minecraft:hurt_on_condition":{"damage_conditions":[{"filters":{"test":"in_lava","subject":"self","operator":"==","value":true},"cause":"lava","damage_per_tick":4}]},"minecraft:attack":{"damage":3},"minecraft:nameable":{},"minecraft:shareables":{"items":[{"item":"minecraft:netherite_sword","want_amount":1,"surplus_amount":1,"priority":0},{"item":"minecraft:diamond_sword","want_amount":1,"surplus_amount":1,"priority":1},{"item":"minecraft:iron_sword","want_amount":1,"surplus_amount":1,"priority":2},{"item":"minecraft:stone_sword","want_amount":1,"surplus_amount":1,"priority":3},{"item":"minecraft:golden_sword","want_amount":1,"surplus_amount":1,"priority":4},{"item":"minecraft:wooden_sword","want_amount":1,"surplus_amount":1,"priority":5},{"item":"minecraft:netherite_helmet","want_amount":1,"surplus_amount":1,"priority":0},{"item":"minecraft:diamond_helmet","want_amount":1,"surplus_amount":1,"priority":1},{"item":"minecraft:iron_helmet","want_amount":1,"surplus_amount":1,"priority":2},{"item":"minecraft:chainmail_helmet","want_amount":1,"surplus_amount":1,"priority":3},{"item":"minecraft:golden_helmet","want_amount":1,"surplus_amount":1,"priority":4},{"item":"minecraft:leather_helmet","want_amount":1,"surplus_amount":1,"priority":5},{"item":"minecraft:turtle_helmet","want_amount":1,"surplus_amount":1,"priority":6},{"item":"minecraft:skull:0","want_amount":1,"surplus_amount":1,"priority":7},{"item":"minecraft:skull:1","want_amount":1,"surplus_amount":1,"priority":7},{"item":"minecraft:carved_pumpkin","want_amount":1,"surplus_amount":1,"priority":7},{"item":"minecraft:netherite_chestplate","want_amount":1,"surplus_amount":1,"priority":0},{"item":"minecraft:diamond_chestplate","want_amount":1,"surplus_amount":1,"priority":1},{"item":"minecraft:iron_chestplate","want_amount":1,"surplus_amount":1,"priority":2},{"item":"minecraft:chainmail_chestplate","want_amount":1,"surplus_amount":1,"priority":3},{"item":"minecraft:golden_chestplate","want_amount":1,"surplus_amount":1,"priority":4},{"item":"minecraft:leather_chestplate","want_amount":1,"surplus_amount":1,"priority":5},{"item":"minecraft:netherite_leggings","want_amount":1,"surplus_amount":1,"priority":0},{"item":"minecraft:diamond_leggings","want_amount":1,"surplus_amount":1,"priority":1},{"item":"minecraft:iron_leggings","want_amount":1,"surplus_amount":1,"priority":2},{"item":"minecraft:chainmail_leggings","want_amount":1,"surplus_amount":1,"priority":3},{"item":"minecraft:golden_leggings","want_amount":1,"surplus_amount":1,"priority":4},{"item":"minecraft:leather_leggings","want_amount":1,"surplus_amount":1,"priority":5},{"item":"minecraft:netherite_boots","want_amount":1,"surplus_amount":1,"priority":0},{"item":"minecraft:diamond_boots","want_amount":1,"surplus_amount":1,"priority":1},{"item":"minecraft:iron_boots","want_amount":1,"surplus_amount":1,"priority":2},{"item":"minecraft:chainmail_boots","want_amount":1,"surplus_amount":1,"priority":3},{"item":"minecraft:golden_boots","want_amount":1,"surplus_amount":1,"priority":4},{"item":"minecraft:leather_boots","want_amount":1,"surplus_amount":1,"priority":5}]},"minecraft:interact":{"interactions":{"on_interact":{"filters":{"all_of":[{"test":"has_equipment","domain":"hand","subject":"other","value":"golden_apple"},{"test":"has_component","subject":"self","value":"minecraft:effect.weakness"}]},"event":"villager_converted","target":"self"},"use_item":true,"interact_text":"action.interact.cure"}},"minecraft:despawn":{"despawn_from_distance":{}},"minecraft:behavior.melee_attack":{"priority":6},"minecraft:behavior.equip_item":{"priority":3},"minecraft:behavior.stomp_turtle_egg":{"priority":4,"speed_multiplier":1,"search_range":10,"search_height":2,"goal_radius":1.14,"interval":20},"minecraft:behavior.pickup_items":{"priority":8,"max_dist":3,"goal_radius":2,"speed_multiplier":1,"pickup_based_on_chance":true,"can_pickup_any_item":true,"excluded_items":["minecraft:glow_ink_sac"]},"minecraft:behavior.random_stroll":{"priority":9,"speed_multiplier":1},"minecraft:behavior.look_at_player":{"priority":10,"look_distance":6,"probability":0.02},"minecraft:behavior.random_look_around":{"priority":11},"minecraft:behavior.hurt_by_target":{"priority":1},"minecraft:behavior.nearest_attackable_target":{"priority":2,"must_see":true,"reselect_targets":true,"entity_types":[{"filters":{"any_of":[{"test":"is_family","subject":"other","value":"player"},{"test":"is_family","subject":"other","value":"snowgolem"},{"test":"is_family","subject":"other","value":"irongolem"}]},"max_dist":35},{"filters":{"any_of":[{"test":"is_family","subject":"other","value":"villager"},{"test":"is_family","subject":"other","value":"wandering_trader"}]},"max_dist":35,"must_see":false},{"filters":{"all_of":[{"test":"is_family","subject":"other","value":"baby_turtle"},{"test":"in_water","subject":"other","operator":"!=","value":true}]},"max_dist":35}]},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true},"minecraft:conditional_bandwidth_optimization":{}},"events":{"villager_converted":{"remove":{},"add":{"component_groups":["to_villager"]}},"minecraft:entity_spawned":{"sequence":[{"filters":{"test":"has_component","operator":"!=","value":"minecraft:variant"},"randomize":[{"weight":9500,"remove":{},"add":{"component_groups":["adult"]}},{"weight":425,"remove":{},"add":{"component_groups":["baby"]}},{"weight":75,"remove":{},"add":{"component_groups":["baby","jockey"]}}]},{"filters":{"test":"has_component","operator":"!=","value":"minecraft:variant"},"randomize":[{"weight":5,"add":{"component_groups":["farmer"]}},{"weight":5,"add":{"component_groups":["fisherman"]}},{"weight":5,"add":{"component_groups":["shepherd"]}},{"weight":5,"add":{"component_groups":["fletcher"]}},{"weight":20,"add":{"component_groups":["librarian"]}},{"weight":20,"add":{"component_groups":["cartographer"]}},{"weight":20,"add":{"component_groups":["cleric"]}},{"weight":6,"add":{"component_groups":["armorer"]}},{"weight":6,"add":{"component_groups":["weaponsmith"]}},{"weight":6,"add":{"component_groups":["toolsmith"]}},{"weight":10,"add":{"component_groups":["butcher"]}},{"weight":10,"add":{"component_groups":["leatherworker"]}}]},{"randomize":[{"weight":10,"add":{"component_groups":["can_break_doors"]}},{"weight":90}]}]},"minecraft:entity_transformed":{"filters":{"test":"has_component","operator":"!=","value":"minecraft:variant"},"sequence":[{"filters":{"test":"has_component","subject":"other","value":"minecraft:is_baby"},"add":{"component_groups":["baby"]}},{"filters":{"test":"has_component","subject":"other","operator":"!=","value":"minecraft:is_baby"},"add":{"component_groups":["adult"]}},{"filters":{"test":"is_family","subject":"other","value":"farmer"},"add":{"component_groups":["farmer"]}},{"filters":{"test":"is_family","subject":"other","value":"fisherman"},"add":{"component_groups":["fisherman"]}},{"filters":{"test":"is_family","subject":"other","value":"shepherd"},"add":{"component_groups":["shepherd"]}},{"filters":{"test":"is_family","subject":"other","value":"fletcher"},"add":{"component_groups":["fletcher"]}},{"filters":{"test":"is_family","subject":"other","value":"librarian"},"add":{"component_groups":["librarian"]}},{"filters":{"test":"is_family","subject":"other","value":"cartographer"},"add":{"component_groups":["cartographer"]}},{"filters":{"test":"is_family","subject":"other","value":"cleric"},"add":{"component_groups":["cleric"]}},{"filters":{"test":"is_family","subject":"other","value":"armorer"},"add":{"component_groups":["armorer"]}},{"filters":{"test":"is_family","subject":"other","value":"weaponsmith"},"add":{"component_groups":["weaponsmith"]}},{"filters":{"test":"is_family","subject":"other","value":"toolsmith"},"add":{"component_groups":["toolsmith"]}},{"filters":{"test":"is_family","subject":"other","value":"butcher"},"add":{"component_groups":["butcher"]}},{"filters":{"test":"is_family","subject":"other","value":"leatherworker"},"add":{"component_groups":["leatherworker"]}}]},"minecraft:become_cleric":{"add":{"component_groups":["cleric"]}},"from_village":{"sequence":[{"filters":{"test":"has_component","operator":"!=","value":"minecraft:variant"},"randomize":[{"weight":9500,"remove":{},"add":{"component_groups":["adult"]}},{"weight":425,"remove":{},"add":{"component_groups":["baby"]}},{"weight":75,"remove":{},"add":{"component_groups":["baby","jockey"]}}]},{"filters":{"test":"has_component","operator":"!=","value":"minecraft:variant"},"randomize":[{"weight":5,"add":{"component_groups":["farmer"]}},{"weight":5,"add":{"component_groups":["fisherman"]}},{"weight":5,"add":{"component_groups":["shepherd"]}},{"weight":5,"add":{"component_groups":["fletcher"]}},{"weight":20,"add":{"component_groups":["librarian"]}},{"weight":20,"add":{"component_groups":["cartographer"]}},{"weight":20,"add":{"component_groups":["cleric"]}},{"weight":6,"add":{"component_groups":["armorer"]}},{"weight":6,"add":{"component_groups":["weaponsmith"]}},{"weight":6,"add":{"component_groups":["toolsmith"]}},{"weight":10,"add":{"component_groups":["butcher"]}},{"weight":10,"add":{"component_groups":["leatherworker"]}}]},{"add":{"component_groups":["from_abandoned_village"]}}]}}}},"minecraft:zombie_villager_v2":{"format_version":"1.17.20","minecraft:entity":{"description":{"identifier":"minecraft:zombie_villager_v2","is_spawnable":true,"is_summonable":false,"is_experimental":false},"component_groups":{"baby":{"minecraft:experience_reward":{"on_death":"query.last_hit_by_player ? 12 + (query.equipment_count * Math.Random(1,3)) : 0"},"minecraft:is_baby":{},"minecraft:scale":{"value":0.5},"minecraft:movement":{"value":0.35}},"adult":{"minecraft:experience_reward":{"on_death":"query.last_hit_by_player ? 5 + (query.equipment_count * Math.Random(1,3)) : 0"},"minecraft:movement":{"value":0.23},"minecraft:rideable":{"seat_count":1,"family_types":["zombie"],"seats":{"position":[0,1.1,-0.35]}},"minecraft:behavior.mount_pathing":{"priority":5,"speed_multiplier":1.25,"target_dist":0,"track_target":true}},"jockey":{"minecraft:behavior.find_mount":{"priority":1,"within_radius":16}},"can_break_doors":{"minecraft:annotation.break_door":{}},"from_abandoned_village":{"minecraft:navigation.walk":{"is_amphibious":true,"can_pass_doors":true,"can_open_doors":true,"avoid_water":true,"avoid_sun":true},"minecraft:behavior.flee_sun":{"priority":4,"speed_multiplier":1}},"to_villager":{"minecraft:transformation":{"into":"minecraft:villager_v2","begin_transform_sound":"remedy","transformation_sound":"unfect","keep_level":true,"delay":{"value":100,"block_assist_chance":0.01,"block_radius":4,"block_chance":0.3,"block_types":["minecraft:bed","minecraft:iron_bars"]}},"minecraft:spell_effects":{"add_effects":[{"effect":"strength","duration":100},{"effect":"heal","duration":100}],"remove_effects":"weakness"},"minecraft:is_shaking":{}},"unskilled":{"minecraft:type_family":{"family":["unskilled","zombie","zombie_villager","undead","monster","mob"]},"minecraft:variant":{"value":0}},"nitwit":{"minecraft:type_family":{"family":["nitwit","zombie","zombie_villager","undead","monster","mob"]},"minecraft:variant":{"value":0}},"farmer":{"minecraft:type_family":{"family":["farmer","zombie","zombie_villager","undead","monster","mob"]},"minecraft:variant":{"value":0}},"fisherman":{"minecraft:type_family":{"family":["fisherman","zombie_villager","zombie","undead","monster","mob"]},"minecraft:variant":{"value":0}},"shepherd":{"minecraft:type_family":{"family":["shepherd","zombie_villager","zombie","undead","monster","mob"]},"minecraft:variant":{"value":0}},"fletcher":{"minecraft:type_family":{"family":["fletcher","zombie_villager","zombie","undead","monster","mob"]},"minecraft:variant":{"value":0}},"librarian":{"minecraft:type_family":{"family":["librarian","zombie_villager","zombie","undead","monster","mob"]},"minecraft:variant":{"value":0}},"cartographer":{"minecraft:type_family":{"family":["cartographer","zombie_villager","zombie","undead","monster","mob"]},"minecraft:variant":{"value":0}},"cleric":{"minecraft:type_family":{"family":["cleric","zombie_villager","zombie","undead","monster","mob"]},"minecraft:variant":{"value":0}},"armorer":{"minecraft:type_family":{"family":["armorer","zombie_villager","zombie","undead","monster","mob"]},"minecraft:variant":{"value":0}},"weaponsmith":{"minecraft:type_family":{"family":["weaponsmith","zombie_villager","zombie","undead","monster","mob"]},"minecraft:variant":{"value":0}},"toolsmith":{"minecraft:type_family":{"family":["toolsmith","zombie_villager","zombie","undead","monster","mob"]},"minecraft:variant":{"value":0}},"butcher":{"minecraft:type_family":{"family":["butcher","zombie_villager","zombie","undead","monster","mob"]},"minecraft:variant":{"value":0}},"leatherworker":{"minecraft:type_family":{"family":["leatherworker","zombie_villager","zombie","undead","monster","mob"]},"minecraft:variant":{"value":0}},"mason":{"minecraft:type_family":{"family":["stone_mason","zombie_villager","zombie","undead","monster","mob"]},"minecraft:variant":{"value":0}},"desert_villager":{"minecraft:mark_variant":{"value":1}},"jungle_villager":{"minecraft:mark_variant":{"value":2}},"savanna_villager":{"minecraft:mark_variant":{"value":3}},"snow_villager":{"minecraft:mark_variant":{"value":4}},"swamp_villager":{"minecraft:mark_variant":{"value":5}},"taiga_villager":{"minecraft:mark_variant":{"value":6}},"villager_skin_0":{"minecraft:skin_id":{"value":0}},"villager_skin_1":{"minecraft:skin_id":{"value":1}},"villager_skin_2":{"minecraft:skin_id":{"value":2}},"villager_skin_3":{"minecraft:skin_id":{"value":3}},"villager_skin_4":{"minecraft:skin_id":{"value":4}},"villager_skin_5":{"minecraft:skin_id":{"value":5}}},"components":{"minecraft:is_hidden_when_invisible":{},"minecraft:navigation.walk":{"is_amphibious":true,"can_pass_doors":true,"can_break_doors":true,"avoid_sun":false},"minecraft:movement.basic":{},"minecraft:jump.static":{},"minecraft:can_climb":{},"minecraft:breathable":{"total_supply":15,"suffocate_time":0,"breathes_water":true},"minecraft:loot":{"table":"loot_tables/entities/zombie.json"},"minecraft:equip_item":{},"minecraft:conditional_bandwidth_optimization":{},"minecraft:collision_box":{"width":0.6,"height":1.9},"minecraft:burns_in_daylight":{},"minecraft:health":{"value":20,"max":20},"minecraft:hurt_on_condition":{"damage_conditions":[{"filters":{"test":"in_lava","subject":"self","operator":"==","value":true},"cause":"lava","damage_per_tick":4}]},"minecraft:attack":{"damage":3},"minecraft:nameable":{},"minecraft:shareables":{"items":[{"item":"minecraft:netherite_sword","want_amount":1,"surplus_amount":1,"priority":0},{"item":"minecraft:diamond_sword","want_amount":1,"surplus_amount":1,"priority":1},{"item":"minecraft:iron_sword","want_amount":1,"surplus_amount":1,"priority":2},{"item":"minecraft:stone_sword","want_amount":1,"surplus_amount":1,"priority":3},{"item":"minecraft:golden_sword","want_amount":1,"surplus_amount":1,"priority":4},{"item":"minecraft:wooden_sword","want_amount":1,"surplus_amount":1,"priority":5},{"item":"minecraft:netherite_helmet","want_amount":1,"surplus_amount":1,"priority":0},{"item":"minecraft:diamond_helmet","want_amount":1,"surplus_amount":1,"priority":1},{"item":"minecraft:iron_helmet","want_amount":1,"surplus_amount":1,"priority":2},{"item":"minecraft:chainmail_helmet","want_amount":1,"surplus_amount":1,"priority":3},{"item":"minecraft:golden_helmet","want_amount":1,"surplus_amount":1,"priority":4},{"item":"minecraft:leather_helmet","want_amount":1,"surplus_amount":1,"priority":5},{"item":"minecraft:turtle_helmet","want_amount":1,"surplus_amount":1,"priority":6},{"item":"minecraft:skull:0","want_amount":1,"surplus_amount":1,"priority":7},{"item":"minecraft:skull:1","want_amount":1,"surplus_amount":1,"priority":7},{"item":"minecraft:carved_pumpkin","want_amount":1,"surplus_amount":1,"priority":7},{"item":"minecraft:netherite_chestplate","want_amount":1,"surplus_amount":1,"priority":0},{"item":"minecraft:diamond_chestplate","want_amount":1,"surplus_amount":1,"priority":1},{"item":"minecraft:iron_chestplate","want_amount":1,"surplus_amount":1,"priority":2},{"item":"minecraft:chainmail_chestplate","want_amount":1,"surplus_amount":1,"priority":3},{"item":"minecraft:golden_chestplate","want_amount":1,"surplus_amount":1,"priority":4},{"item":"minecraft:leather_chestplate","want_amount":1,"surplus_amount":1,"priority":5},{"item":"minecraft:netherite_leggings","want_amount":1,"surplus_amount":1,"priority":0},{"item":"minecraft:diamond_leggings","want_amount":1,"surplus_amount":1,"priority":1},{"item":"minecraft:iron_leggings","want_amount":1,"surplus_amount":1,"priority":2},{"item":"minecraft:chainmail_leggings","want_amount":1,"surplus_amount":1,"priority":3},{"item":"minecraft:golden_leggings","want_amount":1,"surplus_amount":1,"priority":4},{"item":"minecraft:leather_leggings","want_amount":1,"surplus_amount":1,"priority":5},{"item":"minecraft:netherite_boots","want_amount":1,"surplus_amount":1,"priority":0},{"item":"minecraft:diamond_boots","want_amount":1,"surplus_amount":1,"priority":1},{"item":"minecraft:iron_boots","want_amount":1,"surplus_amount":1,"priority":2},{"item":"minecraft:chainmail_boots","want_amount":1,"surplus_amount":1,"priority":3},{"item":"minecraft:golden_boots","want_amount":1,"surplus_amount":1,"priority":4},{"item":"minecraft:leather_boots","want_amount":1,"surplus_amount":1,"priority":5}]},"minecraft:interact":{"interactions":{"on_interact":{"filters":{"all_of":[{"test":"has_equipment","domain":"hand","subject":"other","value":"golden_apple"},{"test":"has_component","subject":"self","value":"minecraft:effect.weakness"}]},"event":"villager_converted","target":"self"},"use_item":true,"interact_text":"action.interact.cure"}},"minecraft:despawn":{"despawn_from_distance":{}},"minecraft:behavior.melee_attack":{"priority":6},"minecraft:behavior.equip_item":{"priority":3},"minecraft:behavior.stomp_turtle_egg":{"priority":4,"speed_multiplier":1,"search_range":10,"search_height":2,"goal_radius":1.14,"interval":20},"minecraft:behavior.pickup_items":{"priority":8,"max_dist":3,"goal_radius":2,"speed_multiplier":1,"pickup_based_on_chance":true,"can_pickup_any_item":true,"excluded_items":["minecraft:glow_ink_sac"]},"minecraft:behavior.random_stroll":{"priority":9,"speed_multiplier":1},"minecraft:behavior.look_at_player":{"priority":10,"look_distance":6,"probability":0.02},"minecraft:behavior.random_look_around":{"priority":11},"minecraft:behavior.hurt_by_target":{"priority":1},"minecraft:behavior.nearest_attackable_target":{"priority":2,"must_see":true,"reselect_targets":true,"entity_types":[{"filters":{"any_of":[{"test":"is_family","subject":"other","value":"player"},{"test":"is_family","subject":"other","value":"snowgolem"},{"test":"is_family","subject":"other","value":"irongolem"},{"test":"is_family","subject":"other","value":"villager"},{"test":"is_family","subject":"other","value":"wandering_trader"}]},"max_dist":35},{"filters":{"all_of":[{"test":"is_family","subject":"other","value":"baby_turtle"},{"test":"in_water","subject":"other","operator":"!=","value":true}]},"max_dist":35}]},"minecraft:physics":{},"minecraft:pushable":{"is_pushable":true,"is_pushable_by_piston":true}},"events":{"villager_converted":{"remove":{},"add":{"component_groups":["to_villager"]}},"minecraft:entity_spawned":{"sequence":[{"filters":{"test":"has_component","operator":"!=","value":"minecraft:variant"},"randomize":[{"weight":9500,"remove":{},"add":{"component_groups":["adult"]}},{"weight":425,"remove":{},"add":{"component_groups":["baby"]}},{"weight":75,"remove":{},"add":{"component_groups":["baby","jockey"]}}]},{"filters":{"test":"has_component","operator":"!=","value":"minecraft:variant"},"randomize":[{"weight":1,"add":{"component_groups":["unskilled"]}},{"weight":1,"add":{"component_groups":["nitwit"]}},{"weight":1,"add":{"component_groups":["farmer"]}},{"weight":1,"add":{"component_groups":["fisherman"]}},{"weight":1,"add":{"component_groups":["shepherd"]}},{"weight":1,"add":{"component_groups":["fletcher"]}},{"weight":1,"add":{"component_groups":["librarian"]}},{"weight":1,"add":{"component_groups":["cartographer"]}},{"weight":1,"add":{"component_groups":["cleric"]}},{"weight":1,"add":{"component_groups":["armorer"]}},{"weight":1,"add":{"component_groups":["weaponsmith"]}},{"weight":1,"add":{"component_groups":["toolsmith"]}},{"weight":1,"add":{"component_groups":["butcher"]}},{"weight":1,"add":{"component_groups":["leatherworker"]}},{"weight":1,"add":{"component_groups":["mason"]}}]},{"trigger":"minecraft:add_biome_and_skin"},{"randomize":[{"weight":10,"add":{"component_groups":["can_break_doors"]}},{"weight":90}]}]},"minecraft:spawn_skilled_adult":{"sequence":[{"filters":{"test":"has_component","operator":"!=","value":"minecraft:variant"},"add":{"component_groups":["adult"]}},{"filters":{"test":"has_component","operator":"!=","value":"minecraft:variant"},"randomize":[{"weight":1,"add":{"component_groups":["farmer"]}},{"weight":1,"add":{"component_groups":["fisherman"]}},{"weight":1,"add":{"component_groups":["shepherd"]}},{"weight":1,"add":{"component_groups":["fletcher"]}},{"weight":1,"add":{"component_groups":["librarian"]}},{"weight":1,"add":{"component_groups":["cartographer"]}},{"weight":1,"add":{"component_groups":["cleric"]}},{"weight":1,"add":{"component_groups":["armorer"]}},{"weight":1,"add":{"component_groups":["weaponsmith"]}},{"weight":1,"add":{"component_groups":["toolsmith"]}},{"weight":1,"add":{"component_groups":["butcher"]}},{"weight":1,"add":{"component_groups":["leatherworker"]}},{"weight":1,"add":{"component_groups":["mason"]}}]},{"trigger":"minecraft:add_biome_and_skin"}]},"minecraft:entity_transformed":{"sequence":[{"filters":{"test":"has_component","operator":"!=","value":"minecraft:variant"},"sequence":[{"filters":{"test":"has_component","subject":"other","value":"minecraft:is_baby"},"add":{"component_groups":["baby"]}},{"filters":{"test":"has_component","subject":"other","operator":"!=","value":"minecraft:is_baby"},"add":{"component_groups":["adult"]}},{"filters":{"test":"is_family","subject":"other","value":"unskilled"},"add":{"component_groups":["unskilled"]}},{"filters":{"test":"is_family","subject":"other","value":"nitwit"},"add":{"component_groups":["nitwit"]}},{"filters":{"test":"is_family","subject":"other","value":"farmer"},"add":{"component_groups":["farmer"]}},{"filters":{"test":"is_family","subject":"other","value":"fisherman"},"add":{"component_groups":["fisherman"]}},{"filters":{"test":"is_family","subject":"other","value":"shepherd"},"add":{"component_groups":["shepherd"]}},{"filters":{"test":"is_family","subject":"other","value":"fletcher"},"add":{"component_groups":["fletcher"]}},{"filters":{"test":"is_family","subject":"other","value":"librarian"},"add":{"component_groups":["librarian"]}},{"filters":{"test":"is_family","subject":"other","value":"cartographer"},"add":{"component_groups":["cartographer"]}},{"filters":{"test":"is_family","subject":"other","value":"cleric"},"add":{"component_groups":["cleric"]}},{"filters":{"test":"is_family","subject":"other","value":"armorer"},"add":{"component_groups":["armorer"]}},{"filters":{"test":"is_family","subject":"other","value":"weaponsmith"},"add":{"component_groups":["weaponsmith"]}},{"filters":{"test":"is_family","subject":"other","value":"toolsmith"},"add":{"component_groups":["toolsmith"]}},{"filters":{"test":"is_family","subject":"other","value":"butcher"},"add":{"component_groups":["butcher"]}},{"filters":{"test":"is_family","subject":"other","value":"leatherworker"},"add":{"component_groups":["leatherworker"]}},{"filters":{"test":"is_family","subject":"other","value":"stone_mason"},"add":{"component_groups":["mason"]}}]},{"filters":{"test":"has_component","operator":"!=","value":"minecraft:mark_variant"},"sequence":[{"filters":{"test":"is_mark_variant","subject":"other","value":1},"add":{"component_groups":["desert_villager"]}},{"filters":{"test":"is_mark_variant","subject":"other","value":2},"add":{"component_groups":["jungle_villager"]}},{"filters":{"test":"is_mark_variant","subject":"other","value":3},"add":{"component_groups":["savanna_villager"]}},{"filters":{"test":"is_mark_variant","subject":"other","value":4},"add":{"component_groups":["snow_villager"]}},{"filters":{"test":"is_mark_variant","subject":"other","value":5},"add":{"component_groups":["swamp_villager"]}},{"filters":{"test":"is_mark_variant","subject":"other","value":6},"add":{"component_groups":["taiga_villager"]}}]},{"filters":{"test":"has_component","operator":"!=","value":"minecraft:skin_id"},"sequence":[{"filters":{"test":"is_skin_id","subject":"other","value":0},"add":{"component_groups":["villager_skin_0"]}},{"filters":{"test":"is_skin_id","subject":"other","value":1},"add":{"component_groups":["villager_skin_1"]}},{"filters":{"test":"is_skin_id","subject":"other","value":2},"add":{"component_groups":["villager_skin_2"]}},{"filters":{"test":"is_skin_id","subject":"other","value":3},"add":{"component_groups":["villager_skin_3"]}},{"filters":{"test":"is_skin_id","subject":"other","value":4},"add":{"component_groups":["villager_skin_4"]}},{"filters":{"test":"is_skin_id","subject":"other","value":5},"add":{"component_groups":["villager_skin_5"]}}]}]},"minecraft:become_cleric":{"add":{"component_groups":["cleric"]}},"from_village":{"sequence":[{"trigger":"minecraft:entity_spawned"},{"add":{"component_groups":["from_abandoned_village"]}}]},"minecraft:add_biome_and_skin":{"sequence":[{"randomize":[{"weight":1,"add":{"component_groups":["villager_skin_0"]}},{"weight":1,"add":{"component_groups":["villager_skin_1"]}},{"weight":1,"add":{"component_groups":["villager_skin_2"]}},{"weight":1,"add":{"component_groups":["villager_skin_3"]}},{"weight":1,"add":{"component_groups":["villager_skin_4"]}},{"weight":1,"add":{"component_groups":["villager_skin_5"]}}]},{"filters":{"any_of":[{"test":"has_biome_tag","value":"desert"},{"test":"has_biome_tag","value":"mesa"}]},"add":{"component_groups":["desert_villager"]}},{"filters":{"test":"has_biome_tag","value":"jungle"},"add":{"component_groups":["jungle_villager"]}},{"filters":{"test":"has_biome_tag","value":"savanna"},"add":{"component_groups":["savanna_villager"]}},{"filters":{"any_of":[{"all_of":[{"test":"has_biome_tag","value":"cold"},{"test":"has_biome_tag","operator":"!=","value":"ocean"}]},{"test":"has_biome_tag","value":"frozen"}]},"add":{"component_groups":["snow_villager"]}},{"filters":{"test":"has_biome_tag","value":"swamp"},"add":{"component_groups":["swamp_villager"]}},{"filters":{"all_of":[{"any_of":[{"test":"has_biome_tag","value":"taiga"},{"test":"has_biome_tag","value":"extreme_hills"}]},{"test":"has_biome_tag","operator":"!=","value":"cold"}]},"add":{"component_groups":["taiga_villager"]}}]}}}}}