Add subdirectories to data/ similar to pokecrystal

Top level text/ is now solely for the former text/maps/ files, and other files are in their respective subdirectories in data/.
This commit is contained in:
Rangi 2020-07-03 11:51:00 -04:00
parent c85050497c
commit b29e5ee203
564 changed files with 3511 additions and 3505 deletions

View file

@ -248,4 +248,4 @@ ReplaceTreeTileBlock:
ld [hl], a
ret
INCLUDE "data/cut_tree_blocks.asm"
INCLUDE "data/tilesets/cut_tree_blocks.asm"

View file

@ -25,4 +25,4 @@ IsPlayerStandingOnDoorTile:
and a
ret
INCLUDE "data/door_tile_ids.asm"
INCLUDE "data/tilesets/door_tile_ids.asm"

View file

@ -130,4 +130,4 @@ CheckIfCoordsInFrontOfPlayerMatch:
ld [hCoordsInFrontOfPlayerMatch], a
ret
INCLUDE "data/hidden_objects.asm"
INCLUDE "data/events/hidden_objects.asm"

View file

@ -54,7 +54,7 @@ HandleLedges::
call PlaySound
ret
INCLUDE "data/ledge_tiles.asm"
INCLUDE "data/tilesets/ledge_tiles.asm"
LoadHoppingShadowOAM:
ld hl, vChars1 + $7f0

View file

@ -437,4 +437,4 @@ GetSplitMapSpriteSetID:
ld a, $01
ret
INCLUDE "data/sprite_sets.asm"
INCLUDE "data/maps/sprite_sets.asm"

View file

@ -373,7 +373,7 @@ IsPlayerStandingOnWarpPadOrHole::
ld [wStandingOnWarpPadOrHole], a
ret
INCLUDE "data/warp_pad_hole_tile_ids.asm"
INCLUDE "data/tilesets/warp_pad_hole_tile_ids.asm"
FishingAnim:
ld c, 10

View file

@ -82,7 +82,7 @@ CheckForceBikeOrSurf::
ld [wWalkBikeSurfStateCopy], a
jp ForceBikeOrSurf
INCLUDE "data/force_bike_surf.asm"
INCLUDE "data/maps/force_bike_surf.asm"
IsPlayerFacingEdgeOfMap::
push hl
@ -176,7 +176,7 @@ IsWarpTileInFrontOfPlayer::
pop hl
ret
INCLUDE "data/warp_carpet_tile_ids.asm"
INCLUDE "data/tilesets/warp_carpet_tile_ids.asm"
IsSSAnneBowWarpTileInFrontOfPlayer:
ld a, [wTileInFrontOfPlayer]
@ -215,7 +215,7 @@ IsPlayerStandingOnDoorTileOrWarpTile::
pop hl
ret
INCLUDE "data/warp_tile_ids.asm"
INCLUDE "data/tilesets/warp_tile_ids.asm"
PrintSafariZoneSteps::
ld a, [wCurMap]

View file

@ -146,4 +146,4 @@ LoadSpecialWarpData:
ld [wDestinationWarpID], a
ret
INCLUDE "data/special_warps.asm"
INCLUDE "data/maps/special_warps.asm"

View file

@ -55,6 +55,6 @@ LoadTilesetHeader:
.done
ret
INCLUDE "data/dungeon_tilesets.asm"
INCLUDE "data/tilesets/dungeon_tilesets.asm"
INCLUDE "data/tileset_headers.asm"
INCLUDE "data/tilesets/tileset_headers.asm"

View file

@ -30,4 +30,4 @@ LoadWildData::
ld bc, $0014
jp CopyData
INCLUDE "data/wild_mons.asm"
INCLUDE "data/wild/grass_water.asm"