mirror of https://github.com/pret/pokecrystal.git
first event flag constants
This commit is contained in:
parent
af205a7217
commit
744d1d8599
|
@ -13,6 +13,7 @@ INCLUDE "constants/map_constants.asm"
|
||||||
INCLUDE "constants/item_constants.asm"
|
INCLUDE "constants/item_constants.asm"
|
||||||
INCLUDE "constants/trainer_constants.asm"
|
INCLUDE "constants/trainer_constants.asm"
|
||||||
INCLUDE "constants/script_constants.asm"
|
INCLUDE "constants/script_constants.asm"
|
||||||
|
INCLUDE "constants/event_flags.asm"
|
||||||
INCLUDE "constants/music_constants.asm"
|
INCLUDE "constants/music_constants.asm"
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,6 @@
|
||||||
|
EVENT_FOUGHT_SUDOWOODO EQU $02a
|
||||||
|
EVENT_FOUGHT_HO_OH EQU $317
|
||||||
|
EVENT_FOUGHT_LUGIA EQU $318
|
||||||
|
EVENT_FOUGHT_SUICUNE EQU $335
|
||||||
|
EVENT_FOUGHT_SNORLAX EQU $750
|
||||||
|
|
4
wram.asm
4
wram.asm
|
@ -1757,11 +1757,7 @@ SECTION "Events",WRAMX[$da72],BANK[1]
|
||||||
|
|
||||||
EventFlags: ; da72
|
EventFlags: ; da72
|
||||||
;RoomDecorations: ; dac6
|
;RoomDecorations: ; dac6
|
||||||
;HoOhEvent: ; dad4
|
|
||||||
;LugiaEvent: ; dad5
|
|
||||||
;SuicuneEvent: ; dad8 (tin tower)
|
|
||||||
;TeamRocketAzaleaTownAttackEvent: ; db51
|
;TeamRocketAzaleaTownAttackEvent: ; db51
|
||||||
;SudowoodoEvent: ; db51
|
|
||||||
;PoliceAtElmsLabEvent: ; db52
|
;PoliceAtElmsLabEvent: ; db52
|
||||||
;SalesmanMahoganyTownEvent: ; db5c
|
;SalesmanMahoganyTownEvent: ; db5c
|
||||||
;RedGyaradosEvent: ; db5c
|
;RedGyaradosEvent: ; db5c
|
||||||
|
|
Loading…
Reference in New Issue