mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-11-16 11:27:33 -08:00
Rename directory stats -> data.
This commit is contained in:
parent
9755ff375a
commit
99fbe3147b
6
Makefile
6
Makefile
@ -23,9 +23,9 @@ engine/events.o \
|
||||
engine/scripting_crystal.o \
|
||||
engine/events_2.o \
|
||||
engine/credits_crystal.o \
|
||||
stats/egg_moves_crystal.o \
|
||||
stats/evos_attacks_crystal.o \
|
||||
stats/pokedex/entries_crystal.o \
|
||||
data/egg_moves_crystal.o \
|
||||
data/evos_attacks_crystal.o \
|
||||
data/pokedex/entries_crystal.o \
|
||||
misc/crystal_misc.o \
|
||||
gfx/pics.o
|
||||
|
||||
|
@ -13,17 +13,17 @@ TILESETS_7 EQU $77
|
||||
TILESETS_8 EQU $78
|
||||
|
||||
|
||||
; stats/egg_moves.o
|
||||
; data/egg_moves.o
|
||||
|
||||
EGG_MOVES EQU $8
|
||||
|
||||
|
||||
; stats/evos_attacks.o
|
||||
; data/evos_attacks.o
|
||||
|
||||
EVOS_ATTACKS EQU $10
|
||||
|
||||
|
||||
; stats/pokedex/entries.o
|
||||
; data/pokedex/entries.o
|
||||
|
||||
POKEDEX_ENTRIES_1 EQU $60
|
||||
POKEDEX_ENTRIES_2 EQU $6E
|
||||
|
@ -10,7 +10,7 @@ SECTION "Egg Moves", ROMX, BANK[EGG_MOVES]
|
||||
; and can only breed with Ditto.
|
||||
|
||||
|
||||
INCLUDE "stats/egg_move_pointers.asm"
|
||||
INCLUDE "data/egg_move_pointers.asm"
|
||||
|
||||
|
||||
EggMoves::
|
3
data/egg_moves_crystal.asm
Normal file
3
data/egg_moves_crystal.asm
Normal file
@ -0,0 +1,3 @@
|
||||
INCLUDE "pokecrystal.asm"
|
||||
INCLUDE "data/egg_moves.asm"
|
||||
|
@ -4,7 +4,7 @@ INCLUDE "includes.asm"
|
||||
SECTION "Evolutions and Attacks", ROMX, BANK[EVOS_ATTACKS]
|
||||
|
||||
|
||||
INCLUDE "stats/evos_attacks_pointers.asm"
|
||||
INCLUDE "data/evos_attacks_pointers.asm"
|
||||
|
||||
|
||||
EvosAttacks::
|
3
data/evos_attacks_crystal.asm
Normal file
3
data/evos_attacks_crystal.asm
Normal file
@ -0,0 +1,3 @@
|
||||
INCLUDE "pokecrystal.asm"
|
||||
INCLUDE "data/evos_attacks.asm"
|
||||
|
@ -4,23 +4,23 @@ INCLUDE "includes.asm"
|
||||
SECTION "Pokedex Entries 001-064", ROMX, BANK[POKEDEX_ENTRIES_1]
|
||||
|
||||
PokedexEntries1::
|
||||
INCLUDE "stats/pokedex/entries_1.asm"
|
||||
INCLUDE "data/pokedex/entries_1.asm"
|
||||
|
||||
|
||||
SECTION "Pokedex Entries 065-128", ROMX, BANK[POKEDEX_ENTRIES_2]
|
||||
|
||||
PokedexEntries2::
|
||||
INCLUDE "stats/pokedex/entries_2.asm"
|
||||
INCLUDE "data/pokedex/entries_2.asm"
|
||||
|
||||
|
||||
SECTION "Pokedex Entries 129-192", ROMX, BANK[POKEDEX_ENTRIES_3]
|
||||
|
||||
PokedexEntries3::
|
||||
INCLUDE "stats/pokedex/entries_3.asm"
|
||||
INCLUDE "data/pokedex/entries_3.asm"
|
||||
|
||||
|
||||
SECTION "Pokedex Entries 193-251", ROMX, BANK[POKEDEX_ENTRIES_4]
|
||||
|
||||
PokedexEntries4::
|
||||
INCLUDE "stats/pokedex/entries_4.asm"
|
||||
INCLUDE "data/pokedex/entries_4.asm"
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user