mirror of
https://github.com/Skeli789/Dynamic-Pokemon-Expansion.git
synced 2026-09-07 01:25:32 -05:00
Fix Pokedex Description Issue
All the pointers were pointing to descriptions in Unbound.
This commit is contained in:
@@ -850,7 +850,7 @@ struct AlternateDexEntries
|
||||
#define NATIONAL_DEX_MELTAN 808
|
||||
#define NATIONAL_DEX_MELMETAL 809
|
||||
|
||||
#define NUM_DEX_ENTRIES NATIONAL_DEX_MELMETAL
|
||||
#define NUM_DEX_ENTRIES NATIONAL_DEX_MELMETAL //Not +1 b/c used like this for some asm
|
||||
|
||||
extern const u8 DEX_ENTRY_TURTWIG[];
|
||||
extern const u8 DEX_ENTRY_GROTLE[];
|
||||
|
||||
69
include/text.h
Normal file
69
include/text.h
Normal file
@@ -0,0 +1,69 @@
|
||||
#pragma once
|
||||
|
||||
#define MSGBOX_LEN 35
|
||||
|
||||
#define _BUFFER(x) 0xFD, x
|
||||
#define _END 0xFF
|
||||
#define _SPACE 0x0
|
||||
#define _NEWLINE 0xFE
|
||||
|
||||
// Punctutation
|
||||
#define _EXCLAMATION 0xAB
|
||||
#define _APOSTROPHE 0xB4
|
||||
|
||||
// Uppercase
|
||||
#define _A 0xBB
|
||||
#define _B 0xBC
|
||||
#define _C 0xBD
|
||||
#define _D 0xBE
|
||||
#define _E 0xBF
|
||||
#define _F 0xC0
|
||||
#define _G 0xC1
|
||||
#define _H 0xC2
|
||||
#define _I 0xC3
|
||||
#define _J 0xC4
|
||||
#define _K 0xC5
|
||||
#define _L 0xC6
|
||||
#define _M 0xC7
|
||||
#define _N 0xC8
|
||||
#define _O 0xC9
|
||||
#define _P 0xCA
|
||||
#define _Q 0xCB
|
||||
#define _R 0xCC
|
||||
#define _S 0xCD
|
||||
#define _T 0xCE
|
||||
#define _U 0xCF
|
||||
#define _V 0xD0
|
||||
#define _W 0xD1
|
||||
#define _X 0xD2
|
||||
#define _Y 0xD3
|
||||
#define _Z 0xD4
|
||||
|
||||
// Lowercase
|
||||
#define _a 0xD5
|
||||
#define _b 0xD6
|
||||
#define _c 0xD7
|
||||
#define _d 0xD8
|
||||
#define _e 0xD9
|
||||
#define _f 0xDA
|
||||
#define _g 0xDB
|
||||
#define _h 0xDC
|
||||
#define _i 0xDD
|
||||
#define _j 0xDE
|
||||
#define _k 0xDF
|
||||
#define _l 0xE0
|
||||
#define _m 0xE1
|
||||
#define _n 0xE2
|
||||
#define _o 0xE3
|
||||
#define _p 0xE4
|
||||
#define _q 0xE5
|
||||
#define _r 0xE6
|
||||
#define _s 0xE7
|
||||
#define _t 0xE8
|
||||
#define _u 0xE9
|
||||
#define _v 0xEA
|
||||
#define _w 0xEB
|
||||
#define _x 0xEC
|
||||
#define _y 0xED
|
||||
#define _z 0xEE
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user