ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/include/skillinc.h
Revision: 1.11
Committed: Mon Apr 14 14:52:17 2008 UTC (16 years, 1 month ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: rel-2_5, rel-2_52, rel-2_53
Changes since 1.10: +1 -1 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 /*
2 * This file is part of Deliantra, the Roguelike Realtime MMORPG.
3 *
4 * Copyright (©) 2005,2006,2007 Marc Alexander Lehmann / Robin Redeker / the Deliantra team
5 *
6 * Deliantra is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 *
19 * The authors can be reached via e-mail to <support@deliantra.net>
20 */
21
22 // the order of skills MUST stay the same, with no holes, to match
23 // the archetypes. Do not remove or add skills in between.
24
25 // symbol flags
26 def (LOCKPICKING , SF_RANGED)
27 def (HIDING , SF_USE)
28 def (SMITHERY , SF_USE)
29 def (BOWYER , SF_USE)
30 def (JEWELER , SF_USE)
31 def (ALCHEMY , SF_USE)
32 def (STEALING , SF_RANGED)
33 def (LITERACY , SF_USE)
34 def (BARGAINING , SF_USE)
35 def (JUMPING , SF_RANGED)
36 def (DET_MAGIC , SF_USE)
37 def (ORATORY , SF_RANGED)
38 def (SINGING , SF_RANGED)
39 def (DET_CURSE , SF_USE)
40 def (FIND_TRAPS , SF_RANGED)
41 def (MEDITATION , SF_USE)
42 def (PUNCHING , SF_COMBAT)
43 def (FLAME_TOUCH , SF_COMBAT)
44 def (KARATE , SF_COMBAT)
45 def (CLIMBING , 0)
46 def (WOODSMAN , SF_USE)
47 def (INSCRIPTION , SF_USE)
48 def (ONE_HANDED_WEAPON , SF_COMBAT | SF_NEED_WEAPON)
49 def (MISSILE_WEAPON , SF_RANGED | SF_NEED_BOW)
50 def (THROWING , SF_RANGED)
51 def (USE_MAGIC_ITEM , SF_RANGED)
52 def (DISARM_TRAPS , SF_RANGED)
53 def (SET_TRAP , 0)
54 def (THAUMATURGY , SF_USE)
55 def (PRAYING , SF_RANGED | SF_GRACE)
56 def (CLAWING , SF_COMBAT)
57 def (LEVITATION , SF_USE | SF_APPLY)
58 def (SUMMONING , SF_RANGED | SF_MANA)
59 def (PYROMANCY , SF_RANGED | SF_MANA)
60 def (EVOCATION , SF_RANGED | SF_MANA)
61 def (SORCERY , SF_RANGED | SF_MANA)
62 def (TWO_HANDED_WEAPON , SF_COMBAT | SF_NEED_WEAPON)
63 def (SPARK_TOUCH , SF_COMBAT)
64 def (SHIVER , SF_COMBAT)
65 def (ACID_SPLASH , SF_COMBAT)
66 def (POISON_NAIL , SF_COMBAT)
67