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.13 by root, Mon Oct 12 14:00:58 2009 UTC

1/*
2 * This file is part of Deliantra, the Roguelike Realtime MMORPG.
3 *
4 * Copyright (©) 2005,2006,2007,2008 Marc Alexander Lehmann / Robin Redeker / the Deliantra team
5 *
6 * 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 *
11 * 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 *
16 * 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 *
20 * The authors can be reached via e-mail to <support@deliantra.net>
21 */
22
1// the order of skills MUST stay the same, with no holes, to match 23// the order of skills MUST stay the same, with no holes, to match
2// the archetypes. Do not remove or add skills in between. 24// the archetypes. Do not remove or add skills in between.
3 25
4def (LOCKPICKING) 26// symbol flags
5def (HIDING) 27def (LOCKPICKING , SF_RANGED)
6def (SMITHERY) 28def (HIDING , SF_USE)
7def (BOWYER) 29def (SMITHERY , SF_USE)
8def (JEWELER) 30def (BOWYER , SF_USE)
9def (ALCHEMY) 31def (JEWELER , SF_USE)
10def (STEALING) 32def (ALCHEMY , SF_USE)
11def (LITERACY) 33def (STEALING , SF_RANGED)
34def (LITERACY , SF_USE)
12def (BARGAINING) 35def (BARGAINING , SF_USE)
13def (JUMPING) 36def (JUMPING , SF_RANGED)
14def (DET_MAGIC) 37def (DET_MAGIC , SF_USE)
15def (ORATORY) 38def (ORATORY , SF_RANGED)
16def (SINGING) 39def (SINGING , SF_RANGED)
17def (DET_CURSE) 40def (DET_CURSE , SF_USE)
18def (FIND_TRAPS) 41def (FIND_TRAPS , SF_RANGED)
19def (MEDITATION) 42def (MEDITATION , SF_USE)
20def (PUNCHING) 43def (PUNCHING , SF_COMBAT)
21def (FLAME_TOUCH) 44def (FLAME_TOUCH , SF_COMBAT)
22def (KARATE) 45def (KARATE , SF_COMBAT)
23def (CLIMBING) 46def (CLIMBING , 0)
24def (WOODSMAN) 47def (WOODSMAN , SF_USE)
25def (INSCRIPTION) 48def (INSCRIPTION , SF_USE)
26def (ONE_HANDED_WEAPON) 49def (ONE_HANDED_WEAPON , SF_COMBAT | SF_NEED_WEAPON)
27def (MISSILE_WEAPON) 50def (MISSILE_WEAPON , SF_RANGED | SF_NEED_BOW)
28def (THROWING) 51def (THROWING , SF_RANGED)
29def (USE_MAGIC_ITEM) 52def (USE_MAGIC_ITEM , SF_RANGED)
30def (DISARM_TRAPS) 53def (DISARM_TRAPS , SF_RANGED)
31def (SET_TRAP) 54def (SET_TRAP , 0)
32def (THAUMATURGY) 55def (THAUMATURGY , SF_USE)
33def (PRAYING) 56def (PRAYING , SF_RANGED | SF_GRACE)
34def (CLAWING) 57def (CLAWING , SF_COMBAT)
35def (LEVITATION) 58def (LEVITATION , SF_USE | SF_APPLY)
36def (SUMMONING) 59def (SUMMONING , SF_RANGED | SF_MANA)
37def (PYROMANCY) 60def (PYROMANCY , SF_RANGED | SF_MANA)
38def (EVOCATION) 61def (EVOCATION , SF_RANGED | SF_MANA)
39def (SORCERY) 62def (SORCERY , SF_RANGED | SF_MANA)
40def (TWO_HANDED_WEAPON) 63def (TWO_HANDED_WEAPON , SF_COMBAT | SF_NEED_WEAPON)
41def (SPARK_TOUCH) 64def (SPARK_TOUCH , SF_COMBAT)
42def (SHIVER) 65def (SHIVER , SF_COMBAT)
43def (ACID_SPLASH) 66def (ACID_SPLASH , SF_COMBAT)
44def (POISON_NAIL) 67def (POISON_NAIL , SF_COMBAT)
68

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines