Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 

62 righe
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. cell: 51,
  17. id: 'impthief-$',
  18. hpMult: 5,
  19. dmgMult: 1,
  20. drops: {
  21. rolls: 0
  22. }
  23. }, {
  24. name: 'imp kingpin',
  25. level: 8,
  26. cell: 52,
  27. hpMult: 10,
  28. dmgMult: 2
  29. }]
  30. }, {
  31. type: 'locateMob',
  32. announce: 'Locate the thieves',
  33. mobName: 'imp kingpin',
  34. distance: 5
  35. }, {
  36. type: 'eventChain',
  37. events: [{
  38. type: 'mobTalk',
  39. id: 'impthief-1',
  40. text: `Boss! They're on to us!`,
  41. delay: 10
  42. }, {
  43. type: 'mobTalk',
  44. id: 'impthief-3',
  45. text: `They'll take the chicken. We needs it!`,
  46. delay: 10
  47. }, {
  48. type: 'mobTalk',
  49. id: 'impkingpin',
  50. text: `They'll never have her, she's ours now! Kill them!`,
  51. delay: 15
  52. }]
  53. }, {
  54. type: 'giveReward',
  55. item: {
  56. name: 'The Moonspoon',
  57. sprite: [0, 0],
  58. level: 1
  59. }
  60. }]
  61. }];