add BattleParamEntry debug functions

This commit is contained in:
Martin Michelsen
2023-03-03 23:17:08 -08:00
parent 3418afcc66
commit a35d835f31
2 changed files with 54 additions and 1 deletions
+5 -1
View File
@@ -23,13 +23,17 @@ public:
le_uint16_t ata; // accuracy
le_uint16_t lck; // luck
le_uint16_t esp; // ???
uint8_t unknown_a1[0x0C];
parray<uint8_t, 0x0C> unknown_a1;
le_uint32_t experience;
le_uint32_t difficulty;
std::string str() const;
} __attribute__((packed));
struct Table {
parray<parray<Entry, 0x60>, 4> difficulty;
void print(FILE* stream) const;
} __attribute__((packed));
BattleParamsIndex(