Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 

60 lignes
1.1 KiB

  1. module.exports = [{
  2. name: 'Rodriguez Heist',
  3. description: `Rodriguez, the Hermit's only chicken companion, has been kidnapped by a band of imps. Who knows what they plan on doing with him.`,
  4. phases: [{
  5. type: 'spawnMob',
  6. spawnRect: {
  7. x: 69,
  8. y: 39,
  9. w: 7,
  10. h: 6
  11. },
  12. mob: [{
  13. amount: 5,
  14. name: 'thieving imp',
  15. level: 5,
  16. id: 'impthief-$',
  17. hpMult: 5,
  18. dmgMult: 1,
  19. drops: {
  20. rolls: 0
  21. }
  22. }, {
  23. name: 'imp kingpin',
  24. level: 8,
  25. hpMult: 10,
  26. dmgMult: 2
  27. }]
  28. }, {
  29. type: 'locateMob',
  30. announce: 'Locate the thieves',
  31. mobName: 'imp kingpin',
  32. distance: 5
  33. }, {
  34. type: 'eventChain',
  35. events: [{
  36. type: 'mobTalk',
  37. id: 'impthief-1',
  38. text: `Boss! They're on to us!`,
  39. delay: 10
  40. }, {
  41. type: 'mobTalk',
  42. id: 'impthief-3',
  43. text: `They'll take the chicken. We needs it!`,
  44. delay: 10
  45. }, {
  46. type: 'mobTalk',
  47. id: 'impkingpin',
  48. text: `They'll never have her, she's ours now! Kill them!`,
  49. delay: 15
  50. }]
  51. }, {
  52. type: 'giveReward',
  53. item: {
  54. name: 'The Moonspoon',
  55. sprite: [0, 0],
  56. level: 1
  57. }
  58. }]
  59. }];