diff options
author | Seth Barberee <seth.barberee@gmail.com> | 2020-12-17 13:17:58 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-17 13:17:58 -0600 |
commit | 096de8d9b2ffd90c52e790296bfd7c5436d45ca3 (patch) | |
tree | 9c5af2e04dea05221c71946a5dfc06471f77801d /data/text/type_names.inc | |
parent | bc504264f1e54b3c1e482710c592e5549828bfe1 (diff) | |
parent | f90f3affeb9b0a66aa7df68f5fdecd692033faf9 (diff) |
Merge pull request #12 from SethBarberee/master
Merge work from SethBarberee/pmd-red into pret.
Diffstat (limited to 'data/text/type_names.inc')
-rw-r--r-- | data/text/type_names.inc | 110 |
1 files changed, 110 insertions, 0 deletions
diff --git a/data/text/type_names.inc b/data/text/type_names.inc new file mode 100644 index 0000000..57913c6 --- /dev/null +++ b/data/text/type_names.inc @@ -0,0 +1,110 @@ +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 |