]> jfr.im git - irc/gameservirc.git/blobdiff - gameserv/player.h
Added Level 8 monsters
[irc/gameservirc.git] / gameserv / player.h
index 9e8b2da7aed939b9dd39c058e56a6206f257d10f..b8582fac973886daa4b4da6bb3cb618c060fca86 100644 (file)
@@ -4,6 +4,7 @@
 #include <string.h>
 #include <iostream.h>
 #include "aClient.h"
+#include "pouch.h"
 
 typedef struct monster_ Monster;
 
@@ -35,16 +36,16 @@ public:
     int defense;                // Player's defensive strength
     int armor;                  // Number for the player's armor
     int weapon;                 // Number for the player's weapon
-    bool alive;                 // True/False: is the player alive?
-    bool yourturn;             // True/False: is it your turn in battle?
     int forest_fights;          // Amount of forest fights left today
     int player_fights;          // Amount of player<->player fights for today
     char *password;            // Player's encrypted password
+    Pouch inventory;           // This contains their potions, etc.
 
     aClient *user;             // Pointer to the aClient this player is from
     Monster *fight;            // Pointer to the monster the player is currently fighting
     Monster *master;           // Pointer to the master the player is currently fighting
     aClient *battle;           // Pointer to the player this player is currently fighting
+
 private:
     long int flags;            // Player's current flags
 };