mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-11-16 11:27:33 -08:00
commit
709f495cdf
@ -8,4 +8,4 @@ fi
|
|||||||
|
|
||||||
hexdump -C pokecrystal.gbc > pokecrystal.txt
|
hexdump -C pokecrystal.gbc > pokecrystal.txt
|
||||||
|
|
||||||
diff baserom.txt pokecrystal.txt | less
|
diff -u baserom.txt pokecrystal.txt | less
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
INCLUDE "includes.asm"
|
||||||
|
|
||||||
|
|
||||||
|
SECTION "Credits", ROMX, BANK[CREDITS]
|
||||||
|
|
||||||
const_def
|
const_def
|
||||||
const SATOSHI_TAJIRI
|
const SATOSHI_TAJIRI
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
INCLUDE "pokecrystal.asm"
|
INCLUDE "pokecrystal.asm"
|
||||||
INCLUDE "includes.asm"
|
|
||||||
|
|
||||||
SECTION "Credits", ROMX, BANK[CREDITS]
|
|
||||||
INCLUDE "engine/credits.asm"
|
INCLUDE "engine/credits.asm"
|
||||||
|
|
||||||
|
@ -1,6 +1,11 @@
|
|||||||
|
INCLUDE "includes.asm"
|
||||||
|
|
||||||
; Event scripting commands.
|
; Event scripting commands.
|
||||||
|
|
||||||
|
|
||||||
|
SECTION "Event Scripting", ROMX, BANK[EVENTS]
|
||||||
|
|
||||||
|
|
||||||
Function96c56:: ; 96c56
|
Function96c56:: ; 96c56
|
||||||
push af
|
push af
|
||||||
ld a, 1
|
ld a, 1
|
||||||
|
@ -1,7 +1,3 @@
|
|||||||
INCLUDE "pokecrystal.asm"
|
INCLUDE "pokecrystal.asm"
|
||||||
INCLUDE "includes.asm"
|
|
||||||
|
|
||||||
|
|
||||||
SECTION "Event Scripting", ROMX, BANK[EVENTS]
|
|
||||||
|
|
||||||
INCLUDE "engine/scripting.asm"
|
INCLUDE "engine/scripting.asm"
|
||||||
|
|
||||||
|
2
maps.asm
2
maps.asm
@ -1,3 +1,5 @@
|
|||||||
|
INCLUDE "includes.asm"
|
||||||
|
|
||||||
|
|
||||||
SECTION "Map Headers", ROMX, BANK[MAP_HEADERS]
|
SECTION "Map Headers", ROMX, BANK[MAP_HEADERS]
|
||||||
|
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
INCLUDE "pokecrystal.asm"
|
INCLUDE "pokecrystal.asm"
|
||||||
INCLUDE "includes.asm"
|
|
||||||
|
|
||||||
INCLUDE "maps.asm"
|
INCLUDE "maps.asm"
|
||||||
|
|
||||||
|
@ -1,9 +1,18 @@
|
|||||||
|
INCLUDE "includes.asm"
|
||||||
|
|
||||||
|
|
||||||
|
SECTION "Egg Moves", ROMX, BANK[EGG_MOVES]
|
||||||
|
|
||||||
; All instances of Charm, Steel Wing, Sweet Scent, and Lovely Kiss were
|
; All instances of Charm, Steel Wing, Sweet Scent, and Lovely Kiss were
|
||||||
; removed from egg move lists in Crystal, because they are also TMs.
|
; removed from egg move lists in Crystal, because they are also TMs.
|
||||||
|
|
||||||
; Staryu's egg moves were removed in Crystal, because Staryu is genderless
|
; Staryu's egg moves were removed in Crystal, because Staryu is genderless
|
||||||
; and can only breed with Ditto.
|
; and can only breed with Ditto.
|
||||||
|
|
||||||
|
|
||||||
|
INCLUDE "stats/egg_move_pointers.asm"
|
||||||
|
|
||||||
|
|
||||||
BulbasaurEggMoves:
|
BulbasaurEggMoves:
|
||||||
db LIGHT_SCREEN
|
db LIGHT_SCREEN
|
||||||
db SKULL_BASH
|
db SKULL_BASH
|
||||||
|
@ -1,8 +1,3 @@
|
|||||||
INCLUDE "pokecrystal.asm"
|
INCLUDE "pokecrystal.asm"
|
||||||
INCLUDE "includes.asm"
|
|
||||||
|
|
||||||
|
|
||||||
SECTION "Egg Moves", ROMX, BANK[EGG_MOVES]
|
|
||||||
|
|
||||||
INCLUDE "stats/egg_move_pointers.asm"
|
|
||||||
INCLUDE "stats/egg_moves.asm"
|
INCLUDE "stats/egg_moves.asm"
|
||||||
|
|
||||||
|
@ -1,3 +1,12 @@
|
|||||||
|
INCLUDE "includes.asm"
|
||||||
|
|
||||||
|
|
||||||
|
SECTION "Evolutions and Attacks", ROMX, BANK[EVOS_ATTACKS]
|
||||||
|
|
||||||
|
|
||||||
|
INCLUDE "stats/evos_attacks_pointers.asm"
|
||||||
|
|
||||||
|
|
||||||
EvosAttacks::
|
EvosAttacks::
|
||||||
|
|
||||||
BulbasaurEvosAttacks:
|
BulbasaurEvosAttacks:
|
||||||
|
@ -1,8 +1,3 @@
|
|||||||
INCLUDE "pokecrystal.asm"
|
INCLUDE "pokecrystal.asm"
|
||||||
INCLUDE "includes.asm"
|
|
||||||
|
|
||||||
|
|
||||||
SECTION "Evolutions and Attacks", ROMX, BANK[EVOS_ATTACKS]
|
|
||||||
|
|
||||||
INCLUDE "stats/evos_attacks_pointers.asm"
|
|
||||||
INCLUDE "stats/evos_attacks.asm"
|
INCLUDE "stats/evos_attacks.asm"
|
||||||
|
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
INCLUDE "includes.asm"
|
||||||
|
|
||||||
|
|
||||||
SECTION "Pokedex Entries 001-064", ROMX, BANK[POKEDEX_ENTRIES_1]
|
SECTION "Pokedex Entries 001-064", ROMX, BANK[POKEDEX_ENTRIES_1]
|
||||||
|
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
INCLUDE "pokecrystal.asm"
|
INCLUDE "pokecrystal.asm"
|
||||||
INCLUDE "includes.asm"
|
|
||||||
|
|
||||||
INCLUDE "stats/pokedex/entries.asm"
|
INCLUDE "stats/pokedex/entries.asm"
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user