Guest User

Untitled

a guest
Nov 18th, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.47 KB | None | 0 0
  1. {
  2. "minecraft:entity": {
  3. "format_version": "1.1.0",
  4. "component_groups": {
  5. "minecraft:blaze": {
  6. "minecraft:health": {
  7. "value": 20,
  8. "max": 20
  9. },
  10. "minecraft:can_fly": {
  11. "value": true
  12. },
  13. "minecraft:movement": {
  14. "value": 0.40,
  15. "max": 0.40
  16. },
  17. "minecraft:BioBlaze": {
  18. "minecraft:fire_immune": true,
  19. "minecraft:scale": {
  20. "value": 1.5
  21. },
  22. "minecraft:health": {
  23. "value": 40,
  24. "max": 40
  25. },
  26. "minecraft:loot": {
  27. "table": "gears/loot_lvl1.json"
  28. },
  29. "minecraft:shooter": {
  30. "type": "smallfireball",
  31. "def": "minecraft:small_fireball"
  32. },
  33. "minecraft:behavior.ranged_attack": {
  34. "priority": 3,
  35. "attack_interval_min": 4,
  36. "attack_interval_max": 4,
  37. "attack_radius": 30,
  38. "burst_shots": 15,
  39. "burst_interval": 0.2
  40. }
  41. }
  42.  
  43. },
  44. "components": {
  45. "minecraft:identifier": {
  46. "id": "minecraft:blaze"
  47. },
  48. "minecraft:nameable": {
  49. "default_trigger": {
  50. "event": "minecraft:stop_BioBlaze",
  51. "target": "self"
  52. },
  53. "name_actions": [
  54. {
  55. "name_filter": "BioBlaze",
  56. "on_named": {
  57. "event": "minecraft:start_BioBlaze",
  58. "target": "self"
  59. }
  60. }
  61. ]
  62. },
  63.  
  64.  
  65. "minecraft:loot": {
  66. "table": "loot_tables/entities/blaze.json"
  67. },
  68. "minecraft:collision_box": {
  69. "width": 0.5,
  70. "height": 1.8
  71. },
  72. "minecraft:attack": {
  73. "damage": 6
  74. },
  75. "minecraft:fall_damage": {
  76. "value": 0.0
  77. },
  78. "minecraft:movement": {
  79. "value": 0.23,
  80. "max": 0.23
  81. },
  82. "minecraft:health": {
  83. "value": 20,
  84. "max": 20
  85. },
  86. "minecraft:follow_range": {
  87. "value": 48,
  88. "max": 48
  89. },
  90. "minecraft:hurt_when_wet": {
  91. "value": true
  92. },
  93. "minecraft:fire_immune": true,
  94. "minecraft:nameable": {
  95.  
  96. },
  97. "minecraft:behavior.nearest_attackable_target": {
  98. "priority": 1,
  99. "entity_types": [
  100. {
  101. "filters": { "other_with_families": "player" },
  102. "max_dist": 48
  103. }
  104. ]
  105. },
  106. "minecraft:behavior.melee_attack": {
  107. "priority": 2,
  108. "max_dist": 3,
  109. "speed_multiplier": 1,
  110. "random_stop_interval": 2.0,
  111. "track_target": true
  112. },
  113. "minecraft:shooter": {
  114. "type": "smallfireball",
  115. "def": "minecraft:fireball.small"
  116. },
  117. "minecraft:behavior.ranged_attack": {
  118. "attack_interval_min": 3,
  119. "attack_interval_max": 5,
  120. "charge_charged_trigger": 0.0,
  121. "charge_shoot_trigger": 5.0,
  122. "attack_radius": 16,
  123. "burst_shots": 3,
  124. "burst_interval": 0.3
  125. },
  126. "minecraft:behavior.random_stroll": {
  127. "priority": 3,
  128. "speed_multiplier": 1.0
  129. },
  130. "minecraft:behavior.random_look_around": {
  131. "priority": 4
  132. },
  133. "minecraft:type_family": {
  134. "family": [ "blaze", "monster" ]
  135. }
  136. },
  137.  
  138. "events": {
  139. "minecraft:start_BioBlaze": {
  140. "add": {
  141. "component_groups": [
  142. "minecraft:BioBlaze"
  143. ]
  144. }
  145. },
  146. "minecraft:stop_BioBlaze": {
  147. "remove": {
  148. "component_groups": [
  149. "minecraft:BioBlaze"
  150. ]
  151. }
  152. }
  153. }
  154. }
  155. }
Add Comment
Please, Sign In to add comment