ChamberOfDelusionEast.java 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /*
  2. * Copyright (C) 2004-2013 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 instances.ChambersOfDelusion;
  20. import com.l2jserver.gameserver.model.Location;
  21. /**
  22. * Chamber of Delusion East.
  23. * @author GKR
  24. */
  25. public final class ChamberOfDelusionEast extends Chamber
  26. {
  27. // NPCs
  28. private static final int ENTRANCE_GATEKEEPER = 32658;
  29. private static final int ROOM_GATEKEEPER_FIRST = 32664;
  30. private static final int ROOM_GATEKEEPER_LAST = 32668;
  31. private static final int AENKINEL = 25690;
  32. private static final int BOX = 18838;
  33. // Misc
  34. private static final Location[] ENTER_POINTS = new Location[]
  35. {
  36. new Location(-122368, -218972, -6720),
  37. new Location(-122352, -218044, -6720),
  38. new Location(-122368, -220220, -6720),
  39. new Location(-121440, -218444, -6720),
  40. new Location(-121424, -220124, -6720), // Raid room
  41. };
  42. private static final int INSTANCEID = 127;
  43. private static final String INSTANCE_TEMPLATE = "ChamberOfDelusionEast.xml";
  44. private ChamberOfDelusionEast(int questId, String name, String descr)
  45. {
  46. super(questId, name, descr, INSTANCEID, INSTANCE_TEMPLATE, ENTRANCE_GATEKEEPER, ROOM_GATEKEEPER_FIRST, ROOM_GATEKEEPER_LAST, AENKINEL, BOX);
  47. ROOM_ENTER_POINTS = ENTER_POINTS;
  48. }
  49. public static void main(String[] args)
  50. {
  51. new ChamberOfDelusionEast(-1, ChamberOfDelusionEast.class.getSimpleName(), "instances");
  52. }
  53. }