ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/include/skillinc.h
Revision: 1.8
Committed: Mon May 28 21:15:56 2007 UTC (16 years, 11 months ago) by root
Content type: text/plain
Branch: MAIN
Changes since 1.7: +22 -0 lines
Log Message:
- update copyrights in .h files, where applicable
- rename preprocess to genkeywords

File Contents

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