ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/include/skillinc.h
(Generate patch)

Comparing deliantra/server/include/skillinc.h (file contents):
Revision 1.1 by root, Tue Sep 12 00:53:57 2006 UTC vs.
Revision 1.26 by root, Sat Nov 17 23:40:01 2018 UTC

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
1// the order of skills MUST stay the same, with no holes, to match 24// the order of skills MUST stay the same, with no holes, to match
2// the archetypes. Do not remove or add skills in between. 25// the archetypes. Do not remove or add skills in between.
3 26
4def (LOCKPICKING) 27// symbol flags
5def (HIDING) 28// 01
6def (SMITHERY) 29def (LOCKPICKING , SF_RANGED)
7def (BOWYER) 30def (HIDING , SF_USE)
8def (JEWELER) 31def (SMITHERY , SF_USE)
9def (ALCHEMY) 32def (BOWYER , SF_USE)
10def (STEALING) 33def (JEWELER , SF_USE)
11def (LITERACY) 34def (ALCHEMY , SF_USE)
35def (STEALING , SF_RANGED)
36def (LITERACY , SF_USE)
12def (BARGAINING) 37def (BARGAINING , SF_USE)
13def (JUMPING) 38// 10
39def (JUMPING , SF_RANGED)
14def (DET_MAGIC) 40def (DET_MAGIC , SF_USE)
15def (ORATORY) 41def (ORATORY , SF_RANGED)
16def (SINGING) 42def (SINGING , SF_RANGED)
17def (DET_CURSE) 43def (DET_CURSE , SF_USE)
18def (FIND_TRAPS) 44def (FIND_TRAPS , SF_USE | SF_RANGED)
19def (MEDITATION) 45def (MEDITATION , SF_USE)
20def (PUNCHING) 46def (PUNCHING , SF_COMBAT)
21def (FLAME_TOUCH) 47def (FLAME_TOUCH , SF_COMBAT)
22def (KARATE) 48def (KARATE , SF_COMBAT)
49// 20
23def (CLIMBING) 50def (CLIMBING , 0)
24def (WOODSMAN) 51def (WOODSMAN , SF_USE)
25def (INSCRIPTION) 52def (INSCRIPTION , SF_USE)
26def (ONE_HANDED_WEAPON) 53def (ONE_HANDED_WEAPON , SF_COMBAT | SF_NEED_ITEM)
27def (MISSILE_WEAPON) 54def (MISSILE_WEAPON , SF_RANGED | SF_NEED_ITEM)
28def (THROWING) 55def (THROWING , SF_RANGED)
29def (USE_MAGIC_ITEM) 56def (USE_MAGIC_ITEM , SF_RANGED | SF_NEED_ITEM)
30def (DISARM_TRAPS) 57def (DISARM_TRAPS , SF_USE | SF_RANGED)
31def (SET_TRAP) 58def (SET_TRAP , 0)
32def (THAUMATURGY) 59def (THAUMATURGY , SF_USE)
33def (PRAYING) 60// 30
34def (CLAWING) 61def (PRAYING , SF_RANGED | SF_GRACE)
35def (LEVITATION) 62def (CLAWING , SF_COMBAT)
36def (SUMMONING) 63def (LEVITATION , SF_AUTARK | SF_USE)
37def (PYROMANCY) 64def (SUMMONING , SF_RANGED | SF_MANA)
38def (EVOCATION) 65def (PYROMANCY , SF_RANGED | SF_MANA)
39def (SORCERY) 66def (EVOCATION , SF_RANGED | SF_MANA)
40def (TWO_HANDED_WEAPON) 67def (SORCERY , SF_RANGED | SF_MANA)
41def (SPARK_TOUCH) 68def (TWO_HANDED_WEAPON , SF_COMBAT | SF_NEED_ITEM)
42def (SHIVER) 69def (SPARK_TOUCH , SF_COMBAT)
43def (ACID_SPLASH) 70def (SHIVER , SF_COMBAT)
44def (POISON_NAIL) 71// 40
72def (ACID_SPLASH , SF_COMBAT)
73def (POISON_NAIL , SF_COMBAT)
74def (MINING , SF_RANGED | SF_NEED_ITEM)
75

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines