ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/include/skillinc.h
Revision: 1.12
Committed: Tue May 6 16:55:26 2008 UTC (16 years ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: rel-2_80, rel-2_6, rel-2_7, rel-2_72, rel-2_73, rel-2_71, rel-2_76, rel-2_77, rel-2_74, rel-2_75, rel-2_54, rel-2_55, rel-2_56, rel-2_79, rel-2_78, rel-2_61
Changes since 1.11: +1 -1 lines
Log Message:
update copyright

File Contents

# User Rev Content
1 root 1.8 /*
2 root 1.10 * This file is part of Deliantra, the Roguelike Realtime MMORPG.
3 root 1.8 *
4 root 1.12 * Copyright (©) 2005,2006,2007,2008 Marc Alexander Lehmann / Robin Redeker / the Deliantra team
5 root 1.8 *
6 root 1.10 * Deliantra is free software: you can redistribute it and/or modify
7 root 1.9 * 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 root 1.8 *
11 root 1.9 * 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 root 1.8 *
16 root 1.9 * 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 root 1.8 *
19 root 1.10 * The authors can be reached via e-mail to <support@deliantra.net>
20 root 1.8 */
21    
22 root 1.1 // 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 root 1.2 // symbol flags
26     def (LOCKPICKING , SF_RANGED)
27 root 1.7 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 root 1.2 def (STEALING , SF_RANGED)
33 root 1.7 def (LITERACY , SF_USE)
34     def (BARGAINING , SF_USE)
35 root 1.2 def (JUMPING , SF_RANGED)
36 root 1.7 def (DET_MAGIC , SF_USE)
37 root 1.2 def (ORATORY , SF_RANGED)
38     def (SINGING , SF_RANGED)
39 root 1.7 def (DET_CURSE , SF_USE)
40 root 1.2 def (FIND_TRAPS , SF_RANGED)
41 root 1.7 def (MEDITATION , SF_USE)
42 root 1.2 def (PUNCHING , SF_COMBAT)
43     def (FLAME_TOUCH , SF_COMBAT)
44     def (KARATE , SF_COMBAT)
45     def (CLIMBING , 0)
46 root 1.7 def (WOODSMAN , SF_USE)
47     def (INSCRIPTION , SF_USE)
48 root 1.2 def (ONE_HANDED_WEAPON , SF_COMBAT | SF_NEED_WEAPON)
49     def (MISSILE_WEAPON , SF_RANGED | SF_NEED_BOW)
50     def (THROWING , SF_RANGED)
51 root 1.6 def (USE_MAGIC_ITEM , SF_RANGED)
52 root 1.2 def (DISARM_TRAPS , SF_RANGED)
53 root 1.5 def (SET_TRAP , 0)
54 root 1.7 def (THAUMATURGY , SF_USE)
55 root 1.2 def (PRAYING , SF_RANGED | SF_GRACE)
56 root 1.4 def (CLAWING , SF_COMBAT)
57 root 1.7 def (LEVITATION , SF_USE | SF_APPLY)
58 root 1.2 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 root 1.11 def (TWO_HANDED_WEAPON , SF_COMBAT | SF_NEED_WEAPON)
63 root 1.2 def (SPARK_TOUCH , SF_COMBAT)
64     def (SHIVER , SF_COMBAT)
65     def (ACID_SPLASH , SF_COMBAT)
66     def (POISON_NAIL , SF_COMBAT)
67