ChamberOfDelusionTower.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 Tower.
  23. * @author GKR
  24. */
  25. public final class ChamberOfDelusionTower extends Chamber
  26. {
  27. // NPC's
  28. private static final int ENTRANCE_GATEKEEPER = 32663;
  29. private static final int ROOM_GATEKEEPER_FIRST = 32693;
  30. private static final int ROOM_GATEKEEPER_LAST = 32701;
  31. private static final int AENKINEL = 25695;
  32. private static final int BOX = 18823;
  33. // Misc
  34. private static final Location[] ENTER_POINTS = new Location[]
  35. {
  36. new Location(-108976, -153372, -6688),
  37. new Location(-108960, -152524, -6688),
  38. new Location(-107088, -155052, -6688),
  39. new Location(-107104, -154236, -6688),
  40. new Location(-108048, -151244, -6688),
  41. new Location(-107088, -152956, -6688),
  42. new Location(-108992, -154604, -6688),
  43. new Location(-108032, -152892, -6688),
  44. new Location(-108048, -154572, -6688), // Raid room
  45. };
  46. private static final int INSTANCEID = 132; // this is the client number
  47. private static final String INSTANCE_TEMPLATE = "ChamberOfDelusionTower.xml";
  48. public ChamberOfDelusionTower()
  49. {
  50. super(ChamberOfDelusionTower.class.getSimpleName(), "instances", INSTANCEID, INSTANCE_TEMPLATE, ENTRANCE_GATEKEEPER, ROOM_GATEKEEPER_FIRST, ROOM_GATEKEEPER_LAST, AENKINEL, BOX);
  51. ROOM_ENTER_POINTS = ENTER_POINTS;
  52. }
  53. }