aboutsummaryrefslogtreecommitdiff
path: root/src/enums.hh
diff options
context:
space:
mode:
authorfusion32 <marcopuzziello@gmail.com>2025-05-31 02:25:31 -0300
committerfusion32 <marcopuzziello@gmail.com>2025-05-31 02:25:31 -0300
commitd7c11b271633ee1f5b58d2b679b50cf95b2826e0 (patch)
treec08832dff011660dcc2af748b82d5ab0adf82d97 /src/enums.hh
parent08780dad536eb5d0544eb2ea70e5443dc237976f (diff)
downloadgame-d7c11b271633ee1f5b58d2b679b50cf95b2826e0.tar.gz
game-d7c11b271633ee1f5b58d2b679b50cf95b2826e0.zip
done with `crcombat.cc`
Diffstat (limited to 'src/enums.hh')
-rw-r--r--src/enums.hh16
1 files changed, 15 insertions, 1 deletions
diff --git a/src/enums.hh b/src/enums.hh
index d8f5816..4081dce 100644
--- a/src/enums.hh
+++ b/src/enums.hh
@@ -25,7 +25,6 @@ enum AnimationType: int {
// NOTE(fusion): Not in debug symbols.
enum AttackMode: uint8 {
- ATTACK_MODE_NONE = 0,
ATTACK_MODE_OFFENSIVE = 1,
ATTACK_MODE_BALANCED = 2,
ATTACK_MODE_DEFENSIVE = 3,
@@ -360,6 +359,11 @@ enum RIGHT: int {
NO_STATISTICS = 81,
};
+enum SecureMode: uint8 {
+ SECURE_MODE_DISABLED = 0,
+ SECURE_MODE_ENABLED = 1,
+};
+
// NOTE(fusion): Not in debug symbols.
enum Skill: int {
SKILL_LEVEL = 0,
@@ -556,4 +560,14 @@ enum TWorldType: int {
PVP_ENFORCED = 2,
};
+enum WeaponType: int {
+ WEAPON_NONE = 0,
+ WEAPON_SWORD = 1,
+ WEAPON_CLUB = 2,
+ WEAPON_AXE = 3,
+ WEAPON_SHIELD = 4,
+ WEAPON_AMMO = 5,
+ WEAPON_THROW = 6,
+};
+
#endif //TIBIA_ENUMS_HH_