Mostly planning

This commit is contained in:
Kayne Ruse
2014-05-16 02:05:52 +10:00
parent f0453375c4
commit b1d6e5a314
4 changed files with 74 additions and 5 deletions
+10 -2
View File
@@ -29,8 +29,6 @@ struct EnemyData {
std::string handle;
std::string avatar;
//TODO: attached lua scripts
//statistics
int level = 0;
int exp = 0;
@@ -45,6 +43,16 @@ struct EnemyData {
float accuracy = 0.0;
float evasion = 0.0;
float luck = 0.0;
//TODO: equipment
//TODO: items
//TODO: buffs
//TODO: debuffs
//active gameplay members
//NOTE: these are lost when unloaded
int tableIndex;
int atbGauge = 0;
};
#endif