sweetgum83/src/main/java/constants/skills/DawnWarrior.java
2024-01-19 03:56:28 -05:00

50 lines
2.0 KiB
Java

/*
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 {
// 1st job
public static final int MAX_HP_INCREASE = 11000000;
public static final int IRON_BODY = 11001001;
public static final int POWER_STRIKE = 11001002;
public static final int SLASH_BLAST = 11001003;
public static final int SOUL = 11001004;
// 2nd job
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 SOUL_BLADE = 11101004;
public static final int SOUL_RUSH = 11101005;
// 3rd job
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 BRANDISH = 11111004;
public static final int ADVANCED_COMBO = 11110005;
public static final int SOUL_DRIVER = 11111006;
public static final int SOUL_CHARGE = 11111007;
}