aboutsummaryrefslogtreecommitdiffstats
path: root/inc/Monster.inc
diff options
context:
space:
mode:
Diffstat (limited to 'inc/Monster.inc')
-rw-r--r--inc/Monster.inc13
1 files changed, 7 insertions, 6 deletions
diff --git a/inc/Monster.inc b/inc/Monster.inc
index 4450b59..d8fe619 100644
--- a/inc/Monster.inc
+++ b/inc/Monster.inc
@@ -2,37 +2,38 @@
/**
* Represent an Item in the shop or in the Inventory.
*
+ * @package inc\Monster.inc
* @author Alexandre Renoux
* @author Pierre-Emmanuel Novac
*/
class Monster {
/**
- * Name of the Monster.
+ * @var string Name of the Monster.
*/
public $name = "";
/**
- * Monster's icon.
+ * @var string Monster's icon.
*/
public $icon = "";
/**
- * Monster's description.
+ * @var desc Monster's description.
*/
public $desc = ""; // TODO: unused
/**
- * HP of the Monster.
+ * @var int HP of the Monster.
*/
public $hp = 1;
/**
- * Exp given by this monster.
+ * @var int Exp given by this monster.
*/
public $xp = 0;
/**
- * Monster's level.
+ * @var int Monster's level.
*/
public $level = 1;