Advertisement
TheBeastGamer25

Untitled

Oct 27th, 2016
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.02 KB | None | 0 0
  1. {
  2. "minecraft:entity": {
  3. "format_version": 0.1,
  4.  
  5. "component_groups": {
  6. "minecraft:chicken_baby": {
  7. "minecraft:is_baby": {
  8. },
  9. "minecraft:scale": {
  10. "value":17
  11. },
  12. "minecraft:ageable": {
  13. "duration": 1200,
  14. "feedItems": [
  15. "wheat_seeds",
  16. "beetroot_seeds",
  17. "melon_seeds",
  18. "pumpkin_seeds"
  19. ],
  20. "grow_up": {
  21. "event": "minecraft:ageable_grow_up",
  22. "target": "self"
  23. }
  24. },
  25. "minecraft:behavior.follow_parent": {
  26. "priority": 5,
  27. "speed_multiplier": 1.1
  28. }
  29. },
  30.  
  31. "minecraft:chicken_adult": {
  32. "minecraft:loot": {
  33. "table": "loot_tables/entities/chicken.json"
  34. },
  35. "minecraft:breedable": {
  36. "requireTame": false,
  37. "breedsWith": {
  38. "mateType": "minecraft:chicken",
  39. "babyType": "minecraft:chicken",
  40. "breed_event": {
  41. "event": "minecraft:entity_born",
  42. "target": "baby"
  43. }
  44. },
  45. "breedItems": [
  46. "wheat_seeds",
  47. "beetroot_seeds",
  48. "melon_seeds",
  49. "pumpkin_seeds"
  50. ]
  51. },
  52. "minecraft:behavior.breed": {
  53. "priority": 3,
  54. "speed_multiplier": 1.0
  55. },
  56. "minecraft:rideable": {
  57. "seat_count": 1,
  58. "family_types": [
  59. "zombie"
  60. ],
  61. "seats": {
  62. "position": [0.0, 0.4, 0.0]
  63. }
  64. }
  65. },
  66.  
  67. "minecraft:chicken_leashed": {
  68. "minecraft:behavior.move_towards_restriction": {
  69. "priority": 2,
  70. "speed_multiplier": 1.0
  71. }
  72. }
  73. },
  74.  
  75. "components": {
  76. "minecraft:identifier": {
  77. "id": "minecraft:chicken"
  78. },
  79. "minecraft:type_family": {
  80. "family": [ "chicken" ]
  81. },
  82. "minecraft:collision_box": {
  83. "width": 0.6,
  84. "height": 0.8
  85. },
  86. "minecraft:nameable": {
  87. },
  88. "minecraft:health": {
  89. "value": 4,
  90. "max": 4
  91. },
  92. "minecraft:movement": {
  93. "value": 0.25
  94. },
  95. "minecraft:fall_damage": {
  96. "value": 0.0
  97. },
  98. "minecraft:leashable": {
  99. "soft_distance": 4.0,
  100. "hard_distance": 6.0,
  101. "max_distance": 10.0,
  102. "on_leash": {
  103. "event": "minecraft:on_leash",
  104. "target": "self"
  105. },
  106. "on_unleash": {
  107. "event": "minecraft:on_unleash",
  108. "target": "self"
  109. }
  110. },
  111. "minecraft:behavior.float": {
  112. "priority": 0
  113. },
  114. "minecraft:behavior.panic": {
  115. "priority": 1,
  116. "speed_multiplier": 1.5
  117. },
  118. "minecraft:behavior.mount_pathing": {
  119. "priority": 2,
  120. "speed_multiplier": 1.0,
  121. "target_dist": 0.0,
  122. "track_target": true
  123. },
  124. "minecraft:behavior.tempt": {
  125. "priority": 4,
  126. "speed_multiplier": 1.0,
  127. "items": [
  128. "wheat_seeds",
  129. "beetroot_seeds",
  130. "melon_seeds",
  131. "pumpkin_seeds"
  132. ]
  133. },
  134. "minecraft:behavior.random_stroll": {
  135. "priority": 6,
  136. "speed_multiplier": 1.0
  137. },
  138. "minecraft:behavior.look_at_player": {
  139. "priority": 7,
  140. "look_distance": 6.0,
  141. "probability": 0.02
  142. },
  143. "minecraft:behavior.random_look_around": {
  144. "priority": 8
  145. }
  146. },
  147.  
  148. "events": {
  149. "from_egg": {
  150. "add": { "component_groups": [ "minecraft:chicken_baby" ] }
  151. },
  152.  
  153. "minecraft:entity_spawned": {
  154. "randomize": [
  155. {
  156. "weight": 95,
  157. "remove": {
  158. },
  159. "add": {
  160. "component_groups": [
  161. "minecraft:chicken_adult"
  162. ]
  163. }
  164. },
  165. {
  166. "weight": 5,
  167. "remove": {
  168. },
  169. "add": {
  170. "component_groups": [
  171. "minecraft:chicken_baby"
  172. ]
  173.  
  174. }
  175. }
  176. ]
  177. },
  178.  
  179. "minecraft:entity_born": {
  180. "remove": {
  181. },
  182. "add": {
  183. "component_groups": [
  184. "minecraft:chicken_baby"
  185. ]
  186. }
  187. },
  188.  
  189. "minecraft:ageable_grow_up": {
  190. "remove": {
  191. "component_groups": [
  192. "minecraft:chicken_baby"
  193. ]
  194. },
  195. "add": {
  196. "component_groups": [
  197. "minecraft:chicken_adult"
  198. ]
  199. }
  200. },
  201.  
  202. "minecraft:on_leash": {
  203. "add": {
  204. "component_groups": [
  205. "minecraft:chicken_leashed"
  206. ]
  207. }
  208. },
  209. "minecraft:on_unleash": {
  210. "remove": {
  211. "component_groups": [
  212. "minecraft:chicken_leashed"
  213. ]
  214. }
  215. }
  216. }
  217. }
  218. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement