diff options
Diffstat (limited to 'data/tilesets/warp_tile_ids.asm')
| -rwxr-xr-x | data/tilesets/warp_tile_ids.asm | 144 |
1 files changed, 76 insertions, 68 deletions
diff --git a/data/tilesets/warp_tile_ids.asm b/data/tilesets/warp_tile_ids.asm index 6fd326cc..db005dcf 100755 --- a/data/tilesets/warp_tile_ids.asm +++ b/data/tilesets/warp_tile_ids.asm @@ -1,85 +1,93 @@ WarpTileIDPointers: - dw OverworldWarpTileIDs - dw RedsHouse1WarpTileIDs - dw MartWarpTileIDs - dw ForestWarpTileIDs - dw RedsHouse2WarpTileIDs - dw DojoWarpTileIDs - dw PokecenterWarpTileIDs - dw GymWarpTileIDs - dw HouseWarpTileIDs - dw ForestGateWarpTileIDs - dw MuseumWarpTileIDs - dw UndergroundWarpTileIDs - dw GateWarpTileIDs - dw ShipWarpTileIDs - dw ShipPortWarpTileIDs - dw CemeteryWarpTileIDs - dw InteriorWarpTileIDs - dw CavernWarpTileIDs - dw LobbyWarpTileIDs - dw MansionWarpTileIDs - dw LabWarpTileIDs - dw ClubWarpTileIDs - dw FacilityWarpTileIDs - dw PlateauWarpTileIDs + dw .OverworldWarpTileIDs + dw .RedsHouse1WarpTileIDs + dw .MartWarpTileIDs + dw .ForestWarpTileIDs + dw .RedsHouse2WarpTileIDs + dw .DojoWarpTileIDs + dw .PokecenterWarpTileIDs + dw .GymWarpTileIDs + dw .HouseWarpTileIDs + dw .ForestGateWarpTileIDs + dw .MuseumWarpTileIDs + dw .UndergroundWarpTileIDs + dw .GateWarpTileIDs + dw .ShipWarpTileIDs + dw .ShipPortWarpTileIDs + dw .CemeteryWarpTileIDs + dw .InteriorWarpTileIDs + dw .CavernWarpTileIDs + dw .LobbyWarpTileIDs + dw .MansionWarpTileIDs + dw .LabWarpTileIDs + dw .ClubWarpTileIDs + dw .FacilityWarpTileIDs + dw .PlateauWarpTileIDs -OverworldWarpTileIDs: - db $1B,$58,$FF +warp_tiles: MACRO +REPT _NARG + db \1 + shift +ENDR + db -1 ; end +ENDM -ForestGateWarpTileIDs: -MuseumWarpTileIDs: -GateWarpTileIDs: - db $3B - -RedsHouse1WarpTileIDs: -RedsHouse2WarpTileIDs: - db $1A,$1C,$FF +.OverworldWarpTileIDs: + warp_tiles $1B, $58 -MartWarpTileIDs: -PokecenterWarpTileIDs: - db $5E,$FF +.ForestGateWarpTileIDs: +.MuseumWarpTileIDs: +.GateWarpTileIDs: + db $3B + ; fallthrough +.RedsHouse1WarpTileIDs: +.RedsHouse2WarpTileIDs: + warp_tiles $1A, $1C -ForestWarpTileIDs: - db $5A,$5C,$3A,$FF +.MartWarpTileIDs: +.PokecenterWarpTileIDs: + warp_tiles $5E -DojoWarpTileIDs: -GymWarpTileIDs: - db $4A,$FF +.ForestWarpTileIDs: + warp_tiles $5A, $5C, $3A -HouseWarpTileIDs: - db $54,$5C,$32,$FF +.DojoWarpTileIDs: +.GymWarpTileIDs: + warp_tiles $4A -ShipWarpTileIDs: - db $37,$39,$1E,$4A,$FF +.HouseWarpTileIDs: + warp_tiles $54, $5C, $32 -InteriorWarpTileIDs: - db $15,$55,$04,$FF +.ShipWarpTileIDs: + warp_tiles $37, $39, $1E, $4A -CavernWarpTileIDs: - db $18,$1A,$22,$FF +.InteriorWarpTileIDs: + warp_tiles $15, $55, $04 -LobbyWarpTileIDs: - db $1A,$1C,$38,$FF +.CavernWarpTileIDs: + warp_tiles $18, $1A, $22 -MansionWarpTileIDs: - db $1A,$1C,$53,$FF +.LobbyWarpTileIDs: + warp_tiles $1A, $1C, $38 -LabWarpTileIDs: - db $34,$FF +.MansionWarpTileIDs: + warp_tiles $1A, $1C, $53 -FacilityWarpTileIDs: - db $43,$58,$20 +.LabWarpTileIDs: + warp_tiles $34 -CemeteryWarpTileIDs: +.FacilityWarpTileIDs: + db $43, $58, $20 + ; fallthrough +.CemeteryWarpTileIDs: db $1B + ; fallthrough +.UndergroundWarpTileIDs: + warp_tiles $13 -UndergroundWarpTileIDs: - db $13,$FF - -PlateauWarpTileIDs: - db $1B,$3B - -ShipPortWarpTileIDs: -ClubWarpTileIDs: - db $FF +.PlateauWarpTileIDs: + db $1B, $3B + ; fallthrough +.ShipPortWarpTileIDs: +.ClubWarpTileIDs: + warp_tiles ; end |
