source
Source for my MapleSolaxiaV2 (v83 MapleStory).
This commit is contained in:
74
src/constants/EquipSlot.java
Normal file
74
src/constants/EquipSlot.java
Normal file
@@ -0,0 +1,74 @@
|
||||
package constants;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author The Spookster
|
||||
*/
|
||||
public enum EquipSlot {
|
||||
|
||||
HAT("Cp", -1),
|
||||
SPECIAL_HAT("HrCp", -1),
|
||||
FACE_ACCESSORY("Af", -2),
|
||||
EYE_ACCESSORY("Ay", -3),
|
||||
EARRINGS("Ae", -4),
|
||||
TOP("Ma", -5),
|
||||
OVERALL("MaPn", -5),
|
||||
PANTS("Pn", -6),
|
||||
SHOES("So", -7),
|
||||
GLOVES("GlGw", -8),
|
||||
CASH_GLOVES("Gv", -8),
|
||||
CAPE("Sr", -9),
|
||||
SHIELD("Si", -10),
|
||||
WEAPON("Wp", -11),
|
||||
WEAPON_2("WpSi", -11),
|
||||
LOW_WEAPON("WpSp", -11),
|
||||
RING("Ri", -12, -13, -15, -16),
|
||||
PENDANT("Pe", -17),
|
||||
TAMED_MOB("Tm", -18),
|
||||
SADDLE("Sd", -19),
|
||||
MEDAL("Me", -49),
|
||||
BELT("Be", -50),
|
||||
PET_EQUIP;
|
||||
|
||||
private String name;
|
||||
private int[] allowed;
|
||||
|
||||
private EquipSlot() {
|
||||
}
|
||||
|
||||
private EquipSlot(String wz, int... in) {
|
||||
name = wz;
|
||||
allowed = in;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public boolean isAllowed(int slot, boolean cash) {
|
||||
if (slot < 0) {
|
||||
if (allowed != null) {
|
||||
for (Integer allow : allowed) {
|
||||
int condition = cash ? allow - 100 : allow;
|
||||
if (slot == condition) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
return cash && slot < 0;
|
||||
}
|
||||
|
||||
public static EquipSlot getFromTextSlot(String slot) {
|
||||
if (!slot.isEmpty()) {
|
||||
for (EquipSlot c : values()) {
|
||||
if (c.getName() != null) {
|
||||
if (c.getName().equals(slot)) {
|
||||
return c;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
return PET_EQUIP;
|
||||
}
|
||||
}
|
||||
40
src/constants/ExpTable.java
Normal file
40
src/constants/ExpTable.java
Normal file
@@ -0,0 +1,40 @@
|
||||
/*
|
||||
This file is part of the OdinMS Maple Story Server
|
||||
Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc>
|
||||
Matthias Butz <matze@odinms.de>
|
||||
Jan Christian Meyer <vimes@odinms.de>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License as
|
||||
published by the Free Software Foundation version 3 as published by
|
||||
the Free Software Foundation. You may not use, modify or distribute
|
||||
this program under any other version of the GNU Affero General Public
|
||||
License.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package constants;
|
||||
|
||||
public final class ExpTable {
|
||||
private static final int[] exp = {1, 15, 34, 57, 92, 135, 372, 560, 840, 1242, 1144, 1573, 2144, 2800, 3640, 4700, 5893, 7360, 9144, 11120, 13477, 16268, 19320, 22880, 27008, 31477, 36600, 42444, 48720, 55813, 63800, 86784, 98208, 110932, 124432, 139372, 155865, 173280, 192400, 213345, 235372, 259392, 285532, 312928, 342624, 374760, 408336, 445544, 483532, 524160, 567772, 598886, 631704, 666321, 702836, 741351, 781976, 824828, 870028, 917625, 967995, 1021041, 1076994, 1136013, 1198266, 1263930, 1333194, 1406252, 1483314, 1564600, 1650340, 1740778, 1836173, 1936794, 2042930, 2154882, 2272970, 2397528, 2528912, 2667496, 2813674, 2967863, 3130502, 3302053, 3483005, 3673873, 3875201, 4087562, 4311559, 4547832, 4797053, 5059931, 5337215, 5629694, 5938202, 6263614, 6606860, 6968915, 7350811, 7753635, 8178534, 8626718, 9099462, 9598112, 10124088, 10678888, 11264090, 11881362, 12532461, 13219239, 13943653, 14707765, 15513750, 16363902, 17260644, 18206527, 19204245, 20256637, 21366700, 22537594, 23772654, 25075395, 26449526, 27898960, 29427822, 31040466, 32741483, 34535716, 36428273, 38424542, 40530206, 42751262, 45094030, 47565183, 50171755, 52921167, 55821246, 58880250, 62106888, 65510344, 69100311, 72887008, 76881216, 81094306, 85594273, 90225770, 95170142, 100385466, 105886589, 111689174, 117809740, 124265714, 131075474, 138258410, 145834970, 153826726, 162256430, 171148082, 180526997, 190419876, 200854885, 211861732, 223471711, 223471711, 248635353, 262260570, 276632449, 291791906, 307782102, 324648562, 342439302, 361204976, 380999008, 401877754, 423900654, 447130410, 471633156, 497478653, 524740482, 553496261, 583827855, 615821622, 649568646, 685165008, 722712050, 762316670, 804091623, 848155844, 894634784, 943660770, 995373379, 1049919840, 1107455447, 1168144006, 1232158297, 1299680571, 1370903066, 1446028554, 1525246918, 1608855764, 1697021059};
|
||||
private static final int[] pet = {1, 1, 3, 6, 14, 31, 60, 108, 181, 287, 434, 632, 891, 1224, 1642, 2161, 2793, 3557, 4467, 5542, 6801, 8263, 9950, 11882, 14084, 16578, 19391, 22547, 26074, 30000, 2147483647};
|
||||
private static final int[] mount = {1, 24, 50, 105, 134, 196, 254, 263, 315, 367, 430, 543, 587, 679, 725, 897, 1146, 1394, 1701, 2247, 2543, 2898, 3156, 3313, 3584, 3923, 4150, 4305, 4550};
|
||||
|
||||
public static int getExpNeededForLevel(int level) {
|
||||
return level > 200 ? 2000000000 : exp[level];
|
||||
}
|
||||
|
||||
public static int getClosenessNeededForLevel(int level) {
|
||||
return pet[level];
|
||||
}
|
||||
|
||||
public static int getMountExpNeededForLevel(int level) {
|
||||
return mount[level];
|
||||
}
|
||||
}
|
||||
99
src/constants/GameConstants.java
Normal file
99
src/constants/GameConstants.java
Normal file
@@ -0,0 +1,99 @@
|
||||
package constants;
|
||||
|
||||
import client.MapleJob;
|
||||
import constants.skills.Aran;
|
||||
|
||||
/*
|
||||
* @author kevintjuh93
|
||||
*/
|
||||
public class GameConstants {
|
||||
|
||||
public static int getHiddenSkill(final int skill) {
|
||||
switch (skill) {
|
||||
case Aran.HIDDEN_FULL_DOUBLE:
|
||||
case Aran.HIDDEN_FULL_TRIPLE:
|
||||
return Aran.FULL_SWING;
|
||||
case Aran.HIDDEN_OVER_DOUBLE:
|
||||
case Aran.HIDDEN_OVER_TRIPLE:
|
||||
return Aran.OVER_SWING;
|
||||
}
|
||||
return skill;
|
||||
}
|
||||
|
||||
public static int getSkillBook(final int job) {
|
||||
if (job >= 2210 && job <= 2218) {
|
||||
return job - 2209;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
public static boolean isAranSkills(final int skill) {
|
||||
return Aran.FULL_SWING == skill || Aran.OVER_SWING == skill || Aran.COMBO_TEMPEST == skill || Aran.COMBO_PENRIL == skill || Aran.COMBO_DRAIN == skill
|
||||
|| Aran.HIDDEN_FULL_DOUBLE == skill || Aran.HIDDEN_FULL_TRIPLE == skill || Aran.HIDDEN_OVER_DOUBLE == skill || Aran.HIDDEN_OVER_TRIPLE == skill
|
||||
|| Aran.COMBO_SMASH == skill || Aran.DOUBLE_SWING == skill || Aran.TRIPLE_SWING == skill;
|
||||
}
|
||||
|
||||
public static boolean isHiddenSkills(final int skill) {
|
||||
return Aran.HIDDEN_FULL_DOUBLE == skill || Aran.HIDDEN_FULL_TRIPLE == skill || Aran.HIDDEN_OVER_DOUBLE == skill || Aran.HIDDEN_OVER_TRIPLE == skill;
|
||||
}
|
||||
|
||||
public static boolean isAran(final int job) {
|
||||
return job == 2000 || (job >= 2100 && job <= 2112);
|
||||
}
|
||||
|
||||
public static boolean isInJobTree(int skillId, int jobId) {
|
||||
int skill = skillId / 10000;
|
||||
if ((jobId - skill) + skill == jobId) {
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
public static boolean isPqSkill(final int skill) {
|
||||
return skill >= 20001013 && skill <= 20000018 || skill % 10000000 == 1020 || skill == 10000013 || skill % 10000000 >= 1009 && skill % 10000000 <= 1011;
|
||||
}
|
||||
|
||||
public static boolean bannedBindSkills(final int skill) {
|
||||
return isAranSkills(skill) || isPqSkill(skill);
|
||||
}
|
||||
|
||||
public static boolean isGMSkills(final int skill) {
|
||||
return skill >= 9001000 && skill <= 9101008 || skill >= 8001000 && skill <= 8001001;
|
||||
}
|
||||
|
||||
public static boolean isDojo(int mapid) {
|
||||
return mapid >= 925020100 && mapid <= 925023814;
|
||||
}
|
||||
|
||||
public static boolean isPyramid(int mapid) {
|
||||
return mapid >= 926010010 & mapid <= 930010000;
|
||||
}
|
||||
|
||||
public static boolean isPQSkillMap(int mapid) {
|
||||
return isDojo(mapid) || isPyramid(mapid);
|
||||
}
|
||||
|
||||
public static boolean isFinisherSkill(int skillId) {
|
||||
return skillId > 1111002 && skillId < 1111007 || skillId == 11111002 || skillId == 11111003;
|
||||
}
|
||||
|
||||
public static boolean hasSPTable(MapleJob job) {
|
||||
switch (job) {
|
||||
case EVAN:
|
||||
case EVAN1:
|
||||
case EVAN2:
|
||||
case EVAN3:
|
||||
case EVAN4:
|
||||
case EVAN5:
|
||||
case EVAN6:
|
||||
case EVAN7:
|
||||
case EVAN8:
|
||||
case EVAN9:
|
||||
case EVAN10:
|
||||
return true;
|
||||
default:
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
83
src/constants/ItemConstants.java
Normal file
83
src/constants/ItemConstants.java
Normal file
@@ -0,0 +1,83 @@
|
||||
/*
|
||||
This file is part of the OdinMS Maple Story Server
|
||||
Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc>
|
||||
Matthias Butz <matze@odinms.de>
|
||||
Jan Christian Meyer <vimes@odinms.de>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License as
|
||||
published by the Free Software Foundation version 3 as published by
|
||||
the Free Software Foundation. You may not use, modify or distribute
|
||||
this program under any other version of the GNU Affero General Public
|
||||
License.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package constants;
|
||||
|
||||
import client.inventory.MapleInventoryType;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Jay Estrella
|
||||
*/
|
||||
public final class ItemConstants {
|
||||
public final static int LOCK = 0x01;
|
||||
public final static int SPIKES = 0x02;
|
||||
public final static int COLD = 0x04;
|
||||
public final static int UNTRADEABLE = 0x08;
|
||||
public final static int KARMA = 0x10;
|
||||
public final static int PET_COME = 0x80;
|
||||
public final static int ACCOUNT_SHARING = 0x100;
|
||||
public final static float ITEM_ARMOR_EXP = 1 / 350000;
|
||||
public static final float ITEM_WEAPON_EXP = 1 / 700000;
|
||||
|
||||
public final static boolean EXPIRING_ITEMS = true;
|
||||
|
||||
public static int getFlagByInt(int type) {
|
||||
if (type == 128) {
|
||||
return PET_COME;
|
||||
} else if (type == 256) {
|
||||
return ACCOUNT_SHARING;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
public static boolean isThrowingStar(int itemId) {
|
||||
return itemId / 10000 == 207;
|
||||
}
|
||||
|
||||
public static boolean isBullet(int itemId) {
|
||||
return itemId / 10000 == 233;
|
||||
}
|
||||
|
||||
public static boolean isRechargable(int itemId) {
|
||||
return isThrowingStar(itemId) || isBullet(itemId);
|
||||
}
|
||||
|
||||
public static boolean isArrowForCrossBow(int itemId) {
|
||||
return itemId / 1000 == 2061;
|
||||
}
|
||||
|
||||
public static boolean isArrowForBow(int itemId) {
|
||||
return itemId / 1000 == 2060;
|
||||
}
|
||||
|
||||
public static boolean isPet(int itemId) {
|
||||
return itemId / 1000 == 5000;
|
||||
}
|
||||
|
||||
public static MapleInventoryType getInventoryType(final int itemId) {
|
||||
final byte type = (byte) (itemId / 1000000);
|
||||
if (type < 1 || type > 5) {
|
||||
return MapleInventoryType.UNDEFINED;
|
||||
}
|
||||
return MapleInventoryType.getByType(type);
|
||||
}
|
||||
}
|
||||
81
src/constants/ServerConstants.java
Normal file
81
src/constants/ServerConstants.java
Normal file
@@ -0,0 +1,81 @@
|
||||
package constants;
|
||||
|
||||
import java.io.FileInputStream;
|
||||
import java.util.Properties;
|
||||
|
||||
public class ServerConstants {
|
||||
|
||||
public static short VERSION = 83;
|
||||
public static String[] WORLD_NAMES = {"Scania", "Bera", "Broa", "Windia", "Khaini", "Bellocan", "Mardia", "Kradia", "Yellonde", "Demethos", "Galicia", "El Nido", "Zenith", "Arcenia", "Kastia", "Judis", "Plana", "Kalluna", "Stius", "Croa", "Medere"};
|
||||
|
||||
// Login Configuration
|
||||
public static final int CHANNEL_LOAD = 100;//Players per channel
|
||||
public static final long RANKING_INTERVAL = 60 * 60 * 1000;//60 minutes, 3600000
|
||||
public static final boolean ENABLE_PIC = false;
|
||||
//Event Configuration
|
||||
public static final boolean PERFECT_PITCH = false; //for lvl 30 or above, each lvlup player gains 1 perfect pitch.
|
||||
// IP Configuration
|
||||
public static String HOST;
|
||||
//Database Configuration
|
||||
public static String DB_URL = "";
|
||||
public static String DB_USER = "";
|
||||
public static String DB_PASS = "";
|
||||
//Other Configuration
|
||||
public static boolean JAVA_8;
|
||||
public static boolean SHUTDOWNHOOK;
|
||||
//Gameplay Configurations
|
||||
public static final boolean USE_DEBUG = false;
|
||||
public static final boolean USE_MTS = false;
|
||||
public static final boolean USE_FAMILY_SYSTEM = false;
|
||||
public static final boolean USE_DUEY = true;
|
||||
public static final boolean USE_ITEM_SORT = true;
|
||||
public static final boolean USE_PARTY_SEARCH = false;
|
||||
public static final boolean USE_AUTOBAN = false; //commands the server to detect infractors automatically.
|
||||
public static final boolean USE_ANOTHER_AUTOASSIGN = true; //based on distributing AP accordingly with higher secondary stat on equipments.
|
||||
|
||||
public static final int MAX_AP = 999;
|
||||
public static final long BLOCK_DUEY_RACE_COND = (long)(0.5 * 1000);
|
||||
public static final long PET_LOOT_UPON_ATTACK = (long)(0.8 * 1000); //time the pet must wait before trying to pick items up.
|
||||
//Some Gameplay Enhancing Configurations
|
||||
public static final boolean USE_PERFECT_SCROLLING = true; //scrolls doesn't use slots upon failure.
|
||||
public static final boolean USE_ENHANCED_CHSCROLL = true; //equips even more powerful with chaos upgrade
|
||||
public static final boolean USE_ENHANCED_CRAFTING = true; //applys chaos scroll on every equip crafted.
|
||||
public static final boolean USE_ULTRA_NIMBLE_FEET = true; //still needs some client editing to work =/
|
||||
public static final boolean USE_ULTRA_RECOVERY = true; //huehue another client edit
|
||||
//public static final boolean USE_ULTRA_THREE_SNAILS = true;
|
||||
public static final boolean USE_ADD_SLOTS_BY_LEVEL = true; //slots are added each 20 levels.
|
||||
public static final boolean USE_ADD_RATES_BY_LEVEL = true; //rates are added each 20 levels.
|
||||
public static final int FAME_GAIN_BY_QUEST = 4; //fame gain each N quest completes, set 0 to disable.
|
||||
public static final int SCROLL_CHANCE_RATE = 10; //number of tries for success on a scroll, set 0 for default.
|
||||
//Rates
|
||||
public static final int EXP_RATE = 10;
|
||||
public static final int MESO_RATE = 10;
|
||||
public static final int DROP_RATE = 10;
|
||||
public static final int BOSS_DROP_RATE = 20;
|
||||
public static final int PARTY_EXPERIENCE_MOD = 1; // change for event stuff
|
||||
public static final double PQ_BONUS_EXP_MOD = 0.5;
|
||||
|
||||
public static final long EVENT_END_TIMESTAMP = 1428897600000L;
|
||||
static {
|
||||
Properties p = new Properties();
|
||||
try {
|
||||
p.load(new FileInputStream("configuration.ini"));
|
||||
|
||||
//SERVER
|
||||
ServerConstants.HOST = p.getProperty("HOST");
|
||||
|
||||
//SQL DATABASE
|
||||
ServerConstants.DB_URL = p.getProperty("URL");
|
||||
ServerConstants.DB_USER = p.getProperty("DB_USER");
|
||||
ServerConstants.DB_PASS = p.getProperty("DB_PASS");
|
||||
|
||||
//OTHER
|
||||
ServerConstants.JAVA_8 = p.getProperty("JAVA8").equalsIgnoreCase("TRUE");
|
||||
ServerConstants.SHUTDOWNHOOK = p.getProperty("SHUTDOWNHOOK").equalsIgnoreCase("true");
|
||||
|
||||
} catch (Exception e) {
|
||||
System.out.println("Failed to load configuration.ini.");
|
||||
System.exit(0);
|
||||
}
|
||||
}
|
||||
}
|
||||
53
src/constants/skills/Aran.java
Normal file
53
src/constants/skills/Aran.java
Normal file
@@ -0,0 +1,53 @@
|
||||
/*
|
||||
This file is part of the OdinMS Maple Story Server
|
||||
Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc>
|
||||
Matthias Butz <matze@odinms.de>
|
||||
Jan Christian Meyer <vimes@odinms.de>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License as
|
||||
published by the Free Software Foundation version 3 as published by
|
||||
the Free Software Foundation. You may not use, modify or distribute
|
||||
this program under any other version of the GNU Affero General Public
|
||||
License.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package constants.skills;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author BubblesDev
|
||||
*/
|
||||
public class Aran {
|
||||
public static final int DOUBLE_SWING = 21000002;
|
||||
public static final int TRIPLE_SWING = 21100001;
|
||||
public static final int COMBO_ABILITY = 21000000;
|
||||
public static final int POLEARM_BOOSTER = 21001003;
|
||||
public static final int MAPLE_WARRIOR = 21121000;
|
||||
public static final int FREEZE_STANDING = 21121003;
|
||||
public static final int SNOW_CHARGE = 21111005;
|
||||
public static final int HEROS_WILL = 21121008;
|
||||
public static final int BODY_PRESSURE = 21101003;
|
||||
public static final int COMBO_DRAIN = 21100005;
|
||||
public static final int COMBO_SMASH = 21100004;
|
||||
public static final int COMBO_PENRIL = 21110004;
|
||||
public static final int COMBO_CRITICAL = 21110000;
|
||||
public static final int FULL_SWING = 21110002;
|
||||
public static final int ROLLING_SPIN = 21110006;
|
||||
public static final int HIDDEN_FULL_DOUBLE = 21110007;
|
||||
public static final int HIDDEN_FULL_TRIPLE = 21110008;
|
||||
public static final int SMART_KNOCKBACK = 21111001;
|
||||
public static final int OVER_SWING = 21120002;
|
||||
public static final int COMBO_TEMPEST = 21120006;
|
||||
public static final int COMBO_BARRIER = 21120007;
|
||||
public static final int HIDDEN_OVER_DOUBLE = 21120009;
|
||||
public static final int HIDDEN_OVER_TRIPLE = 21120010;
|
||||
public static final int HIGH_MASTERY = 21120001;
|
||||
}
|
||||
31
src/constants/skills/Archer.java
Normal file
31
src/constants/skills/Archer.java
Normal file
@@ -0,0 +1,31 @@
|
||||
/*
|
||||
This file is part of the OdinMS Maple Story Server
|
||||
Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc>
|
||||
Matthias Butz <matze@odinms.de>
|
||||
Jan Christian Meyer <vimes@odinms.de>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License as
|
||||
published by the Free Software Foundation version 3 as published by
|
||||
the Free Software Foundation. You may not use, modify or distribute
|
||||
this program under any other version of the GNU Affero General Public
|
||||
License.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package constants.skills;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author BubblesDev
|
||||
*/
|
||||
public class Archer {
|
||||
public static final int CRITICAL_SHOT = 3000001;
|
||||
public static final int FOCUS = 3001003;
|
||||
}
|
||||
35
src/constants/skills/Assassin.java
Normal file
35
src/constants/skills/Assassin.java
Normal file
@@ -0,0 +1,35 @@
|
||||
/*
|
||||
This file is part of the OdinMS Maple Story Server
|
||||
Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc>
|
||||
Matthias Butz <matze@odinms.de>
|
||||
Jan Christian Meyer <vimes@odinms.de>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License as
|
||||
published by the Free Software Foundation version 3 as published by
|
||||
the Free Software Foundation. You may not use, modify or distribute
|
||||
this program under any other version of the GNU Affero General Public
|
||||
License.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package constants.skills;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author BubblesDev
|
||||
*/
|
||||
public class Assassin {
|
||||
public static final int CLAW_MASTERY = 4100000;
|
||||
public static final int CRITICAL_THROW = 4100001;
|
||||
public static final int ENDURE = 4100002;
|
||||
public static final int CLAW_BOOSTER = 4101003;
|
||||
public static final int HASTE = 4101004;
|
||||
public static final int DRAIN = 4101005;
|
||||
}
|
||||
35
src/constants/skills/Bandit.java
Normal file
35
src/constants/skills/Bandit.java
Normal file
@@ -0,0 +1,35 @@
|
||||
/*
|
||||
This file is part of the OdinMS Maple Story Server
|
||||
Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc>
|
||||
Matthias Butz <matze@odinms.de>
|
||||
Jan Christian Meyer <vimes@odinms.de>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License as
|
||||
published by the Free Software Foundation version 3 as published by
|
||||
the Free Software Foundation. You may not use, modify or distribute
|
||||
this program under any other version of the GNU Affero General Public
|
||||
License.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package constants.skills;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author BubblesDev
|
||||
*/
|
||||
public class Bandit {
|
||||
public static final int DAGGER_MASTERY = 4200000;
|
||||
public static final int ENDURE = 4200001;
|
||||
public static final int DAGGER_BOOSTER = 4201002;
|
||||
public static final int HASTE = 4201003;
|
||||
public static final int STEAL = 4201004;
|
||||
public static final int SAVAGE_BLOW = 4201005;
|
||||
}
|
||||
45
src/constants/skills/Beginner.java
Normal file
45
src/constants/skills/Beginner.java
Normal file
@@ -0,0 +1,45 @@
|
||||
/*
|
||||
This file is part of the OdinMS Maple Story Server
|
||||
Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc>
|
||||
Matthias Butz <matze@odinms.de>
|
||||
Jan Christian Meyer <vimes@odinms.de>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License as
|
||||
published by the Free Software Foundation version 3 as published by
|
||||
the Free Software Foundation. You may not use, modify or distribute
|
||||
this program under any other version of the GNU Affero General Public
|
||||
License.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package constants.skills;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author BubblesDev
|
||||
*/
|
||||
public class Beginner {
|
||||
public static final int BLESSING_OF_THE_FAIRY = 12;
|
||||
public static final int FOLLOW_THE_LEADER = 8;
|
||||
public static final int THREE_SNAILS = 1001;
|
||||
public static final int RECOVERY = 1001;
|
||||
public static final int NIMBLE_FEET = 1002;
|
||||
public static final int MONSTER_RIDER = 1004;
|
||||
public static final int ECHO_OF_HERO = 1005;
|
||||
public static final int BAMBOO_RAIN = 1009;
|
||||
public static final int INVINCIBLE_BARRIER = 1010;
|
||||
public static final int BERSERK_FURY = 1011;
|
||||
public static final int SPACESHIP = 1013;
|
||||
public static final int SPACE_DASH = 1014;
|
||||
public static final int YETI_MOUNT1 = 1017;
|
||||
public static final int YETI_MOUNT2 = 1018;
|
||||
public static final int WITCH_BROOMSTICK = 1019;
|
||||
public static final int BALROG_MOUNT = 1031;
|
||||
}
|
||||
38
src/constants/skills/Bishop.java
Normal file
38
src/constants/skills/Bishop.java
Normal file
@@ -0,0 +1,38 @@
|
||||
/*
|
||||
This file is part of the OdinMS Maple Story Server
|
||||
Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc>
|
||||
Matthias Butz <matze@odinms.de>
|
||||
Jan Christian Meyer <vimes@odinms.de>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License as
|
||||
published by the Free Software Foundation version 3 as published by
|
||||
the Free Software Foundation. You may not use, modify or distribute
|
||||
this program under any other version of the GNU Affero General Public
|
||||
License.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package constants.skills;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author BubblesDev
|
||||
*/
|
||||
public class Bishop {
|
||||
public static final int MAPLE_WARRIOR = 2321000;
|
||||
public static final int BIG_BANG = 2321001;
|
||||
public static final int MANA_REFLECTION = 2321002;
|
||||
public static final int BAHAMUT = 2321003;
|
||||
public static final int INFINITY = 2321004;
|
||||
public static final int HOLY_SHIELD = 2321005;
|
||||
public static final int RESURRECTION = 2321006;
|
||||
public static final int GENESIS = 2321008;
|
||||
public static final int HEROS_WILL = 2321009;
|
||||
}
|
||||
43
src/constants/skills/BlazeWizard.java
Normal file
43
src/constants/skills/BlazeWizard.java
Normal file
@@ -0,0 +1,43 @@
|
||||
/*
|
||||
This file is part of the OdinMS Maple Story Server
|
||||
Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc>
|
||||
Matthias Butz <matze@odinms.de>
|
||||
Jan Christian Meyer <vimes@odinms.de>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License as
|
||||
published by the Free Software Foundation version 3 as published by
|
||||
the Free Software Foundation. You may not use, modify or distribute
|
||||
this program under any other version of the GNU Affero General Public
|
||||
License.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package constants.skills;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author BubblesDev
|
||||
*/
|
||||
public class BlazeWizard {
|
||||
public static final int ELEMENTAL_RESET = 12101005;
|
||||
public static final int ELEMENT_AMPLIFICATION = 12110001;
|
||||
public static final int FIRE_STRIKE = 12111006;
|
||||
public static final int FLAME = 12001004;
|
||||
public static final int FLAME_GEAR = 12111005;
|
||||
public static final int IFRIT = 12111004;
|
||||
public static final int INCREASING_MAX_MP = 12000000;
|
||||
public static final int MAGIC_ARMOR = 12001002;
|
||||
public static final int MAGIC_GUARD = 12001001;
|
||||
public static final int MEDITATION = 12101000;
|
||||
public static final int SEAL = 12111002;
|
||||
public static final int SLOW = 12101001;
|
||||
public static final int SPELL_BOOSTER = 12101004;
|
||||
public static final int FIRE_PILLAR = 12101006;
|
||||
}
|
||||
37
src/constants/skills/Bowmaster.java
Normal file
37
src/constants/skills/Bowmaster.java
Normal file
@@ -0,0 +1,37 @@
|
||||
/*
|
||||
This file is part of the OdinMS Maple Story Server
|
||||
Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc>
|
||||
Matthias Butz <matze@odinms.de>
|
||||
Jan Christian Meyer <vimes@odinms.de>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License as
|
||||
published by the Free Software Foundation version 3 as published by
|
||||
the Free Software Foundation. You may not use, modify or distribute
|
||||
this program under any other version of the GNU Affero General Public
|
||||
License.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package constants.skills;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author BubblesDev
|
||||
*/
|
||||
public class Bowmaster {
|
||||
public static final int MAPLE_WARRIOR = 3121000;
|
||||
public static final int SHARP_EYES = 3121002;
|
||||
public static final int HURRICANE = 3121004;
|
||||
public static final int BOW_EXPERT = 3120005;
|
||||
public static final int PHOENIX = 3121006;
|
||||
public static final int HAMSTRING = 3121007;
|
||||
public static final int CONCENTRATE = 3121008;
|
||||
public static final int HEROS_WILL = 3121009;
|
||||
}
|
||||
37
src/constants/skills/Brawler.java
Normal file
37
src/constants/skills/Brawler.java
Normal file
@@ -0,0 +1,37 @@
|
||||
/*
|
||||
This file is part of the OdinMS Maple Story Server
|
||||
Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc>
|
||||
Matthias Butz <matze@odinms.de>
|
||||
Jan Christian Meyer <vimes@odinms.de>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License as
|
||||
published by the Free Software Foundation version 3 as published by
|
||||
the Free Software Foundation. You may not use, modify or distribute
|
||||
this program under any other version of the GNU Affero General Public
|
||||
License.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package constants.skills;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author BubblesDev
|
||||
*/
|
||||
public class Brawler {
|
||||
public static final int IMPROVE_MAX_HP = 5100000;
|
||||
public static final int KNUCKLER_MASTERY = 5100001;
|
||||
public static final int BACK_SPIN_BLOW = 5101002;
|
||||
public static final int DOUBLE_UPPERCUT = 5101003;
|
||||
public static final int CORKSCREW_BLOW = 5101004;
|
||||
public static final int MP_RECOVERY = 5101005;
|
||||
public static final int KNUCKLER_BOOSTER = 5101006;
|
||||
public static final int OAK_BARREL = 5101007;
|
||||
}
|
||||
39
src/constants/skills/Buccaneer.java
Normal file
39
src/constants/skills/Buccaneer.java
Normal file
@@ -0,0 +1,39 @@
|
||||
/*
|
||||
This file is part of the OdinMS Maple Story Server
|
||||
Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc>
|
||||
Matthias Butz <matze@odinms.de>
|
||||
Jan Christian Meyer <vimes@odinms.de>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License as
|
||||
published by the Free Software Foundation version 3 as published by
|
||||
the Free Software Foundation. You may not use, modify or distribute
|
||||
this program under any other version of the GNU Affero General Public
|
||||
License.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package constants.skills;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author BubblesDev
|
||||
*/
|
||||
public class Buccaneer {
|
||||
public static final int MAPLE_WARRIOR = 5121000;
|
||||
public static final int ENERGY_ORB = 5121002;
|
||||
public static final int SUPER_TRANSFORMATION = 5121003;
|
||||
public static final int DEMOLITION = 5121004;
|
||||
public static final int SNATCH = 5121005;
|
||||
public static final int BARRAGE = 5121007;
|
||||
public static final int PIRATES_RAGE = 5121008;
|
||||
public static final int SPEED_INFUSION = 5121009;
|
||||
public static final int TIME_LEAP = 5121010;
|
||||
public static final int DRAGON_STRIKE = 5121001;
|
||||
}
|
||||
35
src/constants/skills/ChiefBandit.java
Normal file
35
src/constants/skills/ChiefBandit.java
Normal file
@@ -0,0 +1,35 @@
|
||||
/*
|
||||
This file is part of the OdinMS Maple Story Server
|
||||
Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc>
|
||||
Matthias Butz <matze@odinms.de>
|
||||
Jan Christian Meyer <vimes@odinms.de>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License as
|
||||
published by the Free Software Foundation version 3 as published by
|
||||
the Free Software Foundation. You may not use, modify or distribute
|
||||
this program under any other version of the GNU Affero General Public
|
||||
License.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package constants.skills;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author BubblesDev
|
||||
*/
|
||||
public class ChiefBandit {
|
||||
public static final int CHAKRA = 4211001;
|
||||
public static final int ASSAULTER = 4211002;
|
||||
public static final int PICKPOCKET = 4211003;
|
||||
public static final int BAND_OF_THIEVES = 4211004;
|
||||
public static final int MESO_GUARD = 4211005;
|
||||
public static final int MESO_EXPLOSION = 4211006;
|
||||
}
|
||||
29
src/constants/skills/Cleric.java
Normal file
29
src/constants/skills/Cleric.java
Normal file
@@ -0,0 +1,29 @@
|
||||
/*
|
||||
This file is part of the OdinMS Maple Story Server
|
||||
Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc>
|
||||
Matthias Butz <matze@odinms.de>
|
||||
Jan Christian Meyer <vimes@odinms.de>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License as
|
||||
published by the Free Software Foundation version 3 as published by
|
||||
the Free Software Foundation. You may not use, modify or distribute
|
||||
this program under any other version of the GNU Affero General Public
|
||||
License.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package constants.skills;
|
||||
|
||||
public class Cleric {
|
||||
public static final int MP_EATER = 2300000;
|
||||
public static final int HEAL = 2301002;
|
||||
public static final int INVINCIBLE = 2301003;
|
||||
public static final int BLESS = 2301004;
|
||||
}
|
||||
38
src/constants/skills/Corsair.java
Normal file
38
src/constants/skills/Corsair.java
Normal file
@@ -0,0 +1,38 @@
|
||||
/*
|
||||
This file is part of the OdinMS Maple Story Server
|
||||
Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc>
|
||||
Matthias Butz <matze@odinms.de>
|
||||
Jan Christian Meyer <vimes@odinms.de>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License as
|
||||
published by the Free Software Foundation version 3 as published by
|
||||
the Free Software Foundation. You may not use, modify or distribute
|
||||
this program under any other version of the GNU Affero General Public
|
||||
License.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package constants.skills;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author BubblesDev
|
||||
*/
|
||||
public class Corsair {
|
||||
public static final int MAPLE_WARRIOR = 5221000;
|
||||
public static final int ELEMENTAL_BOOST = 5220001;
|
||||
public static final int WRATH_OF_THE_OCTOPI = 5220002;
|
||||
public static final int AERIAL_STRIKE = 5221003;
|
||||
public static final int RAPID_FIRE = 5221004;
|
||||
public static final int BATTLE_SHIP = 5221006;
|
||||
public static final int HYPNOTIZE = 5221009;
|
||||
public static final int SPEED_INFUSION = 5221010;
|
||||
public static final int BULLSEYE = 5220011;
|
||||
}
|
||||
33
src/constants/skills/Crossbowman.java
Normal file
33
src/constants/skills/Crossbowman.java
Normal file
@@ -0,0 +1,33 @@
|
||||
/*
|
||||
This file is part of the OdinMS Maple Story Server
|
||||
Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc>
|
||||
Matthias Butz <matze@odinms.de>
|
||||
Jan Christian Meyer <vimes@odinms.de>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License as
|
||||
published by the Free Software Foundation version 3 as published by
|
||||
the Free Software Foundation. You may not use, modify or distribute
|
||||
this program under any other version of the GNU Affero General Public
|
||||
License.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package constants.skills;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author BubblesDev
|
||||
*/
|
||||
public class Crossbowman {
|
||||
public static final int CROSSBOW_MASTERY = 3200000;
|
||||
public static final int FINAL_ATTACK = 3200001;
|
||||
public static final int CROSSBOW_BOOSTER = 3201002;
|
||||
public static final int SOUL_ARROW = 3201004;
|
||||
}
|
||||
36
src/constants/skills/Crusader.java
Normal file
36
src/constants/skills/Crusader.java
Normal file
@@ -0,0 +1,36 @@
|
||||
/*
|
||||
This file is part of the OdinMS Maple Story Server
|
||||
Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc>
|
||||
Matthias Butz <matze@odinms.de>
|
||||
Jan Christian Meyer <vimes@odinms.de>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License as
|
||||
published by the Free Software Foundation version 3 as published by
|
||||
the Free Software Foundation. You may not use, modify or distribute
|
||||
this program under any other version of the GNU Affero General Public
|
||||
License.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package constants.skills;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author BubblesDev
|
||||
*/
|
||||
public class Crusader {
|
||||
public static final int COMBO = 1111002;
|
||||
public static final int SWORD_PANIC = 1111003;
|
||||
public static final int AXE_PANIC = 1111004;
|
||||
public static final int SWORD_COMA = 1111005;
|
||||
public static final int AXE_COMA = 1111006;
|
||||
public static final int ARMOR_CRASH = 1111007;
|
||||
public static final int SHOUT = 1111008;
|
||||
}
|
||||
39
src/constants/skills/DarkKnight.java
Normal file
39
src/constants/skills/DarkKnight.java
Normal file
@@ -0,0 +1,39 @@
|
||||
/*
|
||||
This file is part of the OdinMS Maple Story Server
|
||||
Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc>
|
||||
Matthias Butz <matze@odinms.de>
|
||||
Jan Christian Meyer <vimes@odinms.de>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License as
|
||||
published by the Free Software Foundation version 3 as published by
|
||||
the Free Software Foundation. You may not use, modify or distribute
|
||||
this program under any other version of the GNU Affero General Public
|
||||
License.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package constants.skills;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author BubblesDev
|
||||
*/
|
||||
public class DarkKnight {
|
||||
public static final int MAPLE_WARRIOR = 1321000;
|
||||
public static final int MONSTER_MAGNET = 1321001;
|
||||
public static final int STANCE = 1321002;
|
||||
public static final int RUSH = 1321003;
|
||||
public static final int ACHILLES = 1320005;
|
||||
public static final int BERSERK = 1320006;
|
||||
public static final int BEHOLDER = 1321007;
|
||||
public static final int AURA_OF_BEHOLDER = 1320008;
|
||||
public static final int HEX_OF_BEHOLDER = 1320009;
|
||||
public static final int HEROS_WILL = 1321010;
|
||||
}
|
||||
42
src/constants/skills/DawnWarrior.java
Normal file
42
src/constants/skills/DawnWarrior.java
Normal file
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
This file is part of the OdinMS Maple Story Server
|
||||
Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc>
|
||||
Matthias Butz <matze@odinms.de>
|
||||
Jan Christian Meyer <vimes@odinms.de>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License as
|
||||
published by the Free Software Foundation version 3 as published by
|
||||
the Free Software Foundation. You may not use, modify or distribute
|
||||
this program under any other version of the GNU Affero General Public
|
||||
License.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package constants.skills;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author BubblesDev
|
||||
*/
|
||||
public class DawnWarrior {
|
||||
public static final int MAX_HP_INCREASE = 11000000;
|
||||
public static final int IRON_BODY = 11001001;
|
||||
public static final int SOUL = 11001004;
|
||||
public static final int SWORD_MASTERY = 11100000;
|
||||
public static final int SWORD_BOOSTER = 11101001;
|
||||
public static final int FINAL_ATTACK = 11101002;
|
||||
public static final int RAGE = 11101003;
|
||||
public static final int INCREASED_MP_RECOVERY = 11110000;
|
||||
public static final int COMBO = 11111001;
|
||||
public static final int PANIC = 11111002;
|
||||
public static final int COMA = 11111003;
|
||||
public static final int ADVANCED_COMBO = 11110005;
|
||||
public static final int SOUL_CHARGE = 11111007;
|
||||
}
|
||||
36
src/constants/skills/DragonKnight.java
Normal file
36
src/constants/skills/DragonKnight.java
Normal file
@@ -0,0 +1,36 @@
|
||||
/*
|
||||
This file is part of the OdinMS Maple Story Server
|
||||
Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc>
|
||||
Matthias Butz <matze@odinms.de>
|
||||
Jan Christian Meyer <vimes@odinms.de>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License as
|
||||
published by the Free Software Foundation version 3 as published by
|
||||
the Free Software Foundation. You may not use, modify or distribute
|
||||
this program under any other version of the GNU Affero General Public
|
||||
License.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package constants.skills;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author David
|
||||
*/
|
||||
public class DragonKnight {
|
||||
public static final int ELEMENTAL_RESISTANCE = 1310000;
|
||||
public static final int SPEAR_CRUSHER = 1311001;
|
||||
public static final int POLE_ARM_CRUSHER = 1311002;
|
||||
public static final int SACRIFICE = 1311005;
|
||||
public static final int DRAGON_ROAR = 1311006;
|
||||
public static final int POWER_CRASH = 1311007;
|
||||
public static final int DRAGON_BLOOD = 1311008;
|
||||
}
|
||||
58
src/constants/skills/Evan.java
Normal file
58
src/constants/skills/Evan.java
Normal file
@@ -0,0 +1,58 @@
|
||||
package constants.skills;
|
||||
|
||||
public class Evan {
|
||||
// EVAN1
|
||||
public static final int BLESSING_OF_THE_FAIRY = 20010012;
|
||||
public static final int THREE_SNAILS = 20011000;
|
||||
public static final int RECOVERY = 20011001;
|
||||
public static final int NIMBLE_FEET = 20011002;
|
||||
public static final int LEGENDARY_SPIRIT = 20011003;
|
||||
public static final int MONSTER_RIDER = 20011004;
|
||||
public static final int JUMP_DOWN = 20011006;
|
||||
public static final int ECHO_OF_HERO = 20011005;
|
||||
public static final int MAKER = 20011007;
|
||||
public static final int BAMBOO_THRUST = 20011009;
|
||||
public static final int INVINCIBLE_BARRIER = 20011010;
|
||||
public static final int BERSERK_FURY = 20011011;
|
||||
// EVAN2
|
||||
public static final int DRAGON_SOUL = 22000000;
|
||||
public static final int MAGIC_MISSILE = 22001001;
|
||||
// EVAN3
|
||||
public static final int FIRE_CIRCLE = 22101000;
|
||||
public static final int TELEPORT = 22101001;
|
||||
// EVAN4
|
||||
public static final int LIGHTNING_BOLT = 22111000;
|
||||
public static final int MAGIC_GUARD = 22111001;
|
||||
// EVAN5
|
||||
public static final int ICE_BREATH = 22121000;
|
||||
public static final int ELEMENTAL_RESET = 22121001;
|
||||
// EVAN6
|
||||
public static final int MAGIC_FLARE = 22131000;
|
||||
public static final int MAGIC_SHIELD = 22131001;
|
||||
// EVAN7
|
||||
public static final int CRITICAL_MAGIC = 22140000;
|
||||
public static final int DRAGON_THRUST = 22141001;
|
||||
public static final int MAGIC_BOOSTER = 22141002;
|
||||
public static final int SLOW = 22141003;
|
||||
// EVAN8
|
||||
public static final int MAGIC_AMPLIFICATION = 22150000;
|
||||
public static final int FIRE_BREATH = 22151001;
|
||||
public static final int KILLER_WINGS = 22151002;
|
||||
public static final int MAGIC_RESISTANCE = 22151003;
|
||||
// EVAN9
|
||||
public static final int DRAGON_FURY = 22160000;
|
||||
public static final int EARTHQUAKE = 22161001;
|
||||
public static final int PHANTOM_IMPRINT = 22161002;
|
||||
public static final int RECOVERY_AURA = 22161003;
|
||||
// EVAN10
|
||||
public static final int MAGIC_MASTERY = 22170001;
|
||||
public static final int MAPLE_WARRIOR = 22171000;
|
||||
public static final int ILLUSION = 22171002;
|
||||
public static final int FLAME_WHEEL = 22171003;
|
||||
public static final int HEROS_WILL = 22171004;
|
||||
// EVAN11
|
||||
public static final int BLESSING_OF_THE_ONYX = 22181000;
|
||||
public static final int BLAZE = 22181001;
|
||||
public static final int DARK_FOG = 22181002;
|
||||
public static final int SOUL_STONE = 22181003;
|
||||
}
|
||||
38
src/constants/skills/FPArchMage.java
Normal file
38
src/constants/skills/FPArchMage.java
Normal file
@@ -0,0 +1,38 @@
|
||||
/*
|
||||
This file is part of the OdinMS Maple Story Server
|
||||
Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc>
|
||||
Matthias Butz <matze@odinms.de>
|
||||
Jan Christian Meyer <vimes@odinms.de>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License as
|
||||
published by the Free Software Foundation version 3 as published by
|
||||
the Free Software Foundation. You may not use, modify or distribute
|
||||
this program under any other version of the GNU Affero General Public
|
||||
License.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package constants.skills;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author BubblesDev
|
||||
*/
|
||||
public class FPArchMage {
|
||||
public static final int MAPLE_WARRIOR = 2121000;
|
||||
public static final int BIG_BANG = 2121001;
|
||||
public static final int MANA_REFLECTION = 2121002;
|
||||
public static final int FIRE_DEMON = 2121003;
|
||||
public static final int INFINITY = 2121004;
|
||||
public static final int ELQUINES = 2121005;
|
||||
public static final int PARALYZE = 2121006;
|
||||
public static final int METEOR_SHOWER = 2121007;
|
||||
public static final int HEROS_WILL = 2121008;
|
||||
}
|
||||
36
src/constants/skills/FPMage.java
Normal file
36
src/constants/skills/FPMage.java
Normal file
@@ -0,0 +1,36 @@
|
||||
/*
|
||||
This file is part of the OdinMS Maple Story Server
|
||||
Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc>
|
||||
Matthias Butz <matze@odinms.de>
|
||||
Jan Christian Meyer <vimes@odinms.de>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License as
|
||||
published by the Free Software Foundation version 3 as published by
|
||||
the Free Software Foundation. You may not use, modify or distribute
|
||||
this program under any other version of the GNU Affero General Public
|
||||
License.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package constants.skills;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author BubblesDev
|
||||
*/
|
||||
public class FPMage {
|
||||
public static final int PARTIAL_RESISTANCE = 2110000;
|
||||
public static final int ELEMENT_AMPLIFICATION = 2110001;
|
||||
public static final int EXPLOSION = 2111002;
|
||||
public static final int POISON_MIST = 2111003;
|
||||
public static final int SEAL = 2111004;
|
||||
public static final int SPELL_BOOSTER = 2111005;
|
||||
public static final int ELEMENT_COMPOSITION = 2111006;
|
||||
}
|
||||
33
src/constants/skills/FPWizard.java
Normal file
33
src/constants/skills/FPWizard.java
Normal file
@@ -0,0 +1,33 @@
|
||||
/*
|
||||
This file is part of the OdinMS Maple Story Server
|
||||
Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc>
|
||||
Matthias Butz <matze@odinms.de>
|
||||
Jan Christian Meyer <vimes@odinms.de>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License as
|
||||
published by the Free Software Foundation version 3 as published by
|
||||
the Free Software Foundation. You may not use, modify or distribute
|
||||
this program under any other version of the GNU Affero General Public
|
||||
License.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package constants.skills;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author BubblesDev
|
||||
*/
|
||||
public class FPWizard {
|
||||
public static final int MP_EATER = 2100000;
|
||||
public static final int MEDITATION = 2101001;
|
||||
public static final int SLOW = 2101003;
|
||||
public static final int POISON_BREATH = 2101005;
|
||||
}
|
||||
37
src/constants/skills/Fighter.java
Normal file
37
src/constants/skills/Fighter.java
Normal file
@@ -0,0 +1,37 @@
|
||||
/*
|
||||
This file is part of the OdinMS Maple Story Server
|
||||
Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc>
|
||||
Matthias Butz <matze@odinms.de>
|
||||
Jan Christian Meyer <vimes@odinms.de>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License as
|
||||
published by the Free Software Foundation version 3 as published by
|
||||
the Free Software Foundation. You may not use, modify or distribute
|
||||
this program under any other version of the GNU Affero General Public
|
||||
License.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package constants.skills;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author BubblesDev
|
||||
*/
|
||||
public class Fighter {
|
||||
public static final int SWORD_MASTERY = 1100000;
|
||||
public static final int AXE_MASTERY = 1100001;
|
||||
public static final int FINAL_ATTACK_SWORD = 1100002;
|
||||
public static final int FINAL_ATTACK_AXE = 1100003;
|
||||
public static final int SWORD_BOOSTER = 1101004;
|
||||
public static final int AXE_BOOSTER = 1101005;
|
||||
public static final int RAGE = 1101006;
|
||||
public static final int POWER_GUARD = 1101007;
|
||||
}
|
||||
38
src/constants/skills/GM.java
Normal file
38
src/constants/skills/GM.java
Normal file
@@ -0,0 +1,38 @@
|
||||
/*
|
||||
This file is part of the OdinMS Maple Story Server
|
||||
Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc>
|
||||
Matthias Butz <matze@odinms.de>
|
||||
Jan Christian Meyer <vimes@odinms.de>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License as
|
||||
published by the Free Software Foundation version 3 as published by
|
||||
the Free Software Foundation. You may not use, modify or distribute
|
||||
this program under any other version of the GNU Affero General Public
|
||||
License.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package constants.skills;
|
||||
/**
|
||||
*
|
||||
* @author BubblesDev
|
||||
*/
|
||||
public class GM {
|
||||
public static final int GM_ROAR1 = 9001001;
|
||||
public static final int GM_TELEPORT = 9001002;
|
||||
public static final int HIDE = 9001004;
|
||||
public static final int RESURRECTION = 9001005;
|
||||
public static final int GM_ROAR2 = 9001006;
|
||||
public static final int GM_TELEPORT2 = 9001007;
|
||||
public static final int HYPER_BODY = 9001008;
|
||||
public static final int ANTI_MACRO = 9001009;
|
||||
public static final int HASTE = 9101000;
|
||||
public static final int BLESS = 9101003;
|
||||
}
|
||||
35
src/constants/skills/Gunslinger.java
Normal file
35
src/constants/skills/Gunslinger.java
Normal file
@@ -0,0 +1,35 @@
|
||||
/*
|
||||
This file is part of the OdinMS Maple Story Server
|
||||
Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc>
|
||||
Matthias Butz <matze@odinms.de>
|
||||
Jan Christian Meyer <vimes@odinms.de>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License as
|
||||
published by the Free Software Foundation version 3 as published by
|
||||
the Free Software Foundation. You may not use, modify or distribute
|
||||
this program under any other version of the GNU Affero General Public
|
||||
License.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package constants.skills;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author BubblesDev
|
||||
*/
|
||||
public class Gunslinger {
|
||||
public static final int GUN_MASTERY = 5200000;
|
||||
public static final int INVISIBLE_SHOT = 5201001;
|
||||
public static final int GRENADE = 5201002;
|
||||
public static final int GUN_BOOSTER = 5201003;
|
||||
public static final int BLANK_SHOT = 5201004;
|
||||
public static final int RECOIL_SHOT = 5201006;
|
||||
}
|
||||
36
src/constants/skills/Hermit.java
Normal file
36
src/constants/skills/Hermit.java
Normal file
@@ -0,0 +1,36 @@
|
||||
/*
|
||||
This file is part of the OdinMS Maple Story Server
|
||||
Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc>
|
||||
Matthias Butz <matze@odinms.de>
|
||||
Jan Christian Meyer <vimes@odinms.de>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License as
|
||||
published by the Free Software Foundation version 3 as published by
|
||||
the Free Software Foundation. You may not use, modify or distribute
|
||||
this program under any other version of the GNU Affero General Public
|
||||
License.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package constants.skills;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author BubblesDev
|
||||
*/
|
||||
public class Hermit {
|
||||
public static final int ALCHEMIST = 4110000;
|
||||
public static final int MESO_UP = 4111001;
|
||||
public static final int SHADOW_PARTNER = 4111002;
|
||||
public static final int SHADOW_WEB = 4111003;
|
||||
public static final int SHADOW_MESO = 4111004;
|
||||
public static final int AVENGER = 4111005;
|
||||
public static final int FLASH_JUML = 4111006;
|
||||
}
|
||||
39
src/constants/skills/Hero.java
Normal file
39
src/constants/skills/Hero.java
Normal file
@@ -0,0 +1,39 @@
|
||||
/*
|
||||
This file is part of the OdinMS Maple Story Server
|
||||
Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc>
|
||||
Matthias Butz <matze@odinms.de>
|
||||
Jan Christian Meyer <vimes@odinms.de>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License as
|
||||
published by the Free Software Foundation version 3 as published by
|
||||
the Free Software Foundation. You may not use, modify or distribute
|
||||
this program under any other version of the GNU Affero General Public
|
||||
License.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package constants.skills;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author BubblesDev
|
||||
*/
|
||||
public class Hero {
|
||||
public static final int MAPLE_WARRIOR = 1121000;
|
||||
public static final int MONSTER_MAGNET = 1121001;
|
||||
public static final int STANCE = 1121002;
|
||||
public static final int ADVANCED_COMBO = 1120003;
|
||||
public static final int ACHILLES = 1120004;
|
||||
public static final int GUARDIAN = 1120005;
|
||||
public static final int RUSH = 1121006;
|
||||
public static final int ENRAGE = 1121010;
|
||||
public static final int HEROS_WILL = 1121011;
|
||||
public static final int BRANDISH = 1121008;
|
||||
}
|
||||
34
src/constants/skills/Hunter.java
Normal file
34
src/constants/skills/Hunter.java
Normal file
@@ -0,0 +1,34 @@
|
||||
/*
|
||||
This file is part of the OdinMS Maple Story Server
|
||||
Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc>
|
||||
Matthias Butz <matze@odinms.de>
|
||||
Jan Christian Meyer <vimes@odinms.de>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License as
|
||||
published by the Free Software Foundation version 3 as published by
|
||||
the Free Software Foundation. You may not use, modify or distribute
|
||||
this program under any other version of the GNU Affero General Public
|
||||
License.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package constants.skills;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author BubblesDev
|
||||
*/
|
||||
public class Hunter {
|
||||
public static final int BOW_MASTERY = 3100000;
|
||||
public static final int FINAL_ATTACK = 3100001;
|
||||
public static final int BOW_BOOSTER = 3101002;
|
||||
public static final int SOUL_ARROW = 3101004;
|
||||
public static final int ARROW_BOMB = 3101005;
|
||||
}
|
||||
38
src/constants/skills/ILArchMage.java
Normal file
38
src/constants/skills/ILArchMage.java
Normal file
@@ -0,0 +1,38 @@
|
||||
/*
|
||||
This file is part of the OdinMS Maple Story Server
|
||||
Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc>
|
||||
Matthias Butz <matze@odinms.de>
|
||||
Jan Christian Meyer <vimes@odinms.de>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License as
|
||||
published by the Free Software Foundation version 3 as published by
|
||||
the Free Software Foundation. You may not use, modify or distribute
|
||||
this program under any other version of the GNU Affero General Public
|
||||
License.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package constants.skills;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author BubblesDev
|
||||
*/
|
||||
public class ILArchMage {
|
||||
public static final int MAPLE_WARRIOR = 2221000;
|
||||
public static final int BIG_BANG = 2221001;
|
||||
public static final int MANA_REFLECTION = 2221002;
|
||||
public static final int ICE_DEMON = 2221003;
|
||||
public static final int INFINITY = 2221004;
|
||||
public static final int IFRIT = 2221005;
|
||||
public static final int BLIZZARD = 2221007;
|
||||
public static final int HEROS_WILL = 2221008;
|
||||
public static final int CHAIN_LIGHTNING = 2221006;
|
||||
}
|
||||
35
src/constants/skills/ILMage.java
Normal file
35
src/constants/skills/ILMage.java
Normal file
@@ -0,0 +1,35 @@
|
||||
/*
|
||||
This file is part of the OdinMS Maple Story Server
|
||||
Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc>
|
||||
Matthias Butz <matze@odinms.de>
|
||||
Jan Christian Meyer <vimes@odinms.de>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License as
|
||||
published by the Free Software Foundation version 3 as published by
|
||||
the Free Software Foundation. You may not use, modify or distribute
|
||||
this program under any other version of the GNU Affero General Public
|
||||
License.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package constants.skills;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author BubblesDev
|
||||
*/
|
||||
public class ILMage {
|
||||
public static final int PARTIAL_RESISTANCE = 2210000;
|
||||
public static final int ELEMENT_AMPLIFICATION = 2210001;
|
||||
public static final int ICE_STRIKE = 2211002;
|
||||
public static final int SEAL = 2211004;
|
||||
public static final int SPELL_BOOSTER = 2211005;
|
||||
public static final int ELEMENT_COMPOSITION = 2211006;
|
||||
}
|
||||
33
src/constants/skills/ILWizard.java
Normal file
33
src/constants/skills/ILWizard.java
Normal file
@@ -0,0 +1,33 @@
|
||||
/*
|
||||
This file is part of the OdinMS Maple Story Server
|
||||
Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc>
|
||||
Matthias Butz <matze@odinms.de>
|
||||
Jan Christian Meyer <vimes@odinms.de>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License as
|
||||
published by the Free Software Foundation version 3 as published by
|
||||
the Free Software Foundation. You may not use, modify or distribute
|
||||
this program under any other version of the GNU Affero General Public
|
||||
License.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package constants.skills;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author BubblesDev
|
||||
*/
|
||||
public class ILWizard {
|
||||
public static final int MP_EATER = 2200000;
|
||||
public static final int MEDITATION = 2201001;
|
||||
public static final int SLOW = 2201003;
|
||||
public static final int COLD_BEAM = 2201004;
|
||||
}
|
||||
50
src/constants/skills/Legend.java
Normal file
50
src/constants/skills/Legend.java
Normal file
@@ -0,0 +1,50 @@
|
||||
/*
|
||||
This file is part of the OdinMS Maple Story Server
|
||||
Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc>
|
||||
Matthias Butz <matze@odinms.de>
|
||||
Jan Christian Meyer <vimes@odinms.de>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License as
|
||||
published by the Free Software Foundation version 3 as published by
|
||||
the Free Software Foundation. You may not use, modify or distribute
|
||||
this program under any other version of the GNU Affero General Public
|
||||
License.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package constants.skills;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author kevintjuh93
|
||||
*/
|
||||
public class Legend {
|
||||
public static final int THREE_SNAILS = 20001000;
|
||||
public static final int RECOVERY = 20001001;
|
||||
public static final int AGILE_BODY = 20001002;
|
||||
public static final int LEGENDARY_SPIRIT = 20001003;
|
||||
public static final int MONSTER_RIDER = 20001004;
|
||||
public static final int ECHO_OF_HERO = 20001005;
|
||||
public static final int JUMP_DOWN = 20001006;
|
||||
public static final int MAKER = 20001007;
|
||||
public static final int BAMBOO_THRUST = 20001009;
|
||||
public static final int INVICIBLE_BARRIER = 20001010;
|
||||
public static final int METEO_SHOWER = 20001011;
|
||||
public static final int BLESSING_OF_THE_FAIRY = 20000012;
|
||||
public static final int TUTORIAL_SKILL1 = 20000014;
|
||||
public static final int TUTORIAL_SKILL2 = 20000015;
|
||||
public static final int TUTORIAL_SKILL3 = 20000016;
|
||||
public static final int TUTORIAL_SKILL4 = 20000017; //combo
|
||||
public static final int TUTORIAL_SKILL5 = 20000018; //critical
|
||||
public static final int YETI_MOUNT1 = 20001019;
|
||||
public static final int YETI_MOUNT2 = 20001022;
|
||||
public static final int WITCH_BROOMSTICK = 20001023;
|
||||
public static final int BALROG_MOUNT = 20001031;
|
||||
}
|
||||
33
src/constants/skills/Magician.java
Normal file
33
src/constants/skills/Magician.java
Normal file
@@ -0,0 +1,33 @@
|
||||
/*
|
||||
This file is part of the OdinMS Maple Story Server
|
||||
Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc>
|
||||
Matthias Butz <matze@odinms.de>
|
||||
Jan Christian Meyer <vimes@odinms.de>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License as
|
||||
published by the Free Software Foundation version 3 as published by
|
||||
the Free Software Foundation. You may not use, modify or distribute
|
||||
this program under any other version of the GNU Affero General Public
|
||||
License.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package constants.skills;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author BubblesDev
|
||||
*/
|
||||
public class Magician {
|
||||
public static final int IMPROVED_MP_RECOVERY = 2000000;
|
||||
public static final int IMPROVED_MAX_MP_INCREASE = 2000001;
|
||||
public static final int MAGIC_GUARD = 2001002;
|
||||
public static final int MAGIC_ARMOR = 2001003;
|
||||
}
|
||||
33
src/constants/skills/Marauder.java
Normal file
33
src/constants/skills/Marauder.java
Normal file
@@ -0,0 +1,33 @@
|
||||
/*
|
||||
This file is part of the OdinMS Maple Story Server
|
||||
Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc>
|
||||
Matthias Butz <matze@odinms.de>
|
||||
Jan Christian Meyer <vimes@odinms.de>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License as
|
||||
published by the Free Software Foundation version 3 as published by
|
||||
the Free Software Foundation. You may not use, modify or distribute
|
||||
this program under any other version of the GNU Affero General Public
|
||||
License.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package constants.skills;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author BubblesDev
|
||||
*/
|
||||
public class Marauder {
|
||||
public static final int STUN_MASTERY = 5110000;
|
||||
public static final int ENERGY_CHARGE = 5110001;
|
||||
public static final int ENERGY_DRAIN = 5111004;
|
||||
public static final int TRANSFORMATION = 5111005;
|
||||
}
|
||||
37
src/constants/skills/Marksman.java
Normal file
37
src/constants/skills/Marksman.java
Normal file
@@ -0,0 +1,37 @@
|
||||
/*
|
||||
This file is part of the OdinMS Maple Story Server
|
||||
Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc>
|
||||
Matthias Butz <matze@odinms.de>
|
||||
Jan Christian Meyer <vimes@odinms.de>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License as
|
||||
published by the Free Software Foundation version 3 as published by
|
||||
the Free Software Foundation. You may not use, modify or distribute
|
||||
this program under any other version of the GNU Affero General Public
|
||||
License.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package constants.skills;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author BubblesDev
|
||||
*/
|
||||
public class Marksman {
|
||||
public static final int MAPLE_WARRIOR = 3221000;
|
||||
public static final int PIERCING_ARROW = 3221001;
|
||||
public static final int SHARP_EYES = 3221002;
|
||||
public static final int MARKSMAN_BOOST = 3220004;
|
||||
public static final int FROST_PREY = 3221005;
|
||||
public static final int BLIND = 3221006;
|
||||
public static final int SNIPE = 3221007;
|
||||
public static final int HEROS_WILL = 3221008;
|
||||
}
|
||||
38
src/constants/skills/NightLord.java
Normal file
38
src/constants/skills/NightLord.java
Normal file
@@ -0,0 +1,38 @@
|
||||
/*
|
||||
This file is part of the OdinMS Maple Story Server
|
||||
Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc>
|
||||
Matthias Butz <matze@odinms.de>
|
||||
Jan Christian Meyer <vimes@odinms.de>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License as
|
||||
published by the Free Software Foundation version 3 as published by
|
||||
the Free Software Foundation. You may not use, modify or distribute
|
||||
this program under any other version of the GNU Affero General Public
|
||||
License.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package constants.skills;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author BubblesDev
|
||||
*/
|
||||
public class NightLord {
|
||||
public static final int MAPLE_WARRIOR = 4121000;
|
||||
public static final int SHADOW_SHIFTER = 4120002;
|
||||
public static final int TAUNT = 4121003;
|
||||
public static final int NINJA_AMBUSH = 4121004;
|
||||
public static final int VENOMOUS_STAR = 4120005;
|
||||
public static final int SHADOW_STARS = 4121006;
|
||||
public static final int TRIPLE_THROW = 4121007;
|
||||
public static final int NINJA_STORM = 4121008;
|
||||
public static final int HEROS_WILL = 4121009;
|
||||
}
|
||||
44
src/constants/skills/NightWalker.java
Normal file
44
src/constants/skills/NightWalker.java
Normal file
@@ -0,0 +1,44 @@
|
||||
/*
|
||||
This file is part of the OdinMS Maple Story Server
|
||||
Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc>
|
||||
Matthias Butz <matze@odinms.de>
|
||||
Jan Christian Meyer <vimes@odinms.de>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License as
|
||||
published by the Free Software Foundation version 3 as published by
|
||||
the Free Software Foundation. You may not use, modify or distribute
|
||||
this program under any other version of the GNU Affero General Public
|
||||
License.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package constants.skills;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author BubblesDev
|
||||
*/
|
||||
public class NightWalker {
|
||||
public static final int ALCHEMIST = 14110003;
|
||||
public static final int DISORDER = 14001002;
|
||||
public static final int DARK_SIGHT = 14001003;
|
||||
public static final int LUCKY_SEVEN = 14001004;
|
||||
public static final int DARKNESS = 14001005;
|
||||
public static final int CLAW_BOOSTER = 14101002;
|
||||
public static final int CLAW_MASTERY = 14100000;
|
||||
public static final int CRITICAL_THROW = 14100001;
|
||||
public static final int HASTE = 14101003;
|
||||
public static final int POISON_BOMB = 14111006;
|
||||
public static final int SHADOW_PARTNER = 14111000;
|
||||
public static final int SHADOW_WEB = 14111001;
|
||||
public static final int VANISH = 14100005;
|
||||
public static final int VAMPIRE = 14101006;
|
||||
public static final int VENOM = 14110004;
|
||||
}
|
||||
45
src/constants/skills/Noblesse.java
Normal file
45
src/constants/skills/Noblesse.java
Normal file
@@ -0,0 +1,45 @@
|
||||
/*
|
||||
This file is part of the OdinMS Maple Story Server
|
||||
Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc>
|
||||
Matthias Butz <matze@odinms.de>
|
||||
Jan Christian Meyer <vimes@odinms.de>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License as
|
||||
published by the Free Software Foundation version 3 as published by
|
||||
the Free Software Foundation. You may not use, modify or distribute
|
||||
this program under any other version of the GNU Affero General Public
|
||||
License.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package constants.skills;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author BubblesDev
|
||||
*/
|
||||
public class Noblesse {
|
||||
public static final int BLESSING_OF_THE_FAIRY = 10000012;
|
||||
public static final int THREE_SNAILS = 10001000;
|
||||
public static final int RECOVERY = 10001001;
|
||||
public static final int NIMBLE_FEET = 10001002;
|
||||
public static final int MONSTER_RIDER = 10001004;
|
||||
public static final int ECHO_OF_HERO = 10001005;
|
||||
public static final int MAKER = 10001007;
|
||||
public static final int BAMBOO_RAIN = 10001009;
|
||||
public static final int INVINCIBLE_BARRIER = 10001010;
|
||||
public static final int BERSERK_FURY = 10001011;
|
||||
public static final int SPACESHIP = 1001014;
|
||||
public static final int SPACE_DASH = 1001015;
|
||||
public static final int YETI_MOUNT1 = 10001019;
|
||||
public static final int YETI_MOUNT2 = 10001022;
|
||||
public static final int WITCH_BROOMSTICK = 10001023;
|
||||
public static final int BALROG_MOUNT = 10001031;
|
||||
}
|
||||
34
src/constants/skills/Outlaw.java
Normal file
34
src/constants/skills/Outlaw.java
Normal file
@@ -0,0 +1,34 @@
|
||||
/*
|
||||
This file is part of the OdinMS Maple Story Server
|
||||
Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc>
|
||||
Matthias Butz <matze@odinms.de>
|
||||
Jan Christian Meyer <vimes@odinms.de>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License as
|
||||
published by the Free Software Foundation version 3 as published by
|
||||
the Free Software Foundation. You may not use, modify or distribute
|
||||
this program under any other version of the GNU Affero General Public
|
||||
License.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package constants.skills;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author BubblesDev
|
||||
*/
|
||||
public class Outlaw {
|
||||
public static final int OCTOPUS = 5211001;
|
||||
public static final int GAVIOTA = 5211002;
|
||||
public static final int FLAME_THROWER = 5211004;
|
||||
public static final int HOMING_BEACON = 5211006;
|
||||
public static final int ICE_SPLITTER = 5211005;
|
||||
}
|
||||
37
src/constants/skills/Page.java
Normal file
37
src/constants/skills/Page.java
Normal file
@@ -0,0 +1,37 @@
|
||||
/*
|
||||
This file is part of the OdinMS Maple Story Server
|
||||
Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc>
|
||||
Matthias Butz <matze@odinms.de>
|
||||
Jan Christian Meyer <vimes@odinms.de>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License as
|
||||
published by the Free Software Foundation version 3 as published by
|
||||
the Free Software Foundation. You may not use, modify or distribute
|
||||
this program under any other version of the GNU Affero General Public
|
||||
License.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package constants.skills;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author BubblesDev
|
||||
*/
|
||||
public class Page {
|
||||
public static final int SWORD_MASTERY = 1200000;
|
||||
public static final int BW_MASTERY = 1200001;
|
||||
public static final int FINAL_ATTACK_SWORD = 1200002;
|
||||
public static final int FINAL_ATTACK_BW = 1200003;
|
||||
public static final int SWORD_BOOSTER = 1201004;
|
||||
public static final int BW_BOOSTER = 1201005;
|
||||
public static final int THREATEN = 1201006;
|
||||
public static final int POWER_GUARD = 1201007;
|
||||
}
|
||||
41
src/constants/skills/Paladin.java
Normal file
41
src/constants/skills/Paladin.java
Normal file
@@ -0,0 +1,41 @@
|
||||
/*
|
||||
This file is part of the OdinMS Maple Story Server
|
||||
Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc>
|
||||
Matthias Butz <matze@odinms.de>
|
||||
Jan Christian Meyer <vimes@odinms.de>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License as
|
||||
published by the Free Software Foundation version 3 as published by
|
||||
the Free Software Foundation. You may not use, modify or distribute
|
||||
this program under any other version of the GNU Affero General Public
|
||||
License.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package constants.skills;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author BubblesDev
|
||||
*/
|
||||
public class Paladin {
|
||||
public static final int MAPLE_WARRIOR = 1221000;
|
||||
public static final int MONSTER_MAGNET = 1221001;
|
||||
public static final int STANCE = 1221002;
|
||||
public static final int SWORD_HOLY_CHARGE = 1221003;
|
||||
public static final int BW_HOLY_CHARGE = 1221004;
|
||||
public static final int ACHILLES = 1220005;
|
||||
public static final int GUARDIAN = 1220006;
|
||||
public static final int RUSH = 1221007;
|
||||
public static final int ADVANCED_CHARGE = 1220010;
|
||||
public static final int HEAVENS_HAMMER = 1221011;
|
||||
public static final int HEROS_WILL = 1221012;
|
||||
public static final int BLAST = 1221009;
|
||||
}
|
||||
30
src/constants/skills/Pirate.java
Normal file
30
src/constants/skills/Pirate.java
Normal file
@@ -0,0 +1,30 @@
|
||||
/*
|
||||
This file is part of the OdinMS Maple Story Server
|
||||
Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc>
|
||||
Matthias Butz <matze@odinms.de>
|
||||
Jan Christian Meyer <vimes@odinms.de>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License as
|
||||
published by the Free Software Foundation version 3 as published by
|
||||
the Free Software Foundation. You may not use, modify or distribute
|
||||
this program under any other version of the GNU Affero General Public
|
||||
License.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package constants.skills;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author BubblesDev
|
||||
*/
|
||||
public class Pirate {
|
||||
public static final int DASH = 5001005;
|
||||
}
|
||||
35
src/constants/skills/Priest.java
Normal file
35
src/constants/skills/Priest.java
Normal file
@@ -0,0 +1,35 @@
|
||||
/*
|
||||
This file is part of the OdinMS Maple Story Server
|
||||
Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc>
|
||||
Matthias Butz <matze@odinms.de>
|
||||
Jan Christian Meyer <vimes@odinms.de>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License as
|
||||
published by the Free Software Foundation version 3 as published by
|
||||
the Free Software Foundation. You may not use, modify or distribute
|
||||
this program under any other version of the GNU Affero General Public
|
||||
License.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package constants.skills;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author BubblesDev
|
||||
*/
|
||||
public class Priest {
|
||||
public static final int ELEMENTAL_RESISTANCE = 2310000;
|
||||
public static final int DISPEL = 2311001;
|
||||
public static final int MYSTIC_DOOR = 2311002;
|
||||
public static final int HOLY_SYMBOL = 2311003;
|
||||
public static final int DOOM = 2311005;
|
||||
public static final int SUMMON_DRAGON = 2311006;
|
||||
}
|
||||
32
src/constants/skills/Ranger.java
Normal file
32
src/constants/skills/Ranger.java
Normal file
@@ -0,0 +1,32 @@
|
||||
/*
|
||||
This file is part of the OdinMS Maple Story Server
|
||||
Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc>
|
||||
Matthias Butz <matze@odinms.de>
|
||||
Jan Christian Meyer <vimes@odinms.de>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License as
|
||||
published by the Free Software Foundation version 3 as published by
|
||||
the Free Software Foundation. You may not use, modify or distribute
|
||||
this program under any other version of the GNU Affero General Public
|
||||
License.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package constants.skills;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author BubblesDev
|
||||
*/
|
||||
public class Ranger {
|
||||
public static final int MORTAL_BLOW = 3110001;
|
||||
public static final int PUPPET = 3111002;
|
||||
public static final int SILVER_HAWK = 3111005;
|
||||
}
|
||||
34
src/constants/skills/Rogue.java
Normal file
34
src/constants/skills/Rogue.java
Normal file
@@ -0,0 +1,34 @@
|
||||
/*
|
||||
This file is part of the OdinMS Maple Story Server
|
||||
Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc>
|
||||
Matthias Butz <matze@odinms.de>
|
||||
Jan Christian Meyer <vimes@odinms.de>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License as
|
||||
published by the Free Software Foundation version 3 as published by
|
||||
the Free Software Foundation. You may not use, modify or distribute
|
||||
this program under any other version of the GNU Affero General Public
|
||||
License.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package constants.skills;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author BubblesDev
|
||||
*/
|
||||
public class Rogue {
|
||||
public static final int NIMBLE_BODY = 4001000;
|
||||
public static final int DARK_SIGHT = 4001003;
|
||||
public static final int DISORDER = 4001002;
|
||||
public static final int DOUBLE_STAB = 4001334;
|
||||
public static final int LUCKY_SEVEN = 4001344;
|
||||
}
|
||||
38
src/constants/skills/Shadower.java
Normal file
38
src/constants/skills/Shadower.java
Normal file
@@ -0,0 +1,38 @@
|
||||
/*
|
||||
This file is part of the OdinMS Maple Story Server
|
||||
Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc>
|
||||
Matthias Butz <matze@odinms.de>
|
||||
Jan Christian Meyer <vimes@odinms.de>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License as
|
||||
published by the Free Software Foundation version 3 as published by
|
||||
the Free Software Foundation. You may not use, modify or distribute
|
||||
this program under any other version of the GNU Affero General Public
|
||||
License.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package constants.skills;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author BubblesDev
|
||||
*/
|
||||
public class Shadower {
|
||||
public static final int MAPLE_WARRIOR = 4221000;
|
||||
public static final int ASSASSINATE = 4221001;
|
||||
public static final int SHADOW_SHIFTER = 4220002;
|
||||
public static final int TAUNT = 4221003;
|
||||
public static final int NINJA_AMBUSH = 4221004;
|
||||
public static final int VENOMOUS_STAB = 4220005;
|
||||
public static final int SMOKE_SCREEN = 4221006;
|
||||
public static final int BOOMERANG_STEP = 4221007;
|
||||
public static final int HEROS_WILL = 4221008;
|
||||
}
|
||||
33
src/constants/skills/Sniper.java
Normal file
33
src/constants/skills/Sniper.java
Normal file
@@ -0,0 +1,33 @@
|
||||
/*
|
||||
This file is part of the OdinMS Maple Story Server
|
||||
Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc>
|
||||
Matthias Butz <matze@odinms.de>
|
||||
Jan Christian Meyer <vimes@odinms.de>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License as
|
||||
published by the Free Software Foundation version 3 as published by
|
||||
the Free Software Foundation. You may not use, modify or distribute
|
||||
this program under any other version of the GNU Affero General Public
|
||||
License.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package constants.skills;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author BubblesDev
|
||||
*/
|
||||
public class Sniper {
|
||||
public static final int MORTAL_BLOW = 3210001;
|
||||
public static final int PUPPET = 3211002;
|
||||
public static final int BLIZZARD = 3211003;
|
||||
public static final int GOLDEN_EAGLE = 3211005;
|
||||
}
|
||||
37
src/constants/skills/Spearman.java
Normal file
37
src/constants/skills/Spearman.java
Normal file
@@ -0,0 +1,37 @@
|
||||
/*
|
||||
This file is part of the OdinMS Maple Story Server
|
||||
Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc>
|
||||
Matthias Butz <matze@odinms.de>
|
||||
Jan Christian Meyer <vimes@odinms.de>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License as
|
||||
published by the Free Software Foundation version 3 as published by
|
||||
the Free Software Foundation. You may not use, modify or distribute
|
||||
this program under any other version of the GNU Affero General Public
|
||||
License.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package constants.skills;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author BubblesDev
|
||||
*/
|
||||
public class Spearman {
|
||||
public static final int SPEAR_MASTERY = 1300000;
|
||||
public static final int POLEARM_MASTERY = 1300001;
|
||||
public static final int FINAL_ATTACK_SPEAR = 1300002;
|
||||
public static final int FINAL_ATTACK_POLEARM = 1300003;
|
||||
public static final int SPEAR_BOOSTER = 1301004;
|
||||
public static final int POLEARM_BOOSTER = 1301005;
|
||||
public static final int IRON_WILL = 1301006;
|
||||
public static final int HYPER_BODY = 1301007;
|
||||
}
|
||||
38
src/constants/skills/SuperGM.java
Normal file
38
src/constants/skills/SuperGM.java
Normal file
@@ -0,0 +1,38 @@
|
||||
/*
|
||||
This file is part of the OdinMS Maple Story Server
|
||||
Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc>
|
||||
Matthias Butz <matze@odinms.de>
|
||||
Jan Christian Meyer <vimes@odinms.de>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License as
|
||||
published by the Free Software Foundation version 3 as published by
|
||||
the Free Software Foundation. You may not use, modify or distribute
|
||||
this program under any other version of the GNU Affero General Public
|
||||
License.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package constants.skills;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author BubblesDev
|
||||
*/
|
||||
public class SuperGM {
|
||||
public static final int HEAL_PLUS_DISPEL = 9101000;
|
||||
public static final int HASTE = 9101001;
|
||||
public static final int HOLY_SYMBOL = 9101002;
|
||||
public static final int BLESS = 9101003;
|
||||
public static final int HIDE = 9101004;
|
||||
public static final int RESURRECTION = 9101005;
|
||||
public static final int SUPER_DRAGON_ROAR = 9001001;
|
||||
public static final int TELEPORT = 9101007;
|
||||
public static final int HYPER_BODY = 9101008;
|
||||
}
|
||||
31
src/constants/skills/Swordsman.java
Normal file
31
src/constants/skills/Swordsman.java
Normal file
@@ -0,0 +1,31 @@
|
||||
/*
|
||||
This file is part of the OdinMS Maple Story Server
|
||||
Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc>
|
||||
Matthias Butz <matze@odinms.de>
|
||||
Jan Christian Meyer <vimes@odinms.de>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License as
|
||||
published by the Free Software Foundation version 3 as published by
|
||||
the Free Software Foundation. You may not use, modify or distribute
|
||||
this program under any other version of the GNU Affero General Public
|
||||
License.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package constants.skills;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author BubblesDev
|
||||
*/
|
||||
public class Swordsman {
|
||||
public static final int IMPROVED_MAX_HP_INCREASE = 1000001;
|
||||
public static final int IRON_BODY = 1000003;
|
||||
}
|
||||
41
src/constants/skills/ThunderBreaker.java
Normal file
41
src/constants/skills/ThunderBreaker.java
Normal file
@@ -0,0 +1,41 @@
|
||||
/*
|
||||
This file is part of the OdinMS Maple Story Server
|
||||
Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc>
|
||||
Matthias Butz <matze@odinms.de>
|
||||
Jan Christian Meyer <vimes@odinms.de>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License as
|
||||
published by the Free Software Foundation version 3 as published by
|
||||
the Free Software Foundation. You may not use, modify or distribute
|
||||
this program under any other version of the GNU Affero General Public
|
||||
License.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package constants.skills;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author BubblesDev
|
||||
*/
|
||||
public class ThunderBreaker {
|
||||
public static final int DASH = 15001003;
|
||||
public static final int IMPROVE_MAX_HP = 15100000;
|
||||
public static final int KNUCKLER_MASTERY = 15100001;
|
||||
public static final int ENERGY_CHARGE = 15100004;
|
||||
public static final int KNUCKLER_BOOSTER = 15101002;
|
||||
public static final int CORKSCREW_BLOW = 15101003;
|
||||
public static final int LIGHTNING = 15001004;
|
||||
public static final int LIGHTNING_CHARGE = 15101006;
|
||||
public static final int ENERGY_DRAIN = 15111001;
|
||||
public static final int TRANSFORMATION = 15111002;
|
||||
public static final int SPEED_INFUSION = 15111005;
|
||||
public static final int SPARK = 15111006;
|
||||
}
|
||||
13
src/constants/skills/Warrior.java
Normal file
13
src/constants/skills/Warrior.java
Normal file
@@ -0,0 +1,13 @@
|
||||
/*
|
||||
* To change this template, choose Tools | Templates
|
||||
* and open the template in the editor.
|
||||
*/
|
||||
package constants.skills;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Tyler
|
||||
*/
|
||||
public class Warrior {
|
||||
public static final int IMPROVED_MAXHP = 1000001;
|
||||
}
|
||||
38
src/constants/skills/WhiteKnight.java
Normal file
38
src/constants/skills/WhiteKnight.java
Normal file
@@ -0,0 +1,38 @@
|
||||
/*
|
||||
This file is part of the OdinMS Maple Story Server
|
||||
Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc>
|
||||
Matthias Butz <matze@odinms.de>
|
||||
Jan Christian Meyer <vimes@odinms.de>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License as
|
||||
published by the Free Software Foundation version 3 as published by
|
||||
the Free Software Foundation. You may not use, modify or distribute
|
||||
this program under any other version of the GNU Affero General Public
|
||||
License.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package constants.skills;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author BubblesDev
|
||||
*/
|
||||
public class WhiteKnight {
|
||||
public static final int IMPROVING_MP_RECOVERY = 1210000;
|
||||
public static final int CHARGE_BLOW = 1211002;
|
||||
public static final int SWORD_FIRE_CHARGE = 1211003;
|
||||
public static final int BW_FIRE_CHARGE = 1211004;
|
||||
public static final int SWORD_ICE_CHARGE = 1211005;
|
||||
public static final int BW_ICE_CHARGE = 1211006;
|
||||
public static final int SWORD_LIT_CHARGE = 1211007;
|
||||
public static final int BW_LIT_CHARGE = 1211008;
|
||||
public static final int MAGIC_CRASH = 1211009;
|
||||
}
|
||||
42
src/constants/skills/WindArcher.java
Normal file
42
src/constants/skills/WindArcher.java
Normal file
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
This file is part of the OdinMS Maple Story Server
|
||||
Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc>
|
||||
Matthias Butz <matze@odinms.de>
|
||||
Jan Christian Meyer <vimes@odinms.de>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License as
|
||||
published by the Free Software Foundation version 3 as published by
|
||||
the Free Software Foundation. You may not use, modify or distribute
|
||||
this program under any other version of the GNU Affero General Public
|
||||
License.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package constants.skills;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author BubblesDev
|
||||
*/
|
||||
public class WindArcher {
|
||||
public static final int CRITICAL_SHOT = 13000000;
|
||||
public static final int FOCUS = 13001002;
|
||||
public static final int STORM = 13001004;
|
||||
public static final int BOW_MASTERY = 13100000;
|
||||
public static final int BOW_BOOSTER = 13101001;
|
||||
public static final int FINAL_ATTACK = 13101002;
|
||||
public static final int SOUL_ARROW = 13101003;
|
||||
public static final int WIND_WALK = 13101006;
|
||||
public static final int HURRICANE = 13111002;
|
||||
public static final int PUPPET = 13111004;
|
||||
public static final int EAGLE_EYE = 13111005;
|
||||
public static final int WIND_PIERCING = 13111006;
|
||||
public static final int WIND_SHOT = 13111007;
|
||||
}
|
||||
Reference in New Issue
Block a user