]> git.localhorst.tv Git - l2e.git/blobdiff - src/common/Capsule.h
more accessors in common::Capsule
[l2e.git] / src / common / Capsule.h
index 575a40cf78e67032d5504d6860627a891702edc1..b1039fa90e2474fe94d54204726a79d36af88a6d 100644 (file)
@@ -23,11 +23,16 @@ public:
        Capsule();
 
        const char *Name() const { return name; }
+       const char *ClassName() const;
        const char *Alignment() const { return alignment; }
+       const char *Tribe() const;
+       const Spell *Attack1() const;
+       const Spell *Attack2() const;
+       const Spell *Attack3() const;
 
        Uint16 MaxHealth() const;
 
-       Stats GetStats();
+       Stats GetStats() const;
 
        Uint8 Level() const { return level; }
        int Experience() const { return experience; }