pokered/engine/battle/wild_encounters.asm

105 lines
2.7 KiB
NASM
Raw Normal View History

; try to initiate a wild pokemon encounter
; returns success in Z
2016-06-12 00:24:04 +00:00
TryDoWildEncounter:
ld a, [wNPCMovementScriptPointerTableNum]
and a
ret nz
ld a, [wd736]
and a
ret nz
callab IsPlayerStandingOnDoorTileOrWarpTile
jr nc, .notStandingOnDoorOrWarpTile
.CantEncounter
ld a, $1
and a
ret
.notStandingOnDoorOrWarpTile
callab IsPlayerJustOutsideMap
jr z, .CantEncounter
ld a, [wRepelRemainingSteps]
and a
2015-07-24 03:48:35 +00:00
jr z, .next
dec a
jr z, .lastRepelStep
ld [wRepelRemainingSteps], a
2015-07-24 03:48:35 +00:00
.next
2015-06-11 22:41:33 +00:00
; determine if wild pokemon can appear in the half-block we're standing in
; is the bottom right tile (9,9) of the half-block we're standing in a grass/water tile?
2015-07-18 20:52:03 +00:00
coord hl, 9, 9
ld c, [hl]
2015-08-31 02:38:41 +00:00
ld a, [wGrassTile]
cp c
2015-08-31 02:38:41 +00:00
ld a, [wGrassRate]
jr z, .CanEncounter
ld a, $14 ; in all tilesets with a water tile, this is its id
cp c
ld a, [wWaterRate]
jr z, .CanEncounter
2015-06-05 04:01:40 +00:00
; even if not in grass/water, standing anywhere we can encounter pokemon
; so long as the map is "indoor" and has wild pokemon defined.
; ...as long as it's not Viridian Forest or Safari Zone.
2015-08-31 02:38:41 +00:00
ld a, [wCurMap]
cp REDS_HOUSE_1F ; is this an indoor map?
jr c, .CantEncounter2
2015-08-31 02:38:41 +00:00
ld a, [wCurMapTileset]
cp FOREST ; Viridian Forest/Safari Zone
jr z, .CantEncounter2
2015-08-31 02:38:41 +00:00
ld a, [wGrassRate]
.CanEncounter
; compare encounter chance with a random number to determine if there will be an encounter
ld b, a
ld a, [hRandomAdd]
cp b
jr nc, .CantEncounter2
ld a, [hRandomSub]
ld b, a
ld hl, WildMonEncounterSlotChances
.determineEncounterSlot
ld a, [hli]
cp b
jr nc, .gotEncounterSlot
inc hl
jr .determineEncounterSlot
.gotEncounterSlot
2015-06-05 04:01:40 +00:00
; determine which wild pokemon (grass or water) can appear in the half-block we're standing in
ld c, [hl]
2015-08-31 02:38:41 +00:00
ld hl, wGrassMons
2015-06-11 22:41:33 +00:00
aCoord 8, 9
cp $14 ; is the bottom left tile (8,9) of the half-block we're standing in a water tile?
jr nz, .gotWildEncounterType ; else, it's treated as a grass tile by default
ld hl, wWaterMons
; since the bottom right tile of a "left shore" half-block is $14 but the bottom left tile is not,
2015-06-11 22:41:33 +00:00
; "left shore" half-blocks (such as the one in the east coast of Cinnabar) load grass encounters.
.gotWildEncounterType
2015-07-24 03:48:35 +00:00
ld b, 0
add hl, bc
ld a, [hli]
2015-08-31 02:38:41 +00:00
ld [wCurEnemyLVL], a
ld a, [hl]
ld [wcf91], a
ld [wEnemyMonSpecies2], a
ld a, [wRepelRemainingSteps]
and a
jr z, .willEncounter
ld a, [wPartyMon1Level]
ld b, a
2015-08-31 02:38:41 +00:00
ld a, [wCurEnemyLVL]
cp b
jr c, .CantEncounter2 ; repel prevents encounters if the leading party mon's level is higher than the wild mon
jr .willEncounter
.lastRepelStep
ld [wRepelRemainingSteps], a
2015-07-24 03:48:35 +00:00
ld a, TEXT_REPEL_WORE_OFF
ld [hSpriteIndexOrTextID], a
call EnableAutoTextBoxDrawing
call DisplayTextID
.CantEncounter2
ld a, $1
and a
ret
.willEncounter
xor a
ret
INCLUDE "data/wild_probabilities.asm"