From a55c6ac26e50bd0dc911c816cae20abe9ff7a194 Mon Sep 17 00:00:00 2001 From: yenatch Date: Fri, 28 Feb 2014 01:31:52 -0500 Subject: [PATCH] Split up emote images and dump emote pointers. --- gfx/emotes/bolt.2bpp | Bin 0 -> 64 bytes gfx/emotes/fish.2bpp | Bin 0 -> 64 bytes gfx/emotes/happy.2bpp | Bin 0 -> 64 bytes gfx/emotes/heart.2bpp | Bin 0 -> 64 bytes gfx/emotes/question.2bpp | Bin 0 -> 64 bytes gfx/emotes/sad.2bpp | Bin 0 -> 64 bytes gfx/emotes/shock.2bpp | Bin 0 -> 64 bytes gfx/emotes/sleep.2bpp | Bin 0 -> 64 bytes gfx/misc/fishing.2bpp | Bin 0 -> 96 bytes gfx/ow/misc.2bpp | Bin 608 -> 0 bytes main.asm | 61 +++++++++++++++++++++++++++++++++++++-- 11 files changed, 58 insertions(+), 3 deletions(-) create mode 100644 gfx/emotes/bolt.2bpp create mode 100644 gfx/emotes/fish.2bpp create mode 100644 gfx/emotes/happy.2bpp create mode 100644 gfx/emotes/heart.2bpp create mode 100644 gfx/emotes/question.2bpp create mode 100644 gfx/emotes/sad.2bpp create mode 100644 gfx/emotes/shock.2bpp create mode 100644 gfx/emotes/sleep.2bpp create mode 100644 gfx/misc/fishing.2bpp delete mode 100644 gfx/ow/misc.2bpp diff --git a/gfx/emotes/bolt.2bpp b/gfx/emotes/bolt.2bpp new file mode 100644 index 0000000000000000000000000000000000000000..019f4733c453e56f477ce3a8c8e5285d7e3784a3 GIT binary patch literal 64 zcmb1Vu$Qk_`0w!F`M>*r|Njm@82f& literal 0 HcmV?d00001 diff --git a/gfx/emotes/fish.2bpp b/gfx/emotes/fish.2bpp new file mode 100644 index 0000000000000000000000000000000000000000..310ec175201053e6fc2c5f7921dfd53f1b6b1a40 GIT binary patch literal 64 zcmWN_!3_Wq5Cp&@UYa;I?!?*EhIjkSrAi literal 0 HcmV?d00001 diff --git a/gfx/ow/misc.2bpp b/gfx/ow/misc.2bpp deleted file mode 100644 index 8f9b3b96fbeb191bbc291697049a9301c94a11f5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 608 zcmZvZ!Ab&A7=^FbkwFU#7a_K|;sdmB5km-b)oLPyffhj&<|2B4USOQN|f1$shgWOB;9>m(&&9 z$iIUQ`UuD$!&&ox#USS2Kod9Ag1;yGg%Np&^RMO~ptm9aG^GPKnx8$KJ>UkatemX) z&nhwhCR3hrhGl+lOpYP9)ZnxDE`NEx1+j_WoD(p9MmL-IgLL?GGWHLfn Umfk7m%iFp4!fpB>y=(0K0!(o$IsgCw diff --git a/main.asm b/main.asm index db15c2383..bec3610f8 100644 --- a/main.asm +++ b/main.asm @@ -22133,7 +22133,54 @@ EmotesPointers: ; 144d ; db length, bank ; dw dest address -INCBIN "baserom.gbc",$1444d,$14495 - $1444d + dw ShockEmote + db $40, BANK(ShockEmote) + dw $8f80 + + dw QuestionEmote + db $40, BANK(QuestionEmote) + dw $8f80 + + dw HappyEmote + db $40, BANK(HappyEmote) + dw $8f80 + + dw SadEmote + db $40, BANK(SadEmote) + dw $8f80 + + dw HeartEmote + db $40, BANK(HeartEmote) + dw $8f80 + + dw BoltEmote + db $40, BANK(BoltEmote) + dw $8f80 + + dw SleepEmote + db $40, BANK(SleepEmote) + dw $8f80 + + dw FishEmote + db $40, BANK(FishEmote) + dw $8f80 + + dw FishingRodGFX + $00 + db $10, BANK(FishingRodGFX) + dw $8fc0 + + dw FishingRodGFX + $10 + db $20, BANK(FishingRodGFX) + dw $8fc0 + + dw FishingRodGFX + $30 + db $20, BANK(FishingRodGFX) + dw $8fe0 + + dw FishingRodGFX + $50 + db $10, BANK(FishingRodGFX) + dw $8fe0 + ; 14495 @@ -88698,9 +88745,17 @@ Function10433a: ; 10433a (41:433a) dec b jr nz, .asm_10433c ret +; 104350 - -INCBIN "gfx/ow/misc.2bpp" +ShockEmote: INCBIN "gfx/emotes/shock.2bpp" +QuestionEmote: INCBIN "gfx/emotes/question.2bpp" +HappyEmote: INCBIN "gfx/emotes/happy.2bpp" +SadEmote: INCBIN "gfx/emotes/sad.2bpp" +HeartEmote: INCBIN "gfx/emotes/heart.2bpp" +BoltEmote: INCBIN "gfx/emotes/bolt.2bpp" +SleepEmote: INCBIN "gfx/emotes/sleep.2bpp" +FishEmote: INCBIN "gfx/emotes/fish.2bpp" +FishingRodGFX: INCBIN "gfx/misc/fishing.2bpp" Function1045b0: ; 1045b0