mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-11 21:01:29 +00:00
102 lines
3.3 KiB
C
102 lines
3.3 KiB
C
/* EQEMu: Everquest Server Emulator
|
|
Copyright (C) 2001-2002 EQEMu Development Team (http://eqemu.org)
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; version 2 of the License.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY except by those people which sell it, which
|
|
are required to give you total support for your newly bought product;
|
|
without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
|
A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*/
|
|
#ifndef SKILLS_H
|
|
#define SKILLS_H
|
|
|
|
#define HIGHEST_SKILL_UNUSED 74
|
|
|
|
|
|
// Correct Skill Numbers as of 4-14-2002
|
|
#define _1H_BLUNT_UNUSED 0
|
|
#define _1H_SLASHING_UNUSED 1
|
|
#define _2H_BLUNT_UNUSED 2
|
|
#define _2H_SLASHING_UNUSED 3
|
|
#define ABJURE_UNUSED 4
|
|
#define ALTERATION_UNUSED 5
|
|
#define APPLY_POISON_UNUSED 6
|
|
#define ARCHERY_UNUSED 7
|
|
#define BACKSTAB_UNUSED 8
|
|
#define BIND_WOUND_UNUSED 9
|
|
#define BASH_UNUSED 10
|
|
#define BLOCKSKILL_UNUSED 11
|
|
#define BRASS_INSTRUMENTS_UNUSED 12
|
|
#define CHANNELING_UNUSED 13
|
|
#define CONJURATION_UNUSED 14
|
|
#define DEFENSE_UNUSED 15
|
|
#define DISARM_UNUSED 16
|
|
#define DISARM_TRAPS_UNUSED 17
|
|
#define DIVINATION_UNUSED 18
|
|
#define DODGE_UNUSED 19
|
|
#define DOUBLE_ATTACK_UNUSED 20
|
|
#define DRAGON_PUNCH_UNUSED 21
|
|
#define DUAL_WIELD_UNUSED 22
|
|
#define EAGLE_STRIKE_UNUSED 23
|
|
#define EVOCATION_UNUSED 24
|
|
#define FEIGN_DEATH_UNUSED 25
|
|
#define FLYING_KICK_UNUSED 26
|
|
#define FORAGE_UNUSED 27
|
|
#define HAND_TO_HAND_UNUSED 28
|
|
#define HIDE_UNUSED 29
|
|
#define KICK_UNUSED 30
|
|
#define MEDITATE_UNUSED 31
|
|
#define MEND_UNUSED 32
|
|
#define OFFENSE_UNUSED 33
|
|
#define PARRY_UNUSED 34
|
|
#define PICK_LOCK_UNUSED 35
|
|
#define PIERCING_UNUSED 36
|
|
#define RIPOSTE_UNUSED 37
|
|
#define ROUND_KICK_UNUSED 38
|
|
#define SAFE_FALL_UNUSED 39
|
|
#define SENSE_HEADING_UNUSED 40
|
|
#define SINGING_UNUSED 41
|
|
#define SNEAK_UNUSED 42
|
|
#define SPECIALIZE_ABJURE_UNUSED 43
|
|
#define SPECIALIZE_ALTERATION_UNUSED 44
|
|
#define SPECIALIZE_CONJURATION_UNUSED 45
|
|
#define SPECIALIZE_DIVINATION_UNUSED 46
|
|
#define SPECIALIZE_EVOCATION_UNUSED 47
|
|
#define PICK_POCKETS_UNUSED 48
|
|
#define STRINGED_INSTRUMENTS_UNUSED 49
|
|
#define SWIMMING_UNUSED 50
|
|
#define THROWING_UNUSED 51
|
|
#define TIGER_CLAW_UNUSED 52
|
|
#define TRACKING_UNUSED 53
|
|
#define WIND_INSTRUMENTS_UNUSED 54
|
|
#define FISHING_UNUSED 55
|
|
#define MAKE_POISON_UNUSED 56
|
|
#define TINKERING_UNUSED 57
|
|
#define RESEARCH_UNUSED 58
|
|
#define ALCHEMY_UNUSED 59
|
|
#define BAKING_UNUSED 60
|
|
#define TAILORING_UNUSED 61
|
|
#define SENSE_TRAPS_UNUSED 62
|
|
#define BLACKSMITHING_UNUSED 63
|
|
#define FLETCHING_UNUSED 64
|
|
#define BREWING_UNUSED 65
|
|
#define ALCOHOL_TOLERANCE_UNUSED 66
|
|
#define BEGGING_UNUSED 67
|
|
#define JEWELRY_MAKING_UNUSED 68
|
|
#define POTTERY_UNUSED 69
|
|
#define PERCUSSION_INSTRUMENTS_UNUSED 70
|
|
#define INTIMIDATION_UNUSED 71
|
|
#define BERSERKING_UNUSED 72
|
|
#define TAUNT_UNUSED 73
|
|
#define FRENZY_UNUSED 74
|
|
|
|
#endif
|