Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public enum HatchetDefinitions {
- NOVITE(16361, 1, 1, 13118),
- BATHUS(16363, 10, 4, 13119),
- MARMAROS(16365, 20, 5, 13120),
- KRATONITE(16367, 30, 7, 13121),
- FRACTITE(16369, 40, 10, 13122),
- ZEPHYRIUM(16371, 50, 12, 13123),
- ARGONITE(16373, 60, 13, 13124),
- KATAGON(16373, 70, 15, 13125),
- GORGONITE(16375, 80, 17, 13126),
- PROMETHIUM(16379, 90, 19, 13127),
- PRIMAL(16381, 99, 21, 13128),
- BRONZE(1351, 1, 1, 879),
- IRON(1349, 5, 2, 877),
- STEEL(1353, 5, 3, 875),
- BLACK(1361, 11, 4, 873),
- MITHRIL(1355, 21, 5, 871),
- ADAMANT(1357, 31, 7, 869),
- RUNE(1359, 41, 10, 867),
- DRAGON(6739, 61, 13, 2846),
- INFERNO(13661, 61, 13, 10251);
- private int itemId, levelRequried, axeTime, emoteId;
- private HatchetDefinitions(int itemId, int levelRequried, int axeTime, int emoteId) {
- this.itemId = itemId;
- this.levelRequried = levelRequried;
- this.axeTime = axeTime;
- this.emoteId = emoteId;
- }
- public int getItemId() {
- return itemId;
- }
- public int getLevelRequried() {
- return levelRequried;
- }
- public int getAxeTime() {
- return axeTime;
- }
- public int getEmoteId() {
- return emoteId;
- }
- }
Add Comment
Please, Sign In to add comment