MapleQuestRequirementType.java
上传用户:gwt600
上传日期:2021-06-03
资源大小:704k
文件大小:3k
源码类别:

游戏

开发平台:

Java

  1. /*
  2. This file is part of the OdinMS Maple Story Server
  3.     Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc> 
  4.                        Matthias Butz <matze@odinms.de>
  5.                        Jan Christian Meyer <vimes@odinms.de>
  6.     This program is free software: you can redistribute it and/or modify
  7.     it under the terms of the GNU Affero General Public License version 3
  8.     as published by the Free Software Foundation. You may not use, modify
  9.     or distribute this program under any other version of the
  10.     GNU Affero General Public License.
  11.     This program 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
  14.     GNU Affero General Public License for more details.
  15.     You should have received a copy of the GNU Affero General Public License
  16.     along with this program.  If not, see <http://www.gnu.org/licenses/>.
  17. */
  18. /*
  19.  * MapleQuestRequirementType.java
  20.  *
  21.  * Created on 10. Dezember 2007, 23:15
  22.  */
  23. package net.sf.odinms.server.quest;
  24. /**
  25.  *
  26.  * @author Matze
  27.  */
  28. public enum MapleQuestRequirementType {
  29. UNDEFINED(-1), JOB(0), ITEM(1), QUEST(2), MIN_LEVEL(3), MAX_LEVEL(4), END_DATE(5), MOB(6), NPC(7), FIELD_ENTER(8), INTERVAL(9), SCRIPT(10), PET(11), MIN_PET_TAMENESS(12);
  30. public MapleQuestRequirementType getITEM() {
  31. return ITEM;
  32. }
  33. final byte type;
  34. private MapleQuestRequirementType(int type) {
  35. this.type = (byte)type;
  36. }
  37. public byte getType() {
  38. return type;
  39. }
  40. public static MapleQuestRequirementType getByType(byte type) {
  41. for (MapleQuestRequirementType l : MapleQuestRequirementType.values()) {
  42. if (l.getType() == type) {
  43. return l;
  44. }
  45. }
  46. return null;
  47. }
  48. public static MapleQuestRequirementType getByWZName(String name) {
  49. if (name.equals("job")) return JOB;
  50. else if (name.equals("quest")) return QUEST;
  51. else if (name.equals("item")) return ITEM;
  52. else if (name.equals("lvmin")) return MIN_LEVEL;
  53. else if (name.equals("lvmax")) return MAX_LEVEL;
  54. else if (name.equals("end")) return END_DATE;
  55. else if (name.equals("mob")) return MOB;
  56. else if (name.equals("npc")) return NPC;
  57. else if (name.equals("fieldEnter")) return FIELD_ENTER;
  58. else if (name.equals("interval")) return INTERVAL;
  59. else if (name.equals("startscript")) return SCRIPT;
  60. else if (name.equals("endscript")) return SCRIPT;
  61. else if (name.equals("pet")) return PET;
  62. else if (name.equals("pettamenessmin")) return MIN_PET_TAMENESS;
  63. else return UNDEFINED;
  64. }
  65. }