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

Comparing deliantra/server/include/skills.h (file contents):
Revision 1.25 by root, Fri Mar 26 00:59:21 2010 UTC vs.
Revision 1.28 by root, Fri Apr 2 03:41:24 2010 UTC

1/* 1/*
2 * This file is part of Deliantra, the Roguelike Realtime MMORPG. 2 * This file is part of Deliantra, the Roguelike Realtime MMORPG.
3 * 3 *
4 * Copyright (©) 2005,2006,2007,2008 Marc Alexander Lehmann / Robin Redeker / the Deliantra team 4 * Copyright (©) 2005,2006,2007,2008,2009,2010 Marc Alexander Lehmann / Robin Redeker / the Deliantra team
5 * Copyright (©) 2003 Mark Wedel & Crossfire Development Team 5 * Copyright (©) 2003 Mark Wedel & Crossfire Development Team
6 * Copyright (©) 1992 Frank Tore Johansen 6 * Copyright (©) 1992 Frank Tore Johansen
7 * 7 *
8 * Deliantra is free software: you can redistribute it and/or modify it under 8 * Deliantra is free software: you can redistribute it and/or modify it under
9 * the terms of the Affero GNU General Public License as published by the 9 * the terms of the Affero GNU General Public License as published by the
39# undef def 39# undef def
40 NUM_SKILLS, 40 NUM_SKILLS,
41}; 41};
42 42
43enum { 43enum {
44 SF_COMBAT = 0x01, // skill is used only in direct attack combat 44 SF_COMBAT = 0x01, // skill can be used in direct attack combat (not ranged)
45 SF_NEED_WEAPON = 0x02, // skill requires a weapon object
46 SF_RANGED = 0x04, // skill is only used for ranged attacks 45 SF_RANGED = 0x02, // skill can be used for ranged attacks (not combat)
47 SF_NEED_BOW = 0x08, // skill requires a bow object
48 SF_USE = 0x10, // skill can be used but is directionless
49 SF_APPLY = 0x20, // skill can be independently applied and is never a chosen skill
50 46
47 SF_USE = 0x04, // skill can be used directly, directionless
48 SF_APPLY = 0x08, // skill can be independently applied (ranged) and is never a chosen skill
49
50 SF_NEED_ITEM = 0x10, // skill *requires* some object in the weapon slot
51 SF_MANA = 0x40, // skill requires a mana-consuming spell 51 SF_MANA = 0x20, // skill requires a mana-consuming spell
52 SF_GRACE = 0x80, // skill can use a grace-consuming spell 52 SF_GRACE = 0x40, // skill can use a grace-consuming spell
53}; 53};
54 54
55/* This is used in the exp functions - basically what to do if 55/* This is used in the exp functions - basically what to do if
56 * the player doesn't have the skill he should get exp in. 56 * the player doesn't have the skill he should get exp in.
57 */ 57 */

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines