Browse Source

last fixes to pokedex according to pc

Philipp 8 years ago
parent
commit
0994218724
2 changed files with 18 additions and 2 deletions
  1. 8
    0
      patches/pokemon_data/limits.asm
  2. 10
    2
      patches/pokemon_data/pokedex_order.asm

+ 8
- 0
patches/pokemon_data/limits.asm View File

32
 
32
 
33
 .org 0x080971DA
33
 .org 0x080971DA
34
 .halfword 0x0000
34
 .halfword 0x0000
35
+
36
+//fix evolution animation
37
+.org 0x0800EC9A
38
+.halfword 0xE007
39
+
40
+//fix trainer card
41
+.org 0x08097011
42
+.byte 0xE0

+ 10
- 2
patches/pokemon_data/pokedex_order.asm View File

1
+NUMBER_OF_ENTRIES equ 0x2D1
2
+
1
 .org 0x0804323C
3
 .org 0x0804323C
2
 .word pokedex_order
4
 .word pokedex_order
3
 
5
 
10
 .org 0x081025EE
12
 .org 0x081025EE
11
 .halfword 0x0140	//fix alloc
13
 .halfword 0x0140	//fix alloc
12
 
14
 
13
-.org 0x08103920
14
-.halfword 0x2D0
15
+.org 0x08103920		//fix last mon of dex
16
+.halfword NUMBER_OF_ENTRIES-1
15
 
17
 
16
 .org 0x08043220
18
 .org 0x08043220
17
 .halfword 0x0000	//break limit
19
 .halfword 0x0000	//break limit
20
+
21
+.org 0x08088EA4
22
+.halfword NUMBER_OF_ENTRIES-1
23
+
24
+.org 0x08104C28
25
+.halfword NUMBER_OF_ENTRIES-1