From 16ad16302e0c5ee116c697454cb98a62cf0bb58b Mon Sep 17 00:00:00 2001 From: IIMarckus Date: Fri, 17 Oct 2014 11:13:22 -0600 Subject: Add the beach house tileset. --- data/collision.asm | 3 +++ data/tileset_headers.asm | 3 +++ gfx/blocksets/beachhouse.bst | Bin 0 -> 320 bytes gfx/tilesets/beachhouse.png | Bin 0 -> 566 bytes gfx/tilesets/beachhouse.tilecoll | 1 + main.asm | 10 ++++++++++ 6 files changed, 17 insertions(+) create mode 100644 gfx/blocksets/beachhouse.bst create mode 100644 gfx/tilesets/beachhouse.png create mode 100644 gfx/tilesets/beachhouse.tilecoll diff --git a/data/collision.asm b/data/collision.asm index 78579242..d3659e2a 100644 --- a/data/collision.asm +++ b/data/collision.asm @@ -22,3 +22,6 @@ Lab_Coll:: INCBIN "gfx/tilesets/lab.tilecoll" Club_Coll:: INCBIN "gfx/tilesets/club.tilecoll" Facility_Coll:: INCBIN "gfx/tilesets/facility.tilecoll" Plateau_Coll:: INCBIN "gfx/tilesets/plateau.tilecoll" +IF DEF(_YELLOW) +BeachHouse_Coll:: INCBIN "gfx/tilesets/beachhouse.tilecoll" +ENDC diff --git a/data/tileset_headers.asm b/data/tileset_headers.asm index 84cfaffd..6631b8f0 100755 --- a/data/tileset_headers.asm +++ b/data/tileset_headers.asm @@ -23,3 +23,6 @@ Tilesets: ; c7be (3:47be) tileset Club_Block, Club_GFX, Club_Coll, $07,$17,$FF, $FF, INDOOR tileset Facility_Block, Facility_GFX, Facility_Coll, $12,$FF,$FF, $FF, CAVE tileset Plateau_Block, Plateau_GFX, Plateau_Coll, $FF,$FF,$FF, $45, CAVE +IF DEF(_YELLOW) + tileset BeachHouse_Block, BeachHouse_GFX, BeachHouse_Coll, $FF,$FF,$FF, $FF, INDOOR +ENDC diff --git a/gfx/blocksets/beachhouse.bst b/gfx/blocksets/beachhouse.bst new file mode 100644 index 00000000..bafbe0b2 Binary files /dev/null and b/gfx/blocksets/beachhouse.bst differ diff --git a/gfx/tilesets/beachhouse.png b/gfx/tilesets/beachhouse.png new file mode 100644 index 00000000..f5dccf7a Binary files /dev/null and b/gfx/tilesets/beachhouse.png differ diff --git a/gfx/tilesets/beachhouse.tilecoll b/gfx/tilesets/beachhouse.tilecoll new file mode 100644 index 00000000..54ddac19 --- /dev/null +++ b/gfx/tilesets/beachhouse.tilecoll @@ -0,0 +1 @@ +ÿ \ No newline at end of file diff --git a/main.asm b/main.asm index 2423d139..7ee32d93 100755 --- a/main.asm +++ b/main.asm @@ -6635,3 +6635,13 @@ INCLUDE "engine/evolution.asm" INCLUDE "engine/overworld/elevator.asm" INCLUDE "engine/items/tm_prices.asm" + +IF DEF(_YELLOW) +SECTION "bank3C",ROMX[$314],BANK[$3C] + +BeachHouse_GFX: + INCBIN "gfx/tilesets/beachhouse.2bpp" + +BeachHouse_Block: + INCBIN "gfx/blocksets/beachhouse.bst" +ENDC -- cgit v1.2.3