mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-09-09 09:51:34 -07:00
185b0a1c86
Replaced encounter rates with percent values Added new constants denoting the number of wild Pokemon in the grass and water wild constructs Annotated and relabeled the encounter generating functions Renamed a WRAM address associaed with the temporary storage of the wild Pokemon's species Moved spawn constants to constants/map_constants.asm for use anywhere in the disassembly
60 lines
954 B
NASM
60 lines
954 B
NASM
; swarms in grass
|
|
|
|
; Dunsparce swarm
|
|
map DARK_CAVE_VIOLET_ENTRANCE
|
|
db 4 percent, 4 percent, 4 percent ; encounter rates: morn/day/nite
|
|
; morn
|
|
db 3, GEODUDE
|
|
db 3, DUNSPARCE
|
|
db 2, ZUBAT
|
|
db 2, GEODUDE
|
|
db 2, DUNSPARCE
|
|
db 4, DUNSPARCE
|
|
db 4, DUNSPARCE
|
|
; day
|
|
db 3, GEODUDE
|
|
db 3, DUNSPARCE
|
|
db 2, ZUBAT
|
|
db 2, GEODUDE
|
|
db 2, DUNSPARCE
|
|
db 4, DUNSPARCE
|
|
db 4, DUNSPARCE
|
|
; nite
|
|
db 3, GEODUDE
|
|
db 3, DUNSPARCE
|
|
db 2, ZUBAT
|
|
db 2, GEODUDE
|
|
db 2, DUNSPARCE
|
|
db 4, DUNSPARCE
|
|
db 4, DUNSPARCE
|
|
|
|
; Yanma swarm
|
|
map ROUTE_35
|
|
db 10 percent, 10 percent, 10 percent ; encounter rates: morn/day/nite
|
|
; morn
|
|
db 12, NIDORAN_M
|
|
db 12, NIDORAN_F
|
|
db 12, YANMA
|
|
db 14, YANMA
|
|
db 14, PIDGEY
|
|
db 10, DITTO
|
|
db 10, DITTO
|
|
; day
|
|
db 12, NIDORAN_M
|
|
db 12, NIDORAN_F
|
|
db 12, YANMA
|
|
db 14, YANMA
|
|
db 14, PIDGEY
|
|
db 10, DITTO
|
|
db 10, DITTO
|
|
; nite
|
|
db 12, NIDORAN_M
|
|
db 12, NIDORAN_F
|
|
db 12, YANMA
|
|
db 14, YANMA
|
|
db 14, HOOTHOOT
|
|
db 10, DITTO
|
|
db 10, DITTO
|
|
|
|
db -1 ; end
|