mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-09-09 09:51:34 -07:00
dcb24bc724
Resolves #742
61 lines
1.4 KiB
NASM
61 lines
1.4 KiB
NASM
object_const_def
|
|
const ECRUTEAKMART_CLERK
|
|
const ECRUTEAKMART_SUPER_NERD
|
|
const ECRUTEAKMART_GRANNY
|
|
|
|
EcruteakMart_MapScripts:
|
|
def_scene_scripts
|
|
|
|
def_callbacks
|
|
|
|
EcruteakMartClerkScript:
|
|
opentext
|
|
pokemart MARTTYPE_STANDARD, MART_ECRUTEAK
|
|
closetext
|
|
end
|
|
|
|
EcruteakMartSuperNerdScript:
|
|
jumptextfaceplayer EcruteakMartSuperNerdText
|
|
|
|
EcruteakMartGrannyScript:
|
|
jumptextfaceplayer EcruteakMartGrannyText
|
|
|
|
EcruteakMartSuperNerdText:
|
|
text "My EEVEE evolved"
|
|
line "into an ESPEON."
|
|
|
|
para "But my friend's"
|
|
line "EEVEE turned into"
|
|
cont "an UMBREON."
|
|
|
|
para "I wonder why? We"
|
|
line "both were raising"
|
|
|
|
para "our EEVEE in the"
|
|
line "same way…"
|
|
done
|
|
|
|
EcruteakMartGrannyText:
|
|
text "If you use REVIVE,"
|
|
line "a #MON that's"
|
|
|
|
para "fainted will wake"
|
|
line "right up."
|
|
done
|
|
|
|
EcruteakMart_MapEvents:
|
|
db 0, 0 ; filler
|
|
|
|
def_warp_events
|
|
warp_event 2, 7, ECRUTEAK_CITY, 9
|
|
warp_event 3, 7, ECRUTEAK_CITY, 9
|
|
|
|
def_coord_events
|
|
|
|
def_bg_events
|
|
|
|
def_object_events
|
|
object_event 1, 3, SPRITE_CLERK, SPRITEMOVEDATA_STANDING_RIGHT, 0, 0, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, EcruteakMartClerkScript, -1
|
|
object_event 5, 2, SPRITE_SUPER_NERD, SPRITEMOVEDATA_WALK_LEFT_RIGHT, 1, 0, -1, -1, PAL_NPC_GREEN, OBJECTTYPE_SCRIPT, 0, EcruteakMartSuperNerdScript, -1
|
|
object_event 6, 6, SPRITE_GRANNY, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, EcruteakMartGrannyScript, -1
|