ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/include/skillinc.h
Revision: 1.20
Committed: Tue Apr 6 00:43:47 2010 UTC (14 years, 1 month ago) by root
Content type: text/plain
Branch: MAIN
Changes since 1.19: +1 -1 lines
Log Message:
tuning

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.14 * Copyright (©) 2005,2006,2007,2008,2009,2010 Marc Alexander Lehmann / Robin Redeker / the Deliantra team
5 root 1.8 *
6 root 1.13 * Deliantra is free software: you can redistribute it and/or modify it under
7     * the terms of the Affero GNU General Public License as published by the
8     * Free Software Foundation, either version 3 of the License, or (at your
9     * 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.13 * You should have received a copy of the Affero GNU General Public License
17     * and the GNU General Public License along with this program. If not, see
18     * <http://www.gnu.org/licenses/>.
19 root 1.8 *
20 root 1.10 * The authors can be reached via e-mail to <support@deliantra.net>
21 root 1.8 */
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 root 1.16 // 01
28 root 1.2 def (LOCKPICKING , SF_RANGED)
29 root 1.7 def (HIDING , SF_USE)
30     def (SMITHERY , SF_USE)
31     def (BOWYER , SF_USE)
32     def (JEWELER , SF_USE)
33     def (ALCHEMY , SF_USE)
34 root 1.2 def (STEALING , SF_RANGED)
35 root 1.7 def (LITERACY , SF_USE)
36     def (BARGAINING , SF_USE)
37 root 1.16 // 10
38 root 1.2 def (JUMPING , SF_RANGED)
39 root 1.7 def (DET_MAGIC , SF_USE)
40 root 1.2 def (ORATORY , SF_RANGED)
41     def (SINGING , SF_RANGED)
42 root 1.7 def (DET_CURSE , SF_USE)
43 root 1.18 def (FIND_TRAPS , SF_USE | SF_RANGED)
44 root 1.7 def (MEDITATION , SF_USE)
45 root 1.2 def (PUNCHING , SF_COMBAT)
46     def (FLAME_TOUCH , SF_COMBAT)
47     def (KARATE , SF_COMBAT)
48 root 1.16 // 20
49 root 1.2 def (CLIMBING , 0)
50 root 1.7 def (WOODSMAN , SF_USE)
51     def (INSCRIPTION , SF_USE)
52 root 1.15 def (ONE_HANDED_WEAPON , SF_COMBAT | SF_NEED_ITEM)
53     def (MISSILE_WEAPON , SF_RANGED | SF_NEED_ITEM)
54 root 1.2 def (THROWING , SF_RANGED)
55 root 1.18 def (USE_MAGIC_ITEM , SF_RANGED | SF_NEED_ITEM)
56 root 1.20 def (DISARM_TRAPS , SF_USE | SF_RANGED)
57 root 1.5 def (SET_TRAP , 0)
58 root 1.7 def (THAUMATURGY , SF_USE)
59 root 1.16 // 30
60 root 1.2 def (PRAYING , SF_RANGED | SF_GRACE)
61 root 1.4 def (CLAWING , SF_COMBAT)
62 root 1.18 def (LEVITATION , SF_AUTARK | SF_USE)
63 root 1.2 def (SUMMONING , SF_RANGED | SF_MANA)
64     def (PYROMANCY , SF_RANGED | SF_MANA)
65     def (EVOCATION , SF_RANGED | SF_MANA)
66     def (SORCERY , SF_RANGED | SF_MANA)
67 root 1.15 def (TWO_HANDED_WEAPON , SF_COMBAT | SF_NEED_ITEM)
68 root 1.2 def (SPARK_TOUCH , SF_COMBAT)
69     def (SHIVER , SF_COMBAT)
70 root 1.16 // 40
71 root 1.2 def (ACID_SPLASH , SF_COMBAT)
72     def (POISON_NAIL , SF_COMBAT)
73 root 1.19 def (MINING , SF_RANGED | SF_NEED_ITEM)
74     def (FISHING , SF_RANGED | SF_NEED_ITEM)
75 root 1.2