diff options
author | Seth Barberee <seth.barberee@gmail.com> | 2021-03-23 12:11:10 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-23 12:11:10 -0500 |
commit | 2fd4f339b42c010191c199772b09ac34c580de94 (patch) | |
tree | e562899f35861ece70c292602fe6aac2f50906bf /data/text/type_names.inc | |
parent | 7b142311a7294c4c7a943870fa5f24f0fbea604a (diff) |
Miscellaneous Work (Again) (#31)
* move some personality data from asm to C
* combine personality_test files and add my close attempt at RedrawPartnerSelectionMenu
* decomp some more wonder mail funcs and label some more data
* lots of data splitting and move some to src
* split out more dungeon data
* continue splitting out more dungeon data
* doc rescue team rank/pts funcs/data and exclusive pokemon ewram
* doc more sound things and decomp a func
* decomp LoadTeamRankBadge and label some data members
* split out rescue team and text util stuff
* forgot a constant
* match a few funcs and clean up a few
* cleaned up sub_80A28B4
Diffstat (limited to 'data/text/type_names.inc')
-rw-r--r-- | data/text/type_names.inc | 110 |
1 files changed, 0 insertions, 110 deletions
diff --git a/data/text/type_names.inc b/data/text/type_names.inc deleted file mode 100644 index 57913c6..0000000 --- a/data/text/type_names.inc +++ /dev/null @@ -1,110 +0,0 @@ -gUnformattedTypeStrings:: @ 810AD4C -@ (Table of pointers to each string) -.4byte gNoneText -.4byte gNormalText -.4byte gFireText -.4byte gWaterText -.4byte gGrassText -.4byte gElectricText -.4byte gIceText -.4byte gFightingText -.4byte gPoisonText -.4byte gGroundText -.4byte gFlyingText -.4byte gPsychicText -.4byte gBugText -.4byte gRockText -.4byte gGhostText -.4byte gDragonText -.4byte gDarkText -.4byte gSteelText - -.global gSteelText -gSteelText: -.string "Steel\0" -.align 2,0 - -.global gDarkText -gDarkText: -.string "Dark\0" -.align 2,0 - -.global gDragonText -gDragonText: -.string "Dragon\0" -.align 2,0 - -.global gGhostText -gGhostText: -.string "Ghost\0" -.align 2,0 - -.global gRockText -gRockText: -.string "Rock\0" -.align 2,0 - -.global gBugText -gBugText: -.string "Bug\0" -.align 2,0 - -.global gPsychicText -gPsychicText: -.string "Psychic\0" -.align 2,0 - -.global gFlyingText -gFlyingText: -.string "Flying\0" -.align 2,0 - -.global gGroundText -gGroundText: -.string "Ground\0" -.align 2,0 - -.global gPoisonText -gPoisonText: -.string "Poison\0" -.align 2,0 - -.global gFightingText -gFightingText: -.string "Fighting\0" -.align 2,0 - -.global gIceText -gIceText: -.string "Ice\0" -.align 2,0 - -.global gElectricText -gElectricText: -.string "Electric\0" -.align 2,0 - -.global gGrassText -gGrassText: -.string "Grass\0" -.align 2,0 - -.global gWaterText -gWaterText: -.string "Water\0" -.align 2,0 - -.global gFireText -gFireText: -.string "Fire\0" -.align 2,0 - -.global gNormalText -gNormalText: -.string "Normal\0" -.align 2,0 - -.global gNoneText -gNoneText: -.string "None\0" -.align 2,0 |