diff options
author | yenatch <yenatch@gmail.com> | 2014-04-17 23:11:47 -0400 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2014-04-17 23:11:47 -0400 |
commit | 762008952d9cb3cf8435ad5de31025c76cd4c6e3 (patch) | |
tree | 03d711716a561195643f86f8e9e9bf0c6356ee50 | |
parent | 5d269b427557a55070f97039d4eeb32074cd1e1d (diff) |
Shrink pics, an extra egg pic and their labels.
-rw-r--r-- | gfx/misc/unknown_egg.5x5.2bpp.lz | bin | 0 -> 146 bytes | |||
-rw-r--r-- | gfx/shrink1.2bpp.lz | bin | 0 -> 144 bytes | |||
-rw-r--r-- | gfx/shrink2.2bpp.lz | bin | 0 -> 64 bytes | |||
-rw-r--r-- | home.asm | 2 | ||||
-rw-r--r-- | main.asm | 21 |
5 files changed, 16 insertions, 7 deletions
diff --git a/gfx/misc/unknown_egg.5x5.2bpp.lz b/gfx/misc/unknown_egg.5x5.2bpp.lz Binary files differnew file mode 100644 index 000000000..d8de54c79 --- /dev/null +++ b/gfx/misc/unknown_egg.5x5.2bpp.lz diff --git a/gfx/shrink1.2bpp.lz b/gfx/shrink1.2bpp.lz Binary files differnew file mode 100644 index 000000000..284bee8c2 --- /dev/null +++ b/gfx/shrink1.2bpp.lz diff --git a/gfx/shrink2.2bpp.lz b/gfx/shrink2.2bpp.lz Binary files differnew file mode 100644 index 000000000..df14d5ed4 --- /dev/null +++ b/gfx/shrink2.2bpp.lz @@ -1901,7 +1901,7 @@ GetBaseData:: ; 3856 .egg ; ???? - ld de, $7d9c + ld de, UnknownEggPic ; Sprite dimensions ld b, $55 ; 5x5 @@ -4603,15 +4603,15 @@ Function610f: ; 610f ld c, 8 call DelayFrames - ld hl, $5249 - ld b, $13 + ld hl, Shrink1Pic + ld b, BANK(Shrink1Pic) call Function61b4 ld c, 8 call DelayFrames - ld hl, $52d9 - ld b, $13 + ld hl, Shrink2Pic + ld b, BANK(Shrink2Pic) call Function61b4 ld c, 8 @@ -55772,7 +55772,12 @@ Function4d1cb: ; 4d1cb ret ; 4d249 -INCBIN "baserom.gbc",$4d249,$4d319 - $4d249 +Shrink1Pic: ; 4d249 +INCBIN "gfx/shrink1.2bpp.lz" + +Shrink2Pic: ; 4d2d9 +INCBIN "gfx/shrink2.2bpp.lz" +; 4d319 Function4d319: ; 4d319 ld a, [$cfa9] @@ -62131,8 +62136,12 @@ INCLUDE "stats/base_stats.asm" PokemonNames:: INCLUDE "stats/pokemon_names.asm" -INCBIN "baserom.gbc",$53d84,$53e2e - $53d84 +INCBIN "baserom.gbc",$53d84,$53d9c - $53d84 +UnknownEggPic:: ; 53d9c +; Another egg pic. This is shifted up a few pixels. +INCBIN "gfx/misc/unknown_egg.5x5.2bpp.lz" +; 53e2e SECTION "bank19", ROMX, BANK[$19] |