diff options
author | Erik Schilling <ablu.erikschilling@googlemail.com> | 2012-04-03 13:35:18 +0200 |
---|---|---|
committer | Erik Schilling <ablu.erikschilling@googlemail.com> | 2012-04-04 16:28:11 +0200 |
commit | 3a05c2d4e4f2229516182ebceea880d227b65708 (patch) | |
tree | d3a93585e55f1cac9a188ee0bb73b77a1db820d0 /src/resources/specialdb.h | |
parent | 31010d6d3ba6600860a9f6dd925ac3d8e3f2c830 (diff) | |
download | mana-3a05c2d4e4f2229516182ebceea880d227b65708.tar.gz mana-3a05c2d4e4f2229516182ebceea880d227b65708.tar.bz2 mana-3a05c2d4e4f2229516182ebceea880d227b65708.tar.xz mana-3a05c2d4e4f2229516182ebceea880d227b65708.zip |
Synced specials to latest manaserv changes
Reviewed-by: bjorn.
Diffstat (limited to 'src/resources/specialdb.h')
-rw-r--r-- | src/resources/specialdb.h | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/src/resources/specialdb.h b/src/resources/specialdb.h index 5c105ed5..dc1c26b6 100644 --- a/src/resources/specialdb.h +++ b/src/resources/specialdb.h @@ -28,9 +28,6 @@ struct SpecialInfo { enum TargetMode { - TARGET_SELF, // no target selection - TARGET_FRIEND, // target friendly being - TARGET_ENEMY, // target hostile being TARGET_BEING, // target any being TARGET_POINT // target map location }; @@ -39,13 +36,9 @@ struct SpecialInfo std::string name; // displayed name of special std::string icon; // filename of graphical icon - bool isActive; // true when the special can be used TargetMode targetMode; // target mode - bool hasLevel; // true when the special has levels - int level; // level of special when applicable - - bool hasRechargeBar; // true when the special has a recharge bar + bool rechargeable; // true when the special has a recharge bar int rechargeNeeded; // maximum recharge when applicable int rechargeCurrent; // current recharge when applicable }; |