summaryrefslogtreecommitdiff
path: root/data/maps
diff options
context:
space:
mode:
authorentrpntr <12521136+entrpntr@users.noreply.github.com>2020-05-27 18:42:13 -0400
committerGitHub <noreply@github.com>2020-05-27 18:42:13 -0400
commit2321448d133ac3651f08787b1cf2c2fcbdac82c9 (patch)
tree47f648c0fd273463376c981055cdc9cc5b6a93dc /data/maps
parent418ac97a9c2142aae82051e6bdb149c9103b7282 (diff)
parent9dac1d992d343f542acae9974eff3099fbd9b39f (diff)
Merge pull request #36 from entrpntr/misc-dump
Disassemble banks $70 and $3f, add tileset data
Diffstat (limited to 'data/maps')
-rw-r--r--data/maps/roofs.asm46
1 files changed, 46 insertions, 0 deletions
diff --git a/data/maps/roofs.asm b/data/maps/roofs.asm
new file mode 100644
index 00000000..ac1ea556
--- /dev/null
+++ b/data/maps/roofs.asm
@@ -0,0 +1,46 @@
+; MapGroupRoofs values; Roofs indexes
+ const_def
+ const ROOF_NEW_BARK ; 0
+ const ROOF_VIOLET ; 1
+ const ROOF_AZALEA ; 2
+ const ROOF_OLIVINE ; 3
+ const ROOF_GOLDENROD ; 4
+
+MapGroupRoofs:
+; entries correspond to map groups
+; values are indexes for Roofs (see below)
+ db -1 ; 0
+ db ROOF_OLIVINE ; 1 (Olivine)
+ db ROOF_AZALEA ; 2 (Mahogany)
+ db -1 ; 3
+ db ROOF_VIOLET ; 4 (Ecruteak)
+ db ROOF_AZALEA ; 5 (Blackthorn)
+ db -1 ; 6
+ db -1 ; 7
+ db ROOF_AZALEA ; 8 (Azalea)
+ db ROOF_AZALEA ; 9 (Lake of Rage)
+ db ROOF_VIOLET ; 10 (Violet)
+ db ROOF_GOLDENROD ; 11 (Goldenrod)
+ db -1 ; 12
+ db -1 ; 13
+ db -1 ; 14
+ db -1 ; 15
+ db -1 ; 16
+ db -1 ; 17
+ db -1 ; 18
+ db ROOF_NEW_BARK ; 19 (Silver Cave)
+ db -1 ; 20
+ db -1 ; 21
+ db ROOF_OLIVINE ; 22 (Cianwood)
+ db -1 ; 23
+ db ROOF_NEW_BARK ; 24 (New Bark)
+ db -1 ; 25
+ db ROOF_NEW_BARK ; 26 (Cherrygrove)
+
+Roofs:
+; entries correspond to ROOF_* constants
+INCBIN "gfx/tilesets/roofs/new_bark.2bpp"
+INCBIN "gfx/tilesets/roofs/violet.2bpp"
+INCBIN "gfx/tilesets/roofs/azalea.2bpp"
+INCBIN "gfx/tilesets/roofs/olivine.2bpp"
+INCBIN "gfx/tilesets/roofs/goldenrod.2bpp"