ChamberOfDelusionSquare.java 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /*
  2. * Copyright (C) 2004-2015 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 Square.
  23. * @author GKR
  24. */
  25. public final class ChamberOfDelusionSquare extends Chamber
  26. {
  27. // NPC's
  28. private static final int ENTRANCE_GATEKEEPER = 32662;
  29. private static final int ROOM_GATEKEEPER_FIRST = 32684;
  30. private static final int ROOM_GATEKEEPER_LAST = 32692;
  31. private static final int AENKINEL = 25694;
  32. private static final int BOX = 18820;
  33. // Misc
  34. private static final Location[] ENTER_POINTS = new Location[]
  35. {
  36. new Location(-122368, -153388, -6688),
  37. new Location(-122368, -152524, -6688),
  38. new Location(-120480, -155116, -6688),
  39. new Location(-120480, -154236, -6688),
  40. new Location(-121440, -151212, -6688),
  41. new Location(-120464, -152908, -6688),
  42. new Location(-122368, -154700, -6688),
  43. new Location(-121440, -152908, -6688),
  44. new Location(-121440, -154572, -6688), // Raid room
  45. };
  46. private static final int INSTANCEID = 131;
  47. private static final String INSTANCE_TEMPLATE = "ChamberOfDelusionSquare.xml";
  48. public ChamberOfDelusionSquare()
  49. {
  50. super(ChamberOfDelusionSquare.class.getSimpleName(), "instances", INSTANCEID, INSTANCE_TEMPLATE, ENTRANCE_GATEKEEPER, ROOM_GATEKEEPER_FIRST, ROOM_GATEKEEPER_LAST, AENKINEL, BOX);
  51. ROOM_ENTER_POINTS = ENTER_POINTS;
  52. }
  53. }