SagaOfTheCardinal.java 2.8 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. * @author Emperorc
  18. */
  19. public class SagaOfTheCardinal extends SagasSuperClass
  20. {
  21. public static String qn1 = "85_SagaOfTheCardinal";
  22. public static int qnu = 85;
  23. public static String qna = "Saga of the Cardinal";
  24. public SagaOfTheCardinal()
  25. {
  26. super(qnu, qn1, qna);
  27. NPC = new int[]
  28. {
  29. 30191,
  30. 31626,
  31. 31588,
  32. 31280,
  33. 31644,
  34. 31646,
  35. 31647,
  36. 31651,
  37. 31654,
  38. 31655,
  39. 31658,
  40. 31280
  41. };
  42. Items = new int[]
  43. {
  44. 7080,
  45. 7522,
  46. 7081,
  47. 7500,
  48. 7283,
  49. 7314,
  50. 7345,
  51. 7376,
  52. 7407,
  53. 7438,
  54. 7087,
  55. 0
  56. };
  57. Mob = new int[]
  58. {
  59. 27267,
  60. 27234,
  61. 27274
  62. };
  63. qn = qn1;
  64. classid = new int[]
  65. {
  66. 97
  67. };
  68. prevclass = new int[]
  69. {
  70. 0x10
  71. };
  72. X = new int[]
  73. {
  74. 119518,
  75. 181215,
  76. 181227
  77. };
  78. Y = new int[]
  79. {
  80. -28658,
  81. 36676,
  82. 36703
  83. };
  84. Z = new int[]
  85. {
  86. -3811,
  87. -4812,
  88. -4816
  89. };
  90. Text = new String[]
  91. {
  92. "PLAYERNAME! Pursued to here! However, I jumped out of the Banshouren boundaries! You look at the giant as the sign of power!",
  93. "... Oh ... good! So it was ... let's begin!",
  94. "I do not have the patience ..! I have been a giant force ...! Cough chatter ah ah ah!",
  95. "Paying homage to those who disrupt the orderly will be PLAYERNAME's death!",
  96. "Now, my soul freed from the shackles of the millennium, Halixia, to the back side I come ...",
  97. "Why do you interfere others' battles?",
  98. "This is a waste of time.. Say goodbye...!",
  99. "...That is the enemy",
  100. "...Goodness! PLAYERNAME you are still looking?",
  101. "PLAYERNAME ... Not just to whom the victory. Only personnel involved in the fighting are eligible to share in the victory.",
  102. "Your sword is not an ornament. Don't you think, PLAYERNAME?",
  103. "Goodness! I no longer sense a battle there now.",
  104. "let...",
  105. "Only engaged in the battle to bar their choice. Perhaps you should regret.",
  106. "The human nation was foolish to try and fight a giant's strength.",
  107. "Must...Retreat... Too...Strong.",
  108. "PLAYERNAME. Defeat...by...retaining...and...Mo...Hacker",
  109. "....! Fight...Defeat...It...Fight...Defeat...It..."
  110. };
  111. registerNPCs();
  112. }
  113. }