Rename directory stats -> data.

This commit is contained in:
yenatch 2014-05-29 11:10:21 -07:00
parent 9755ff375a
commit 99fbe3147b
287 changed files with 286 additions and 286 deletions

View File

@ -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

View File

@ -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

View File

@ -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::

View File

@ -0,0 +1,3 @@
INCLUDE "pokecrystal.asm"
INCLUDE "data/egg_moves.asm"

View File

@ -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::

View File

@ -0,0 +1,3 @@
INCLUDE "pokecrystal.asm"
INCLUDE "data/evos_attacks.asm"

View File

@ -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