diff options
author | Seth Barberee <seth.barberee@gmail.com> | 2021-04-03 20:44:48 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-03 20:44:48 -0500 |
commit | 22fec43f1812cb863ad699b357bd593222ae140c (patch) | |
tree | 4efa162869946a9bfdbde1be498857fac3db3b39 /src/data | |
parent | a2d206665c6fffbd962375f262b7fbb05c7b7478 (diff) |
More menu work (#33)
* split adventure log menu out and decompile
* add most adventure log matchings w/ 2 nonmatchings and move some relevant data
* more work on other menus
* fully decomp debug stuff around 203B3F0
* more debug menu work
* fix CreatePartnerSelectionMenu nonmatch
* move more data and clean some data up
Diffstat (limited to 'src/data')
-rw-r--r-- | src/data/formatted_type_names.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/data/formatted_type_names.h b/src/data/formatted_type_names.h new file mode 100644 index 0000000..e973056 --- /dev/null +++ b/src/data/formatted_type_names.h @@ -0,0 +1,18 @@ +ALIGNED(4) const char gFormattedSteelText[] = "#c6Steel#r"; +ALIGNED(4) const char gFormattedDarkText[] = "#c6Dark#r"; +ALIGNED(4) const char gFormattedDragonText[] = "#c6Dragon#r"; +ALIGNED(4) const char gFormattedGhostText[] = "#c6Ghost#r"; +ALIGNED(4) const char gFormattedRockText[] = "#c6Rock#r"; +ALIGNED(4) const char gFormattedBugText[] = "#c6Bug#r"; +ALIGNED(4) const char gFormattedPsychicText[] = "#c6Psychic#r"; +ALIGNED(4) const char gFormattedFlyingText[] = "#c6Flying#r"; +ALIGNED(4) const char gFormattedGroundText[] = "#c6Ground#r"; +ALIGNED(4) const char gFormattedPoisonText[] = "#c6Poison#r"; +ALIGNED(4) const char gFormattedFightingText[] = "#c6Fighting#r"; +ALIGNED(4) const char gFormattedIceText[] = "#c6Ice#r "; +ALIGNED(4) const char gFormattedElectricText[] = "#c6Electric#r"; +ALIGNED(4) const char gFormattedGrassText[] = "#c6Grass#r"; +ALIGNED(4) const char gFormattedWaterText[] = "#c6Water#r"; +ALIGNED(4) const char gFormattedFireText[] = "#c6Fire#r "; +ALIGNED(4) const char gFormattedNormalText[] = "#c6Normal#r"; +ALIGNED(4) const char gFormattedNoneText[] = "#c6None#r"; |