mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-11-11 07:44:47 +13:00
Cactus and Gapdos now disappear after the battle
This commit is contained in:
parent
108fb01070
commit
858e7bc92a
|
|
@ -640,9 +640,10 @@
|
|||
const EVENT_BEAT_MEW
|
||||
const_skip 7
|
||||
const EVENT_BEAT_MOLTRES
|
||||
;const_skip 7
|
||||
;const EVENT_BEAT_OMEGA
|
||||
const_skip 7
|
||||
const EVENT_BEAT_CACTUS
|
||||
const EVENT_BEAT_ZAPDOSG
|
||||
const_skip 6
|
||||
const EVENT_BEAT_DRAGONITE
|
||||
|
||||
; Celadon University, Salesman
|
||||
|
|
@ -785,8 +786,6 @@
|
|||
|
||||
; Safari Zone events
|
||||
const_next $880
|
||||
const EVENT_BEAT_CACTUS
|
||||
const EVENT_BEAT_ZAPDOSG
|
||||
const EVENT_GOT_HM03
|
||||
const EVENT_GOT_MELTAN
|
||||
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@ CelesteHill_Object:
|
|||
db $0 ; border block
|
||||
|
||||
def_warp_events
|
||||
warp_event 12, 23, BRUNSWICK_TRAIL, 1
|
||||
warp_event 13, 23, BRUNSWICK_TRAIL, 1
|
||||
|
||||
def_bg_events
|
||||
|
|
|
|||
|
|
@ -7,9 +7,9 @@ MtMoonCraterMons:
|
|||
db 52, DUGTRIO
|
||||
db 55, ESPEON
|
||||
db 55, UMBREON
|
||||
db 56, SANDY_SHOCKS
|
||||
db 50, SANDY_SHOCKS
|
||||
db 50, SCREAM_TAIL
|
||||
db 50, CHANSEY ; I don't like this but I also don't like the Paradox Pokemon not both being 4%. Sue me.
|
||||
db 56, CHANSEY ; I don't like this but I also don't like the Paradox Pokemon not both being 4%. Sue me.
|
||||
end_grass_wildmons
|
||||
|
||||
def_water_wildmons 10 ; encounter rate
|
||||
|
|
|
|||
|
|
@ -1,8 +1,11 @@
|
|||
BrunswickTrail_Script:
|
||||
jp EnableAutoTextBoxDrawing
|
||||
ld hl, BrunswickTrail_ScriptPointers
|
||||
call EnableAutoTextBoxDrawing
|
||||
ld hl, BrunswickTrailTrainerHeaders
|
||||
ld de, BrunswickTrail_ScriptPointers
|
||||
ld a, [wBrunswickTrailCurScript]
|
||||
jp CallFunctionInTable
|
||||
call ExecuteCurMapScriptInTable
|
||||
ld [wBrunswickTrailCurScript], a
|
||||
ret
|
||||
|
||||
BrunswickTrail_ScriptPointers:
|
||||
dw CheckFightingMapTrainers
|
||||
|
|
@ -15,7 +18,7 @@ BrunswickTrail_TextPointers:
|
|||
dw GalarianZapdosText
|
||||
|
||||
BrunswickTrailTrainerHeaders:
|
||||
def_trainers 0
|
||||
def_trainers
|
||||
CactusTrainerHeader:
|
||||
trainer EVENT_BEAT_CACTUS, 0, CactusBattleText, CactusBattleText, CactusBattleText
|
||||
GalarianZapdosTrainerHeader:
|
||||
|
|
|
|||
|
|
@ -34,7 +34,7 @@ _FakeTreeAttack::
|
|||
prompt
|
||||
|
||||
_GalarianZapdosBattleText::
|
||||
text "Kyooo!"
|
||||
text "Gyaoo!" ; making the cries consistent with the other legendary birds
|
||||
prompt
|
||||
|
||||
; Martha can do the text for her things...
|
||||
|
|
|
|||
Loading…
Reference in a new issue