Advertisement
Guest User

Untitled

a guest
Nov 10th, 2019
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.52 KB | None | 0 0
  1. Example Mob:
  2. --------------------------------------------------
  3. WinterCrestBoss:
  4. Mobtype: Stray
  5. Health: 1000
  6. Display: "&3&lWinter&8&lCrest"
  7. Armor: 3
  8. Damage: 15
  9. Options:
  10. AlwaysShowName: true
  11. FollowRange: 64
  12. KnockbackResistance: 0.75
  13. MaxCombatDistance: 25
  14. NoDamageTicks: 5
  15. MovementSpeed: 0.39
  16. PreventItemPickup: true
  17. PreventRandomEquipment: true
  18. PreventOtherDrops: true
  19. BossBar:
  20. Enabled: true
  21. Title: ''
  22. Range: 64
  23. Style: SEGMENTED_12
  24. Color: PINK
  25. Skills:
  26. - skill{s=WinterSRandom} @trigger ~onAttack
  27. - skill{s=WinterRandom} @PIR{r=30} ~onTimer:150
  28. --------------------------------------------------
  29. Example Skills:
  30. --------------------------------------------------
  31. WinterSRandom:
  32. Cooldown: 10
  33. Skills:
  34. - randomskill{s=WinterSwipe,GreatForceStrike}
  35. WinterRandom:
  36. Cooldown: 10
  37. Skills:
  38. - randomskill{s=WinterRain,WinterAxeThrow,WinterSnowball}
  39. WinterRain:
  40. Cooldown: 15
  41. Conditions:
  42. - hastag{tag=casting} false
  43. Skills:
  44. - addtag{tag=casting} @self
  45. - message{m="&7[<mob.name>&7] &3May the heavens raise hell on Earth!"} @PIR{r=40}
  46. - potion{type=SLOW;l=14;d=200} @self
  47. - potion{type=DAMAGE_RESISTANCE;l=9;d=200} @self
  48. - delay 60
  49. - effect:particlering{particle=snowball;a=30;r=4;points=12;repeat=20;repeatInterval=2} @self
  50. - skill{s=WinterRainMeteor;repeat=8;repeatInterval=30} @PIR{r=30;limit=1;sort=RANDOM}
  51. - removetag{tag=casting} @self
  52. WinterRainMeteor:
  53. Skills:
  54. - projectile{onTick=WinterRM-Tick;onHit=WinterRM-Hit;onEnd=WinterRM-End;Interval=1;Type=METEOR;HeightFromSurface=14;Gravity=1.7;Velocity=8;HorizontalRadius=1.5;HorizontalOffset=45;VerticalOffset=45}
  55. WinterRM-Tick:
  56. Skills:
  57. - blockmask{material=packed_ice;r=2;onlyair=true;duration=2;shape=sphere;noair=true} @origin
  58. - effect:particles{p=snowball;hSpread=1.25;vSpread=1.8;a=160} @origin
  59. WinterRM-Hit:
  60. Skills:
  61. >>>> - damage{a=10;preventImmunity=true} <<<<
  62. - potion{type=BLINDNESS;l=9;d=100;force=true}
  63. - potion{type=SLOW;l=2;d=100;force=true}
  64. WinterAxeThrow:
  65. TargetConditions:
  66. - distance{d=>5}
  67. - gamemode{
  68. Conditions:
  69. - hastag{tag=casting} false
  70. Skills:
  71. - addtag{tag=casting} false
  72. - message{m="&7[<mob.name>&7] &3Go... my Axe."} @PIR{r=30}
  73. - potion{type=SLOW;l=4;d=100;force=true} @self
  74. - delay 60
  75. - projectile{bulletType=ITEM;material=DIAMOND_AXE;onTick=WinterAxe-Tick;onHit=WinterAxe-Hit;onEnd=WinterAxe-End;Interval=1;MaxRange=30;HitNonPlayers=true;Velocity=12}
  76. - removetag{tag=casting} false
  77. WinterAxe-Tick:
  78. Skills:
  79. - effect:particles{particle=snowball;a=5;hSpread=0.15;vSpread=0.05;speed=0.1}
  80. WinterAxe-Hit:
  81. Skills:
  82. >>>> - damage{a=20;pi=true;pkb=true} <<<<
  83. - effect:particles{p=snowball;a=80;hSpread=0.5;vSpread=0.25;useEyeLocation=true;speed=0.2}
  84. - potion{type=SLOW;l=2;d=100}
  85. - delay 10
  86. - teleport{spreadh=0;spreadv=0}
  87. - skill{s=GreatForceStrike}
  88. - settarget_ext{event=true}
  89. WinterAxe-End:
  90. Skills:
  91. - teleport
  92. WinterSnowball:
  93. Conditions:
  94. - hastag{tag=casting} false
  95. Skills:
  96. - addtag{tag=casting} @self
  97. - message{m="&7[<mob.name>&7] &3You will all feel the wrath of Winter's Crest!"} @PIR{R=30}
  98. - potion{type=SLOW;l=4;d=200} @self
  99. - delay 80
  100. - skill{s=SnowballThrow;repeat=3;repeatInterval=20} @PIR{r=30}
  101. - removetag{tag=casting} @self
  102. SnowballThrow:
  103. Skills:
  104. - effect:sound{sound=entity.egg.throw}
  105. >>>> - shoot{type=snowball;damage=8;onTick=ST-Tick;velocity=0.5;interval=1} <<<<
  106. ST-Tick:
  107. Skills:
  108. - effect:particles{p=snowball;a=2} @origin
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement