]> git.localhorst.tv Git - l2e.git/blobdiff - src/battle/Hero.h
added Maxim's IP attacks
[l2e.git] / src / battle / Hero.h
index 499239d961beefa21410a3464d4e147eb2c86565..60bca6dd544d009462d492ed7f0da9caf53a8327 100644 (file)
@@ -41,7 +41,7 @@ public:
        int RelativeMana(int max) const { return MaxMana() == 0 ? 0 : Mana() * max / MaxMana(); }
        bool CanUseMagic() const { return MaxMana() > 0; }
 
-       Uint8 MaxIP() const { return 255; }
+       Uint8 MaxIP() const { return 100; }
        Uint8 IP() const { return ip; }
        int RelativeIP(int max) const { return IP() * max / MaxIP(); }