Separate splash screen, intro, and credits (like pokegold/pokecrystal)
18
Makefile
@ -114,16 +114,16 @@ pokeblue_debug_opt = -jsv -n 0 -k 01 -l 0x33 -m 0x13 -r 03 -t "POKEMON BLUE"
|
||||
gfx/battle/attack_anim_1.2bpp: tools/gfx += --trim-whitespace
|
||||
gfx/battle/attack_anim_2.2bpp: tools/gfx += --trim-whitespace
|
||||
|
||||
gfx/intro_credits/blue_jigglypuff_1.2bpp: rgbgfx += -h
|
||||
gfx/intro_credits/blue_jigglypuff_2.2bpp: rgbgfx += -h
|
||||
gfx/intro_credits/blue_jigglypuff_3.2bpp: rgbgfx += -h
|
||||
gfx/intro_credits/red_nidorino_1.2bpp: rgbgfx += -h
|
||||
gfx/intro_credits/red_nidorino_2.2bpp: rgbgfx += -h
|
||||
gfx/intro_credits/red_nidorino_3.2bpp: rgbgfx += -h
|
||||
gfx/intro_credits/gengar.2bpp: rgbgfx += -h
|
||||
gfx/intro_credits/gengar.2bpp: tools/gfx += --remove-duplicates --preserve=0x19,0x76
|
||||
gfx/intro/blue_jigglypuff_1.2bpp: rgbgfx += -h
|
||||
gfx/intro/blue_jigglypuff_2.2bpp: rgbgfx += -h
|
||||
gfx/intro/blue_jigglypuff_3.2bpp: rgbgfx += -h
|
||||
gfx/intro/red_nidorino_1.2bpp: rgbgfx += -h
|
||||
gfx/intro/red_nidorino_2.2bpp: rgbgfx += -h
|
||||
gfx/intro/red_nidorino_3.2bpp: rgbgfx += -h
|
||||
gfx/intro/gengar.2bpp: rgbgfx += -h
|
||||
gfx/intro/gengar.2bpp: tools/gfx += --remove-duplicates --preserve=0x19,0x76
|
||||
|
||||
gfx/intro_credits/the_end.2bpp: tools/gfx += --interleave --png=$<
|
||||
gfx/credits/the_end.2bpp: tools/gfx += --interleave --png=$<
|
||||
|
||||
gfx/slots/red_slots_1.2bpp: tools/gfx += --trim-whitespace
|
||||
gfx/slots/blue_slots_1.2bpp: tools/gfx += --trim-whitespace
|
||||
|
@ -31,13 +31,13 @@ SlideDownMonTiles_7x3:
|
||||
INCBIN "gfx/pokemon/slide_down_7x3.tilemap"
|
||||
|
||||
GengarIntroTiles1:
|
||||
INCBIN "gfx/intro_credits/gengar_1.tilemap"
|
||||
INCBIN "gfx/intro/gengar_1.tilemap"
|
||||
|
||||
GengarIntroTiles2:
|
||||
INCBIN "gfx/intro_credits/gengar_2.tilemap"
|
||||
INCBIN "gfx/intro/gengar_2.tilemap"
|
||||
|
||||
GengarIntroTiles3:
|
||||
INCBIN "gfx/intro_credits/gengar_3.tilemap"
|
||||
INCBIN "gfx/intro/gengar_3.tilemap"
|
||||
|
||||
GameBoyTiles:
|
||||
INCBIN "gfx/trade/game_boy.tilemap"
|
||||
|
@ -266,5 +266,5 @@ INCLUDE "data/credits/credits_order.asm"
|
||||
INCLUDE "data/credits/credits_text.asm"
|
||||
|
||||
TheEndGfx:
|
||||
INCBIN "gfx/intro_credits/the_end.2bpp"
|
||||
INCBIN "gfx/credits/the_end.2bpp"
|
||||
TheEndGfxEnd:
|
||||
|
@ -433,32 +433,32 @@ IntroNidorinoAnimation7:
|
||||
db ANIMATION_END
|
||||
|
||||
GameFreakIntro:
|
||||
INCBIN "gfx/intro_credits/gamefreak_presents.2bpp"
|
||||
INCBIN "gfx/intro_credits/gamefreak_logo.2bpp"
|
||||
INCBIN "gfx/splash/gamefreak_presents.2bpp"
|
||||
INCBIN "gfx/splash/gamefreak_logo.2bpp"
|
||||
ds 16, $00 ; blank tile
|
||||
GameFreakIntroEnd:
|
||||
|
||||
FightIntroBackMon:
|
||||
INCBIN "gfx/intro_credits/gengar.2bpp"
|
||||
INCBIN "gfx/intro/gengar.2bpp"
|
||||
ds 16, $00 ; blank tile
|
||||
FightIntroBackMonEnd:
|
||||
|
||||
FightIntroFrontMon:
|
||||
|
||||
IF DEF(_RED)
|
||||
INCBIN "gfx/intro_credits/red_nidorino_1.2bpp"
|
||||
FightIntroFrontMon:
|
||||
INCBIN "gfx/intro/red_nidorino_1.2bpp"
|
||||
FightIntroFrontMon2:
|
||||
INCBIN "gfx/intro_credits/red_nidorino_2.2bpp"
|
||||
INCBIN "gfx/intro/red_nidorino_2.2bpp"
|
||||
FightIntroFrontMon3:
|
||||
INCBIN "gfx/intro_credits/red_nidorino_3.2bpp"
|
||||
INCBIN "gfx/intro/red_nidorino_3.2bpp"
|
||||
ENDC
|
||||
|
||||
IF DEF(_BLUE)
|
||||
INCBIN "gfx/intro_credits/blue_jigglypuff_1.2bpp"
|
||||
FightIntroFrontMon:
|
||||
INCBIN "gfx/intro/blue_jigglypuff_1.2bpp"
|
||||
FightIntroFrontMon2:
|
||||
INCBIN "gfx/intro_credits/blue_jigglypuff_2.2bpp"
|
||||
INCBIN "gfx/intro/blue_jigglypuff_2.2bpp"
|
||||
FightIntroFrontMon3:
|
||||
INCBIN "gfx/intro_credits/blue_jigglypuff_3.2bpp"
|
||||
INCBIN "gfx/intro/blue_jigglypuff_3.2bpp"
|
||||
ENDC
|
||||
|
||||
FightIntroFrontMonEnd:
|
||||
|
@ -239,5 +239,5 @@ GameFreakShootingStarOAMData:
|
||||
GameFreakShootingStarOAMDataEnd:
|
||||
|
||||
FallingStar:
|
||||
INCBIN "gfx/intro_credits/falling_star.2bpp"
|
||||
INCBIN "gfx/splash/falling_star.2bpp"
|
||||
FallingStarEnd:
|
Before Width: | Height: | Size: 139 B After Width: | Height: | Size: 139 B |
@ -13,7 +13,7 @@ BattleHudTiles2: INCBIN "gfx/battle/battle_hud_2.1bpp"
|
||||
BattleHudTiles3: INCBIN "gfx/battle/battle_hud_3.1bpp"
|
||||
BattleHudTiles3End:
|
||||
|
||||
NintendoCopyrightLogoGraphics: INCBIN "gfx/intro_credits/copyright.2bpp"
|
||||
NintendoCopyrightLogoGraphics: INCBIN "gfx/splash/copyright.2bpp"
|
||||
|
||||
GamefreakLogoGraphics: INCBIN "gfx/title/gamefreak_inc.2bpp"
|
||||
GamefreakLogoGraphicsEnd:
|
||||
|
Before Width: | Height: | Size: 366 B After Width: | Height: | Size: 366 B |
Before Width: | Height: | Size: 360 B After Width: | Height: | Size: 360 B |
Before Width: | Height: | Size: 416 B After Width: | Height: | Size: 416 B |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 462 B After Width: | Height: | Size: 462 B |
Before Width: | Height: | Size: 449 B After Width: | Height: | Size: 449 B |
Before Width: | Height: | Size: 495 B After Width: | Height: | Size: 495 B |
Before Width: | Height: | Size: 220 B After Width: | Height: | Size: 220 B |
Before Width: | Height: | Size: 90 B After Width: | Height: | Size: 90 B |
Before Width: | Height: | Size: 139 B After Width: | Height: | Size: 139 B |
Before Width: | Height: | Size: 180 B After Width: | Height: | Size: 180 B |