SagaOfTheElementalMaster.java 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. /*
  2. * This program is free software: you can redistribute it and/or modify it under
  3. * the terms of the GNU General Public License as published by the Free Software
  4. * Foundation, either version 3 of the License, or (at your option) any later
  5. * version.
  6. *
  7. * This program is distributed in the hope that it will be useful, but WITHOUT
  8. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  9. * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
  10. * details.
  11. *
  12. * You should have received a copy of the GNU General Public License along with
  13. * this program. If not, see <http://www.gnu.org/licenses/>.
  14. */
  15. package quests.SagasScripts;
  16. /**
  17. * Saga of the Elemental Master (92)
  18. * @author Emperorc
  19. */
  20. public class SagaOfTheElementalMaster extends SagasSuperClass
  21. {
  22. public static String qn1 = "92_SagaOfTheElementalMaster";
  23. public static int qnu = 92;
  24. public static String qna = "Saga of the Elemental Master";
  25. public SagaOfTheElementalMaster()
  26. {
  27. super(qnu, qn1, qna);
  28. NPC = new int[]
  29. {
  30. 30174,
  31. 31281,
  32. 31614,
  33. 31614,
  34. 31629,
  35. 31646,
  36. 31648,
  37. 31652,
  38. 31654,
  39. 31655,
  40. 31659,
  41. 31614
  42. };
  43. Items = new int[]
  44. {
  45. 7080,
  46. 7605,
  47. 7081,
  48. 7507,
  49. 7290,
  50. 7321,
  51. 7352,
  52. 7383,
  53. 7414,
  54. 7445,
  55. 7111,
  56. 0
  57. };
  58. Mob = new int[]
  59. {
  60. 27314,
  61. 27241,
  62. 27311
  63. };
  64. qn = qn1;
  65. classid = new int[]
  66. {
  67. 104
  68. };
  69. prevclass = new int[]
  70. {
  71. 0x1c
  72. };
  73. X = new int[]
  74. {
  75. 161719,
  76. 124376,
  77. 124355
  78. };
  79. Y = new int[]
  80. {
  81. -92823,
  82. 82127,
  83. 82155
  84. };
  85. Z = new int[]
  86. {
  87. -1893,
  88. -2796,
  89. -2803
  90. };
  91. Text = new String[]
  92. {
  93. "PLAYERNAME! Pursued to here! However, I jumped out of the Banshouren boundaries! You look at the giant as the sign of power!",
  94. "... Oh ... good! So it was ... let's begin!",
  95. "I do not have the patience ..! I have been a giant force ...! Cough chatter ah ah ah!",
  96. "Paying homage to those who disrupt the orderly will be PLAYERNAME's death!",
  97. "Now, my soul freed from the shackles of the millennium, Halixia, to the back side I come ...",
  98. "Why do you interfere others' battles?",
  99. "This is a waste of time.. Say goodbye...!",
  100. "...That is the enemy",
  101. "...Goodness! PLAYERNAME you are still looking?",
  102. "PLAYERNAME ... Not just to whom the victory. Only personnel involved in the fighting are eligible to share in the victory.",
  103. "Your sword is not an ornament. Don't you think, PLAYERNAME?",
  104. "Goodness! I no longer sense a battle there now.",
  105. "let...",
  106. "Only engaged in the battle to bar their choice. Perhaps you should regret.",
  107. "The human nation was foolish to try and fight a giant's strength.",
  108. "Must...Retreat... Too...Strong.",
  109. "PLAYERNAME. Defeat...by...retaining...and...Mo...Hacker",
  110. "....! Fight...Defeat...It...Fight...Defeat...It..."
  111. };
  112. registerNPCs();
  113. }
  114. }