Advertisement
Haxore

a

Nov 15th, 2019
246
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.66 KB | None | 0 0
  1. on right click on lime wool:
  2. spawn 1 zombie at block above event-block
  3. set event-block to air
  4. loop all entities in radius 2 of event-block:
  5. if loop-entity is a zombie:
  6. set max health of loop-entity to 750
  7. set health of loop-entity to 750
  8. equip loop-entity with all diamond armor of protection 20 and unbreaking 32767
  9. set loop-entity's held item to iron sword of sharpness 10 and unbreaking 32767
  10. set name of loop-entity to "&b&lMountain Grump"
  11. set the loop-entity's walk speed to 0.50
  12.  
  13. every 5 ticks:
  14. loop all entities:
  15. if name of loop-entity contains "&b&lMountain Grump":
  16. set name of loop-entity to "&b&lMountain Grump &7[%health of loop-entity%/750"
  17. if name of loop-entity contains "&b&lMountain Minion":
  18. set name of loop-entity to "&b&lMountain Minion &7[%health of loop-entity%/170"
  19.  
  20. on damage:
  21. if name of victim contains "&b&lMountain Grump":
  22. if victim's health is below 749:
  23. chance of 3%:
  24. loop all players in radius 10 around victim:
  25. set the loop-player's walk speed to 0
  26. strike lightning effect at the loop-player
  27. damage loop-player by 2
  28. send "&7You have been freezed for 10 seconds by the &b&lMountain Grump" to loop-player
  29. wait 10 seconds
  30. set the loop-player's walk speed to 0.25
  31.  
  32. on damage:
  33. if name of victim contains "&b&lMountain Grump":
  34. if victim's health is below 499:
  35. chance of 5%:
  36. loop 10 times:
  37. spawn falling block of stone or cobblestone or smooth stone or dead fire coral block at block above victim
  38. push last spawned entity upwards at speed 3
  39. wait 3 ticks
  40. push last spawned entity north or northwest or east or southwest or west or south at speed 0.2 or 0.3 or 0.4 or 0.5
  41.  
  42. on damage:
  43. if name of victim contains "&b&lMountain Grump":
  44. if victim's health is below 299:
  45. chance of 1%:
  46. loop all players in radius 5 around victim:
  47. push loop-player backwards at speed 7
  48. apply regeneration 10 to victim for 4 seconds
  49.  
  50. on damage:
  51. if name of victim contains "&b&lMountain Grump":
  52. if victim's health is below 199:
  53. chance of 3%:
  54. loop 3 times:
  55. spawn 1 baby zombie above victim
  56. loop all entities in radius 5 around victim:
  57. if loop-entity is a baby zombie:
  58. equip loop-entity with all iron armor of protection 10 and unbreaking 32767
  59. set loop-entity's held item to stone sword of sharpness 7 and unbreaking 32767
  60. set loop-entity's name to "&b&lMountain Minion"
  61. set loop-entity's max health to 170
  62. set loop-entity's health to 170
  63.  
  64. on block land:
  65. cancel event
  66. create a fake explosion at event-block
  67. loop all players in radius 5 of event-block:
  68. damage loop-player by 5
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement