TheTerritoryDion.java 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /*
  2. * This program is free software: you can redistribute it and/or modify it under
  3. * the terms of the GNU General Public License as published by the Free Software
  4. * Foundation, either version 3 of the License, or (at your option) any later
  5. * version.
  6. *
  7. * This program is distributed in the hope that it will be useful, but WITHOUT
  8. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  9. * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
  10. * details.
  11. *
  12. * You should have received a copy of the GNU General Public License along with
  13. * this program. If not, see <http://www.gnu.org/licenses/>.
  14. */
  15. package quests.TerritoryWarScripts;
  16. /**
  17. *
  18. * @author Gigiikun
  19. */
  20. public class TheTerritoryDion extends TerritoryWarSuperClass
  21. {
  22. public static String qn1 = "718_FortheSakeoftheTerritoryDion";
  23. public static int qnu = 718;
  24. public static String qna = "For the Sake of the Territory - Dion";
  25. public TheTerritoryDion()
  26. {
  27. super(qnu,qn1,qna);
  28. CATAPULT_ID = 36500;
  29. TERRITORY_ID = 82;
  30. LEADER_IDS = new int[]{36514, 36516, 36519, 36592};
  31. GUARD_IDS = new int[]{36515, 36517, 36518};
  32. qn = qn1;
  33. Text = new String[]{"The catapult of Dion has been destroyed!"};
  34. registerKillIds();
  35. }
  36. }