--- deliantra/server/include/skillinc.h 2007/04/30 04:25:30 1.2 +++ deliantra/server/include/skillinc.h 2008/04/14 14:52:17 1.11 @@ -1,44 +1,65 @@ +/* + * This file is part of Deliantra, the Roguelike Realtime MMORPG. + * + * Copyright (©) 2005,2006,2007 Marc Alexander Lehmann / Robin Redeker / the Deliantra team + * + * Deliantra is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + * The authors can be reached via e-mail to + */ + // the order of skills MUST stay the same, with no holes, to match // the archetypes. Do not remove or add skills in between. // symbol flags def (LOCKPICKING , SF_RANGED) -def (HIDING , SF_READY) -def (SMITHERY , SF_READY) -def (BOWYER , SF_READY) -def (JEWELER , SF_READY) -def (ALCHEMY , SF_READY) +def (HIDING , SF_USE) +def (SMITHERY , SF_USE) +def (BOWYER , SF_USE) +def (JEWELER , SF_USE) +def (ALCHEMY , SF_USE) def (STEALING , SF_RANGED) -def (LITERACY , SF_READY) -def (BARGAINING , SF_READY) +def (LITERACY , SF_USE) +def (BARGAINING , SF_USE) def (JUMPING , SF_RANGED) -def (DET_MAGIC , SF_READY) +def (DET_MAGIC , SF_USE) def (ORATORY , SF_RANGED) def (SINGING , SF_RANGED) -def (DET_CURSE , SF_READY) +def (DET_CURSE , SF_USE) def (FIND_TRAPS , SF_RANGED) -def (MEDITATION , SF_READY) +def (MEDITATION , SF_USE) def (PUNCHING , SF_COMBAT) def (FLAME_TOUCH , SF_COMBAT) def (KARATE , SF_COMBAT) def (CLIMBING , 0) -def (WOODSMAN , SF_READY) -def (INSCRIPTION , SF_READY) +def (WOODSMAN , SF_USE) +def (INSCRIPTION , SF_USE) def (ONE_HANDED_WEAPON , SF_COMBAT | SF_NEED_WEAPON) def (MISSILE_WEAPON , SF_RANGED | SF_NEED_BOW) def (THROWING , SF_RANGED) def (USE_MAGIC_ITEM , SF_RANGED) def (DISARM_TRAPS , SF_RANGED) -def (SET_TRAP , SF_READY) -def (THAUMATURGY , SF_READY) +def (SET_TRAP , 0) +def (THAUMATURGY , SF_USE) def (PRAYING , SF_RANGED | SF_GRACE) -def (CLAWING , SF_RANGED) -def (LEVITATION , SF_READY) +def (CLAWING , SF_COMBAT) +def (LEVITATION , SF_USE | SF_APPLY) def (SUMMONING , SF_RANGED | SF_MANA) def (PYROMANCY , SF_RANGED | SF_MANA) def (EVOCATION , SF_RANGED | SF_MANA) def (SORCERY , SF_RANGED | SF_MANA) -def (TWO_HANDED_WEAPON , SF_COMBAT) +def (TWO_HANDED_WEAPON , SF_COMBAT | SF_NEED_WEAPON) def (SPARK_TOUCH , SF_COMBAT) def (SHIVER , SF_COMBAT) def (ACID_SPLASH , SF_COMBAT)