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.17 by root, Thu May 17 00:33:29 2007 UTC vs.
Revision 1.18 by root, Sat May 19 00:31:08 2007 UTC

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 is used only in direct attack combat
45 SF_NEED_WEAPON = 0x02, // skill requires a weapon object
45 SF_RANGED = 0x02, // skill is only used for ranged attacks 46 SF_RANGED = 0x04, // skill is only used for ranged attacks
46 SF_READY = 0x04, // skill can be used but is directionless
47 SF_NEED_WEAPON = 0x08, // skill requires a weapon object
48 SF_NEED_BOW = 0x10, // skill requires a bow object 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
49 50
50 SF_MANA = 0x40, // skill requires a mana-consuming spell 51 SF_MANA = 0x40, // skill requires a mana-consuming spell
51 SF_GRACE = 0x80, // skill can use a grace-consuming spell 52 SF_GRACE = 0x80, // skill can use a grace-consuming spell
52}; 53};
53 54

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines