ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/include/skillinc.h
Revision: 1.26
Committed: Sat Nov 17 23:40:01 2018 UTC (5 years, 6 months ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: HEAD
Changes since 1.25: +1 -0 lines
Log Message:
copyright update 2018

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