You've already forked pokecrystal-board
mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2025-04-09 05:44:44 -07:00
Keep table labels in the same files as their contents.
This commit is contained in:
10
gfx/pics.asm
10
gfx/pics.asm
@@ -5,14 +5,18 @@ INCLUDE "includes.asm"
|
||||
; but in different banks. This is enforced in pokecrystal.link.
|
||||
|
||||
SECTION "Pic Pointers", ROMX
|
||||
PicPointers:: INCLUDE "gfx/pics/pic_pointers.asm"
|
||||
|
||||
INCLUDE "gfx/pics/pic_pointers.asm"
|
||||
|
||||
|
||||
SECTION "Unown Pic Pointers", ROMX
|
||||
UnownPicPointers:: INCLUDE "gfx/pics/unown_pic_pointers.asm"
|
||||
|
||||
INCLUDE "gfx/pics/unown_pic_pointers.asm"
|
||||
|
||||
|
||||
SECTION "Trainer Pic Pointers", ROMX
|
||||
TrainerPicPointers:: INCLUDE "gfx/trainer_pic_pointers.asm"
|
||||
|
||||
INCLUDE "gfx/trainer_pic_pointers.asm"
|
||||
|
||||
|
||||
SECTION "Pics 1", ROMX
|
||||
|
@@ -1,4 +1,5 @@
|
||||
|
||||
PicPointers::
|
||||
; entries correspond to constants/pokemon_constants.asm, two apiece
|
||||
add_pic BulbasaurFrontpic
|
||||
add_pic BulbasaurBackpic
|
||||
add_pic IvysaurFrontpic
|
||||
|
@@ -1,4 +1,5 @@
|
||||
|
||||
UnownPicPointers::
|
||||
; entries correspond to Unown letters, two apiece
|
||||
add_pic UnownAFrontpic
|
||||
add_pic UnownABackpic
|
||||
add_pic UnownBFrontpic
|
||||
|
@@ -1,8 +1,3 @@
|
||||
; Format:
|
||||
; Address
|
||||
; Length, Bank
|
||||
; Type, Palette
|
||||
|
||||
sprite_header: MACRO
|
||||
; pointer, length, type, palette
|
||||
dw \1
|
||||
@@ -10,6 +5,9 @@ sprite_header: MACRO
|
||||
db \3, \4
|
||||
ENDM
|
||||
|
||||
SpriteHeaders: ; 14736
|
||||
; entries correspond to SPRITE_* constants
|
||||
|
||||
ChrisSprite: ; 14736
|
||||
sprite_header ChrisSpriteGFX, 3, WALKING_SPRITE, PAL_OW_RED
|
||||
; 1473c
|
||||
|
@@ -1,4 +1,3 @@
|
||||
|
||||
TrainerPalettes: ; b0ce
|
||||
|
||||
PlayerPalette: ; b0ce
|
||||
|
@@ -1,4 +1,5 @@
|
||||
|
||||
TrainerPicPointers::
|
||||
; entries correspond to trainer classes (see constants/trainer_constants.asm)
|
||||
add_pic FalknerPic
|
||||
add_pic WhitneyPic
|
||||
add_pic BugsyPic
|
||||
|
Reference in New Issue
Block a user