SagaOfEvasTemplar.java 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. /*
  2. * Copyright (C) 2004-2014 L2J DataPack
  3. *
  4. * This file is part of L2J DataPack.
  5. *
  6. * L2J DataPack is free software: you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation, either version 3 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * L2J DataPack is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. */
  19. package quests.SagasScripts;
  20. import com.l2jserver.gameserver.model.Location;
  21. /**
  22. * Saga of Eva's Templar (71)
  23. * @author Emperorc
  24. */
  25. public class SagaOfEvasTemplar extends SagasSuperClass
  26. {
  27. public SagaOfEvasTemplar()
  28. {
  29. super(71, "Q00071_SagaOfEvasTemplar", "Saga of Eva's Templar");
  30. NPC = new int[]
  31. {
  32. 30852,
  33. 31624,
  34. 31278,
  35. 30852,
  36. 31638,
  37. 31646,
  38. 31648,
  39. 31651,
  40. 31654,
  41. 31655,
  42. 31658,
  43. 31281
  44. };
  45. Items = new int[]
  46. {
  47. 7080,
  48. 7535,
  49. 7081,
  50. 7486,
  51. 7269,
  52. 7300,
  53. 7331,
  54. 7362,
  55. 7393,
  56. 7424,
  57. 7094,
  58. 6482
  59. };
  60. Mob = new int[]
  61. {
  62. 27287,
  63. 27220,
  64. 27279
  65. };
  66. classid = new int[]
  67. {
  68. 99
  69. };
  70. prevclass = new int[]
  71. {
  72. 0x14
  73. };
  74. npcSpawnLocations = new Location[]
  75. {
  76. new Location(119518, -28658, -3811),
  77. new Location(181215, 36676, -4812),
  78. new Location(181227, 36703, -4816)
  79. };
  80. Text = new String[]
  81. {
  82. "PLAYERNAME! Pursued to here! However, I jumped out of the Banshouren boundaries! You look at the giant as the sign of power!",
  83. "... Oh ... good! So it was ... let's begin!",
  84. "I do not have the patience ..! I have been a giant force ...! Cough chatter ah ah ah!",
  85. "Paying homage to those who disrupt the orderly will be PLAYERNAME's death!",
  86. "Now, my soul freed from the shackles of the millennium, Halixia, to the back side I come ...",
  87. "Why do you interfere others' battles?",
  88. "This is a waste of time.. Say goodbye...!",
  89. "...That is the enemy",
  90. "...Goodness! PLAYERNAME you are still looking?",
  91. "PLAYERNAME ... Not just to whom the victory. Only personnel involved in the fighting are eligible to share in the victory.",
  92. "Your sword is not an ornament. Don't you think, PLAYERNAME?",
  93. "Goodness! I no longer sense a battle there now.",
  94. "let...",
  95. "Only engaged in the battle to bar their choice. Perhaps you should regret.",
  96. "The human nation was foolish to try and fight a giant's strength.",
  97. "Must...Retreat... Too...Strong.",
  98. "PLAYERNAME. Defeat...by...retaining...and...Mo...Hacker",
  99. "....! Fight...Defeat...It...Fight...Defeat...It..."
  100. };
  101. registerNPCs();
  102. }
  103. }