Explorar el Código

last fixes to pokedex according to pc

Philipp hace 7 años
padre
commit
0994218724
Se han modificado 2 ficheros con 18 adiciones y 2 borrados
  1. 8
    0
      patches/pokemon_data/limits.asm
  2. 10
    2
      patches/pokemon_data/pokedex_order.asm

+ 8
- 0
patches/pokemon_data/limits.asm Ver fichero

@@ -32,3 +32,11 @@
32 32
 
33 33
 .org 0x080971DA
34 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 Ver fichero

@@ -1,3 +1,5 @@
1
+NUMBER_OF_ENTRIES equ 0x2D1
2
+
1 3
 .org 0x0804323C
2 4
 .word pokedex_order
3 5
 
@@ -10,8 +12,14 @@
10 12
 .org 0x081025EE
11 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 18
 .org 0x08043220
17 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