ChamberOfDelusionSouth.java 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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 South.
  23. * @author GKR
  24. */
  25. public final class ChamberOfDelusionSouth extends Chamber
  26. {
  27. // NPC's
  28. private static final int ENTRANCE_GATEKEEPER = 32660;
  29. private static final int ROOM_GATEKEEPER_FIRST = 32674;
  30. private static final int ROOM_GATEKEEPER_LAST = 32678;
  31. private static final int AENKINEL = 25692;
  32. private static final int BOX = 18838;
  33. // Misc
  34. private static final Location[] ENTER_POINTS = new Location[]
  35. {
  36. new Location(-122368, -207820, -6720),
  37. new Location(-122368, -206940, -6720),
  38. new Location(-122368, -209116, -6720),
  39. new Location(-121456, -207356, -6720),
  40. new Location(-121440, -209004, -6720), // Raid room
  41. };
  42. private static final int INSTANCEID = 129; // this is the client number
  43. private static final String INSTANCE_TEMPLATE = "ChamberOfDelusionSouth.xml";
  44. public ChamberOfDelusionSouth()
  45. {
  46. super(ChamberOfDelusionSouth.class.getSimpleName(), "instances", INSTANCEID, INSTANCE_TEMPLATE, ENTRANCE_GATEKEEPER, ROOM_GATEKEEPER_FIRST, ROOM_GATEKEEPER_LAST, AENKINEL, BOX);
  47. ROOM_ENTER_POINTS = ENTER_POINTS;
  48. }
  49. }