45 lines
1.9 KiB
Java
45 lines
1.9 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 Beginner {
|
|
public static final int BLESSING_OF_THE_FAIRY = 12;
|
|
public static final int FOLLOW_THE_LEADER = 8;
|
|
public static final int MAP_CHAIR = 100;
|
|
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 POWER_EXPLOSION = 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;
|
|
} |