summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoryenatch <yenatch@gmail.com>2014-02-28 01:31:52 -0500
committeryenatch <yenatch@gmail.com>2014-02-28 01:31:52 -0500
commita55c6ac26e50bd0dc911c816cae20abe9ff7a194 (patch)
tree9f894116d865cf4907b953ab62b414f0e3e2f0fe
parent36351fcc17cdecf78771e986f19eb14bf7af71ee (diff)
Split up emote images and dump emote pointers.
-rw-r--r--gfx/emotes/bolt.2bppbin0 -> 64 bytes
-rw-r--r--gfx/emotes/fish.2bppbin0 -> 64 bytes
-rw-r--r--gfx/emotes/happy.2bppbin0 -> 64 bytes
-rw-r--r--gfx/emotes/heart.2bppbin0 -> 64 bytes
-rw-r--r--gfx/emotes/question.2bppbin0 -> 64 bytes
-rw-r--r--gfx/emotes/sad.2bppbin0 -> 64 bytes
-rw-r--r--gfx/emotes/shock.2bppbin0 -> 64 bytes
-rw-r--r--gfx/emotes/sleep.2bppbin0 -> 64 bytes
-rw-r--r--gfx/misc/fishing.2bppbin0 -> 96 bytes
-rw-r--r--gfx/ow/misc.2bppbin608 -> 0 bytes
-rw-r--r--main.asm63
11 files changed, 59 insertions, 4 deletions
diff --git a/gfx/emotes/bolt.2bpp b/gfx/emotes/bolt.2bpp
new file mode 100644
index 000000000..019f4733c
--- /dev/null
+++ b/gfx/emotes/bolt.2bpp
Binary files differ
diff --git a/gfx/emotes/fish.2bpp b/gfx/emotes/fish.2bpp
new file mode 100644
index 000000000..310ec1752
--- /dev/null
+++ b/gfx/emotes/fish.2bpp
Binary files differ
diff --git a/gfx/emotes/happy.2bpp b/gfx/emotes/happy.2bpp
new file mode 100644
index 000000000..babc52ec6
--- /dev/null
+++ b/gfx/emotes/happy.2bpp
Binary files differ
diff --git a/gfx/emotes/heart.2bpp b/gfx/emotes/heart.2bpp
new file mode 100644
index 000000000..15cdc88b7
--- /dev/null
+++ b/gfx/emotes/heart.2bpp
Binary files differ
diff --git a/gfx/emotes/question.2bpp b/gfx/emotes/question.2bpp
new file mode 100644
index 000000000..2408bbf44
--- /dev/null
+++ b/gfx/emotes/question.2bpp
Binary files differ
diff --git a/gfx/emotes/sad.2bpp b/gfx/emotes/sad.2bpp
new file mode 100644
index 000000000..cccdcf97a
--- /dev/null
+++ b/gfx/emotes/sad.2bpp
Binary files differ
diff --git a/gfx/emotes/shock.2bpp b/gfx/emotes/shock.2bpp
new file mode 100644
index 000000000..351921654
--- /dev/null
+++ b/gfx/emotes/shock.2bpp
Binary files differ
diff --git a/gfx/emotes/sleep.2bpp b/gfx/emotes/sleep.2bpp
new file mode 100644
index 000000000..1c9e26ec7
--- /dev/null
+++ b/gfx/emotes/sleep.2bpp
Binary files differ
diff --git a/gfx/misc/fishing.2bpp b/gfx/misc/fishing.2bpp
new file mode 100644
index 000000000..0f7fd175d
--- /dev/null
+++ b/gfx/misc/fishing.2bpp
Binary files differ
diff --git a/gfx/ow/misc.2bpp b/gfx/ow/misc.2bpp
deleted file mode 100644
index 8f9b3b96f..000000000
--- a/gfx/ow/misc.2bpp
+++ /dev/null
Binary files differ
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
-
-
-INCBIN "gfx/ow/misc.2bpp"
+; 104350
+
+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