-
Notifications
You must be signed in to change notification settings - Fork 815
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #530 from Rangi42/master
[RTM] Finish removing address comments, split out mart_constants.asm, and other tweaks
- Loading branch information
Showing
31 changed files
with
176 additions
and
175 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
; mart types (see engine/items/mart.asm) | ||
const_def | ||
const MARTTYPE_STANDARD | ||
const MARTTYPE_BITTER | ||
const MARTTYPE_BARGAIN | ||
const MARTTYPE_PHARMACY | ||
const MARTTYPE_ROOFTOP | ||
|
||
; Marts indexes (see data/items/marts.asm) | ||
const_def | ||
const MART_CHERRYGROVE | ||
const MART_CHERRYGROVE_DEX | ||
const MART_VIOLET | ||
const MART_AZALEA | ||
const MART_CIANWOOD | ||
const MART_GOLDENROD_2F_1 | ||
const MART_GOLDENROD_2F_2 | ||
const MART_GOLDENROD_3F | ||
const MART_GOLDENROD_4F | ||
const MART_GOLDENROD_5F_1 | ||
const MART_GOLDENROD_5F_2 | ||
const MART_GOLDENROD_5F_3 | ||
const MART_GOLDENROD_5F_4 | ||
const MART_OLIVINE | ||
const MART_ECRUTEAK | ||
const MART_MAHOGANY_1 | ||
const MART_MAHOGANY_2 | ||
const MART_BLACKTHORN | ||
const MART_VIRIDIAN | ||
const MART_PEWTER | ||
const MART_CERULEAN | ||
const MART_LAVENDER | ||
const MART_VERMILION | ||
const MART_CELADON_2F_1 | ||
const MART_CELADON_2F_2 | ||
const MART_CELADON_3F | ||
const MART_CELADON_4F | ||
const MART_CELADON_5F_1 | ||
const MART_CELADON_5F_2 | ||
const MART_FUCHSIA | ||
const MART_SAFFRON | ||
const MART_MT_MOON | ||
const MART_INDIGO_PLATEAU | ||
const MART_UNDERGROUND |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
; This was a table of Pokémon sprite banks in the 1997 G/S prototype. | ||
; See pokegold-spaceworld's gfx/pokemon/pkmn_pic_banks.asm. | ||
|
||
Unreferenced_MonPicBanks: | ||
; last mon in bank, bank # | ||
db RAICHU, $15 + 0 | ||
db DUGTRIO, $15 + 1 | ||
db GRAVELER, $15 + 2 | ||
db KRABBY, $15 + 3 | ||
db STARMIE, $15 + 4 | ||
db ARTICUNO, $15 + 5 | ||
db ARIADOS, $15 + 6 ; JARANRA in pokegold-spaceworld | ||
db ESPEON, $15 + 7 ; KOUNYA in pokegold-spaceworld | ||
db OCTILLERY, $15 + 8 ; BOMBSEEKER in pokegold-spaceworld | ||
db LARVITAR, $15 + 9 ; NYULA in pokegold-spaceworld | ||
db $ff, $15 + 10 | ||
db $ff, $15 + 11 |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.