2010-07-26 10:52:32 +00:00
|
|
|
#ifndef GAME_MWMECHANICS_CREATURESTATS_H
|
|
|
|
#define GAME_MWMECHANICS_CREATURESTATS_H
|
|
|
|
|
2010-09-30 12:28:01 +00:00
|
|
|
#include <set>
|
|
|
|
#include <string>
|
|
|
|
|
2010-07-26 10:52:32 +00:00
|
|
|
#include "stat.hpp"
|
2010-09-30 13:42:28 +00:00
|
|
|
#include "magiceffects.hpp"
|
2012-04-11 17:03:36 +00:00
|
|
|
#include "spells.hpp"
|
2010-07-26 10:52:32 +00:00
|
|
|
|
|
|
|
namespace MWMechanics
|
|
|
|
{
|
|
|
|
struct CreatureStats
|
|
|
|
{
|
|
|
|
Stat<int> mAttributes[8];
|
2010-07-28 16:27:46 +00:00
|
|
|
DynamicStat<int> mDynamic[3]; // health, magicka, fatigue
|
2010-09-15 13:32:35 +00:00
|
|
|
int mLevel;
|
2012-04-11 17:03:36 +00:00
|
|
|
Spells mSpells;
|
2010-09-30 13:42:28 +00:00
|
|
|
MagicEffects mMagicEffects;
|
2010-07-26 10:52:32 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|