mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-10-16 12:06:25 +13:00

This adds a new tileset for the Seagallop Ferry. Had to remake the tileset from scratch using the S.S. Anne one. Very awkward! The map could be made to look more like the FRLG one but that's neither here nor there.
72 lines
1.4 KiB
NASM
72 lines
1.4 KiB
NASM
DoorTileIDPointers:
|
|
dbw OVERWORLD, .OverworldDoorTileIDs
|
|
dbw FOREST, .ForestDoorTileIDs
|
|
dbw MART, .MartDoorTileIDs
|
|
dbw HOUSE, .HouseDoorTileIDs
|
|
dbw FOREST_GATE, .TilesetMuseumDoorTileIDs
|
|
dbw MUSEUM, .TilesetMuseumDoorTileIDs
|
|
dbw GATE, .TilesetMuseumDoorTileIDs
|
|
dbw SHIP, .ShipDoorTileIDs
|
|
dbw LOBBY, .LobbyDoorTileIDs
|
|
dbw MANSION, .MansionDoorTileIDs
|
|
dbw LAB, .LabDoorTileIDs
|
|
dbw FACILITY, .FacilityDoorTileIDs
|
|
dbw PLATEAU, .PlateauDoorTileIDs
|
|
dbw INTERIOR, .InteriorDoorTileIDs ; fixes weirdness in silph co.
|
|
dbw CITRINE, .CitrineDoorTileIDs
|
|
dbw CELESTE, .CelesteDoorTileIDs
|
|
dbw SEAGALLOPPORT, .SeagallopPortDoorTileIDs
|
|
db -1 ; end
|
|
|
|
MACRO door_tiles
|
|
IF _NARG
|
|
db \# ; all args
|
|
ENDC
|
|
db 0 ; end
|
|
ENDM
|
|
|
|
.OverworldDoorTileIDs:
|
|
door_tiles $1B, $58
|
|
|
|
.ForestDoorTileIDs:
|
|
door_tiles $3a
|
|
|
|
.MartDoorTileIDs:
|
|
door_tiles $5e
|
|
|
|
.HouseDoorTileIDs:
|
|
door_tiles $54
|
|
|
|
.TilesetMuseumDoorTileIDs:
|
|
door_tiles $3b
|
|
|
|
.ShipDoorTileIDs:
|
|
door_tiles $1e
|
|
|
|
.LobbyDoorTileIDs:
|
|
door_tiles $1c, $38, $1a
|
|
|
|
.MansionDoorTileIDs:
|
|
door_tiles $1a, $1c, $53
|
|
|
|
.LabDoorTileIDs:
|
|
door_tiles $34
|
|
|
|
.FacilityDoorTileIDs:
|
|
door_tiles $43, $58, $1b
|
|
|
|
.PlateauDoorTileIDs:
|
|
door_tiles $3b, $1b
|
|
|
|
.InteriorDoorTileIDs:
|
|
door_tiles $04, $15
|
|
|
|
.CitrineDoorTileIDs:
|
|
door_tiles $1C, $1B, $58, $59
|
|
|
|
.CelesteDoorTileIDs:
|
|
door_tiles $0C, $1C
|
|
|
|
.SeagallopPortDoorTileIDs:
|
|
door_tiles $0E, $1E
|