]> git.localhorst.tv Git - l2e.git/blobdiff - src/battle/Monster.h
fixed type of monster number properties
[l2e.git] / src / battle / Monster.h
index c5c75caa1ad2d5bd83f4db0d52ed27a81a3d4555..e368dcc0e78a218b61dab47ccb2961b3146373b7 100644 (file)
@@ -85,6 +85,7 @@ public:
        const AttackChoice &GetAttackChoice() const { return attackChoice; }
 
        static void CreateTypeDescription();
+       static void Construct(void *);
 
 private:
        const char *name;
@@ -103,15 +104,15 @@ private:
 
        AttackChoice attackChoice;
 
-       Uint16 maxHealth, health;
-       Uint16 maxMana, mana;
+       int maxHealth, health;
+       int maxMana, mana;
 
        Stats stats;
 
-       Uint16 expReward, goldReward;
+       int expReward, goldReward;
 
-       Uint8 level;
-       Uint8 dropChance;
+       int level;
+       int dropChance;
 
 };