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

Whoa, this one's been in the making for a while now. This one has been my attempt to fix as much as I could within a little over a month. Here's what I've got for you. - Fixed a bug in Silph Gauntlet where the trainers would not see you unless you spoke to them - Removed the unnecessary Gawarhed and Wugtrio static encounters. In what was once Gawarhed's place is a Rare Candy. - Implemented a working ferry system (huge thanks to Red++) that allows travelling to Faraway Island and Citrine City with the right tickets. Currently both maps use a copy of the SS Anne, which may be revised later. - Bittybat, Magnetite and Burgela have been removed to fix a Pokedex bug where entries wouldn't display correctly if the total number wasn't a multiple of 8. - Fixed a bug where fishing up a Wiglett and Wugtrio would play the trainer battle and Champion battle themes respectively - Restructured the Pokedex a little. Don't worry, Lickitung's still number 108! - All references to betamon in the disassembly have had their names updated to match the new Ogasawara ones - Removed Blastyke as a Game Corner prize, replacing it with Squeamata. - Garnet Cavern is now properly listed as a dungeon map - Fixed an issue where trying to leave Bill's House after entering the garden would put you back in the garden - Moved Silph Gauntlet's Beauty down 1 floor to make the number of trainers on each floor more consistent - Finished Gauntlet 6F except for the trainer text (PvK please help) - Gavillain's stats updated to match KEP 1.4 on the Showdown server. It's now a Dragon/Electric type with less Ice coverage. - Fixed Clefable's and Wigglytuff's starting movesets from an earlier commit - Fixed an ABSOLUTELY HORRIBLE, EGREGIOUSLY FRUSTRATING BUG that caused the Pokedex's seen counter to rarely update. This is what caused this commit to be delayed for so long. No joke. - New sprites, courtesy of Albatross, for Sylveon's back sprite, Alolan Marowak, Alolan Muk, Galarian Weezing and Magnezone! - Fixed a bug preventing the trade for Haunter from being accessed.
170 lines
4 KiB
NASM
170 lines
4 KiB
NASM
; super rod encounters
|
|
SuperRodData:
|
|
; map, fishing group
|
|
dbw PALLET_TOWN, .Group1
|
|
dbw VIRIDIAN_CITY, .Group1
|
|
dbw CERULEAN_CITY, .Group2
|
|
dbw VERMILION_CITY, .Group3
|
|
dbw CELADON_CITY, .Group11
|
|
dbw FUCHSIA_CITY, .Group5
|
|
dbw CINNABAR_ISLAND, .Group8
|
|
dbw CITRINE_CITY, .Group9
|
|
dbw ROUTE_4, .Group2
|
|
dbw ROUTE_6, .Group2
|
|
dbw ROUTE_10, .Group4
|
|
dbw ROUTE_11, .Group3
|
|
dbw ROUTE_12, .Group4
|
|
dbw ROUTE_13, .Group5
|
|
dbw ROUTE_17, .Group5
|
|
dbw ROUTE_18, .Group5
|
|
dbw ROUTE_19, .Group8
|
|
dbw ROUTE_20, .Group8
|
|
dbw ROUTE_21, .Group8
|
|
dbw ROUTE_22, .Group1
|
|
dbw ROUTE_23, .Group8
|
|
dbw ROUTE_24, .Group2
|
|
dbw ROUTE_25, .Group3
|
|
dbw BRUNSWICK_TRAIL, .Group9
|
|
dbw CERULEAN_GYM, .Group2
|
|
dbw VERMILION_DOCK, .Group3
|
|
dbw SEAFOAM_ISLANDS_B3F, .Group8
|
|
dbw SEAFOAM_ISLANDS_B4F, .Group8
|
|
dbw SAFARI_ZONE_EAST, .Group6
|
|
dbw SAFARI_ZONE_NORTH, .Group6
|
|
dbw SAFARI_ZONE_WEST, .Group6
|
|
dbw SAFARI_ZONE_CENTER, .Group6
|
|
dbw CERULEAN_CAVE_2F, .Group10
|
|
dbw CERULEAN_CAVE_B1F, .Group10
|
|
dbw CERULEAN_CAVE_1F, .Group10
|
|
dbw SILPH_GAUNTLET_5F, .Group6
|
|
dbw ROCK_TUNNEL_1F, .Group4
|
|
dbw CELADON_UNIVERSITY_OUTSIDE, .Group11
|
|
dbw FARAWAY_ISLAND_INSIDE, .Group5
|
|
dbw MT_MOON_CRATER, .Group10
|
|
dbw DIGLETTS_CAVE, .Group12
|
|
dbw BILLS_GARDEN, .Group7
|
|
dbw UNDERWATER_TUNNEL, .Group8
|
|
dbw LORELEIS_ROOM, .Group8
|
|
dbw GARNET_CAVERN_1F, .Group9
|
|
dbw GARNET_CAVERN_2F, .Group9
|
|
dbw GARNET_CAVERN_B1F, .Group9
|
|
dbw CINNABAR_VOLCANO_FLOORS, .Group13
|
|
dbw CINNABAR_VOLCANO, .Group13
|
|
db -1 ; end
|
|
|
|
; fishing groups
|
|
; number of monsters, followed by level/monster pairs
|
|
|
|
.Group1: ; Pallet, Viridian & Route 22
|
|
db 4
|
|
db 5, MAGIKARP
|
|
db 7, MAGIKARP
|
|
db 5, ORFRY
|
|
db 7, ORFRY
|
|
|
|
.Group2: ; Route 4, Cerulean, Route 24, Route 6
|
|
db 4
|
|
db 12, MAGIKARP
|
|
db 12, POLIWAG
|
|
db 12, ORFRY
|
|
db 12, PSYDUCK
|
|
|
|
.Group3: ; Route 11, Route 25, Vermilion
|
|
db 5
|
|
db 15, BLOTTLE
|
|
db 15, MAGIKARP
|
|
db 15, SLOWPOKE
|
|
db 15, TENTACOOL
|
|
db 15, CHEEP
|
|
|
|
.Group4: ; Route 10, Route 12, Rock Tunnel
|
|
db 5
|
|
db 20, SLOWPOKE
|
|
db 20, PSYDUCK
|
|
db 20, TENTACOOL
|
|
db 20, BLOTTLE
|
|
db 20, KRABBY
|
|
|
|
.Group5: ; Route 13, Route 17, Route 18, Fuchsia
|
|
db 6
|
|
db 25, HORSEA
|
|
db 25, POLIWHIRL
|
|
db 25, KRABBY
|
|
db 25, CHEEP
|
|
db 25, BLOTTLE
|
|
db 25, GOLDEEN
|
|
|
|
.Group6: ; Safari Zone
|
|
db 6
|
|
db 15, DRATINI
|
|
db 20, SLOWPOKE
|
|
db 25, KRABBY
|
|
db 25, WEIRDUCK
|
|
db 25, POLIWHIRL
|
|
db 30, DRAGONAIR
|
|
|
|
.Group7: ; Bill's Garden
|
|
db 6
|
|
db 50, SQUIRTLE
|
|
db 50, SQUIRTLE
|
|
db 50, DRATINI
|
|
db 50, DRATINI
|
|
db 50, DRAGONAIR
|
|
db 55, DRAGONITE
|
|
|
|
.Group8: ; Sea Routes, Route 23, Seafoam Islands, Underwater Tunnel
|
|
db 6
|
|
db 30, STARYU
|
|
db 30, HORSEA
|
|
db 30, SHELLDER
|
|
db 30, SHARPOON
|
|
db 30, BLASTYKE
|
|
db 30, GOLDEEN
|
|
|
|
.Group9: ; Citrine, Brunswick, Garnet
|
|
db 8
|
|
db 50, SHARPOON
|
|
db 50, SEAKING
|
|
db 50, KINGLER
|
|
db 50, SEADRA
|
|
db 50, PENDRAKEN
|
|
db 50, GYARADOS
|
|
db 50, JABETTA
|
|
db 50, CROAKOZUNA
|
|
|
|
.Group10: ; Cerulean Cave
|
|
db 8
|
|
db 50, SLOWBRO
|
|
db 50, SEAKING
|
|
db 50, KINGLER
|
|
db 50, SHELLDER
|
|
db 50, GYARADOS
|
|
db 50, JABETTA
|
|
db 50, CROAKOZUNA
|
|
db 50, GOLDUCK
|
|
|
|
.Group11: ; Celadon
|
|
db 7
|
|
db 5, MAGIKARP
|
|
db 10, MAGIKARP
|
|
db 15, MAGIKARP
|
|
db 20, MAGIKARP
|
|
db 25, MAGIKARP
|
|
db 20, GYARADOS
|
|
db 20, GRIMER
|
|
|
|
.Group12: ; Diglett's Cave
|
|
db 6
|
|
db 16, WIGLETT
|
|
db 18, WIGLETT
|
|
db 19, WIGLETT
|
|
db 21, WIGLETT
|
|
db 20, WIGLETT
|
|
db 28, WUGTRIO
|
|
|
|
.Group13: ; Cinnabar Volcano
|
|
db 3
|
|
db 35, MAGMAR
|
|
db 37, MAGMAR
|
|
db 40, MAGMAR
|