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, 5 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

# Content
1 /*
2 * This file is part of Deliantra, the Roguelike Realtime MMORPG.
3 *
4 * Copyright (©) 2017,2018 Marc Alexander Lehmann / the Deliantra team
5 * Copyright (©) 2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016 Marc Alexander Lehmann / Robin Redeker / the Deliantra team
6 *
7 * 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 *
12 * 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 *
17 * 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 *
21 * The authors can be reached via e-mail to <support@deliantra.net>
22 */
23
24 // 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 // symbol flags
28 // 01
29 def (LOCKPICKING , SF_RANGED)
30 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 def (STEALING , SF_RANGED)
36 def (LITERACY , SF_USE)
37 def (BARGAINING , SF_USE)
38 // 10
39 def (JUMPING , SF_RANGED)
40 def (DET_MAGIC , SF_USE)
41 def (ORATORY , SF_RANGED)
42 def (SINGING , SF_RANGED)
43 def (DET_CURSE , SF_USE)
44 def (FIND_TRAPS , SF_USE | SF_RANGED)
45 def (MEDITATION , SF_USE)
46 def (PUNCHING , SF_COMBAT)
47 def (FLAME_TOUCH , SF_COMBAT)
48 def (KARATE , SF_COMBAT)
49 // 20
50 def (CLIMBING , 0)
51 def (WOODSMAN , SF_USE)
52 def (INSCRIPTION , SF_USE)
53 def (ONE_HANDED_WEAPON , SF_COMBAT | SF_NEED_ITEM)
54 def (MISSILE_WEAPON , SF_RANGED | SF_NEED_ITEM)
55 def (THROWING , SF_RANGED)
56 def (USE_MAGIC_ITEM , SF_RANGED | SF_NEED_ITEM)
57 def (DISARM_TRAPS , SF_USE | SF_RANGED)
58 def (SET_TRAP , 0)
59 def (THAUMATURGY , SF_USE)
60 // 30
61 def (PRAYING , SF_RANGED | SF_GRACE)
62 def (CLAWING , SF_COMBAT)
63 def (LEVITATION , SF_AUTARK | SF_USE)
64 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 def (TWO_HANDED_WEAPON , SF_COMBAT | SF_NEED_ITEM)
69 def (SPARK_TOUCH , SF_COMBAT)
70 def (SHIVER , SF_COMBAT)
71 // 40
72 def (ACID_SPLASH , SF_COMBAT)
73 def (POISON_NAIL , SF_COMBAT)
74 def (MINING , SF_RANGED | SF_NEED_ITEM)
75