mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-11 21:01:29 +00:00
102 lines
2.8 KiB
C
102 lines
2.8 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 74
|
|
|
|
|
|
// Correct Skill Numbers as of 4-14-2002
|
|
#define _1H_BLUNT 0
|
|
#define _1H_SLASHING 1
|
|
#define _2H_BLUNT 2
|
|
#define _2H_SLASHING 3
|
|
#define ABJURE 4
|
|
#define ALTERATION 5
|
|
#define APPLY_POISON 6
|
|
#define ARCHERY 7
|
|
#define BACKSTAB 8
|
|
#define BIND_WOUND 9
|
|
#define BASH 10
|
|
#define BLOCKSKILL 11
|
|
#define BRASS_INSTRUMENTS 12
|
|
#define CHANNELING 13
|
|
#define CONJURATION 14
|
|
#define DEFENSE 15
|
|
#define DISARM 16
|
|
#define DISARM_TRAPS 17
|
|
#define DIVINATION 18
|
|
#define DODGE 19
|
|
#define DOUBLE_ATTACK 20
|
|
#define DRAGON_PUNCH 21
|
|
#define DUAL_WIELD 22
|
|
#define EAGLE_STRIKE 23
|
|
#define EVOCATION 24
|
|
#define FEIGN_DEATH 25
|
|
#define FLYING_KICK 26
|
|
#define FORAGE 27
|
|
#define HAND_TO_HAND 28
|
|
#define HIDE 29
|
|
#define KICK 30
|
|
#define MEDITATE 31
|
|
#define MEND 32
|
|
#define OFFENSE 33
|
|
#define PARRY 34
|
|
#define PICK_LOCK 35
|
|
#define PIERCING 36
|
|
#define RIPOSTE 37
|
|
#define ROUND_KICK 38
|
|
#define SAFE_FALL 39
|
|
#define SENSE_HEADING 40
|
|
#define SINGING 41
|
|
#define SNEAK 42
|
|
#define SPECIALIZE_ABJURE 43
|
|
#define SPECIALIZE_ALTERATION 44
|
|
#define SPECIALIZE_CONJURATION 45
|
|
#define SPECIALIZE_DIVINATION 46
|
|
#define SPECIALIZE_EVOCATION 47
|
|
#define PICK_POCKETS 48
|
|
#define STRINGED_INSTRUMENTS 49
|
|
#define SWIMMING 50
|
|
#define THROWING 51
|
|
#define TIGER_CLAW 52
|
|
#define TRACKING 53
|
|
#define WIND_INSTRUMENTS 54
|
|
#define FISHING 55
|
|
#define MAKE_POISON 56
|
|
#define TINKERING 57
|
|
#define RESEARCH 58
|
|
#define ALCHEMY 59
|
|
#define BAKING 60
|
|
#define TAILORING 61
|
|
#define SENSE_TRAPS 62
|
|
#define BLACKSMITHING 63
|
|
#define FLETCHING 64
|
|
#define BREWING 65
|
|
#define ALCOHOL_TOLERANCE 66
|
|
#define BEGGING 67
|
|
#define JEWELRY_MAKING 68
|
|
#define POTTERY 69
|
|
#define PERCUSSION_INSTRUMENTS 70
|
|
#define INTIMIDATION 71
|
|
#define BERSERKING 72
|
|
#define TAUNT 73
|
|
#define FRENZY 74
|
|
|
|
#endif
|