pokecrystal/maps/OlivineCafe.asm

101 lines
1.9 KiB
NASM
Raw Normal View History

2015-11-27 05:22:14 +00:00
const_value set 2
const OLIVINECAFE_SAILOR1
const OLIVINECAFE_FISHING_GURU
const OLIVINECAFE_SAILOR2
2015-07-10 08:45:35 +00:00
OlivineCafe_MapScriptHeader:
.SceneScripts:
db 0
.MapCallbacks:
db 0
2015-07-10 08:45:35 +00:00
SailorScript_0x9c8c1:
faceplayer
2015-12-09 23:25:44 +00:00
opentext
2013-09-24 07:48:58 +00:00
checkevent EVENT_GOT_HM04_STRENGTH
iftrue UnknownScript_0x9c8d3
2015-01-20 08:01:23 +00:00
writetext UnknownText_0x9c8df
2015-11-30 03:29:45 +00:00
buttonsound
2015-11-05 01:20:14 +00:00
verbosegiveitem HM_STRENGTH
2013-09-24 07:48:58 +00:00
setevent EVENT_GOT_HM04_STRENGTH
2015-07-10 08:45:35 +00:00
UnknownScript_0x9c8d3:
2015-01-20 08:01:23 +00:00
writetext UnknownText_0x9c965
2015-11-25 15:16:29 +00:00
waitbutton
closetext
end
2017-12-18 00:48:04 +00:00
OlivineCafeFishingGuruScript:
jumptextfaceplayer OlivineCafeFishingGuruText
2017-12-18 00:48:04 +00:00
OlivineCafeSailorScript:
jumptextfaceplayer OlivineCafeSailorText
2015-07-10 08:45:35 +00:00
UnknownText_0x9c8df:
text "Hah! Your #MON"
line "sure look like"
cont "lightweights!"
para "They don't have"
line "the power to move"
cont "boulders aside."
para "Here, use this"
line "and teach them"
cont "STRENGTH!"
done
2015-07-10 08:45:35 +00:00
UnknownText_0x9c965:
text "On the sea, the"
line "only thing you can"
para "count on is your"
line "own good self!"
para "I'm so proud of my"
line "buff bod!"
done
2017-12-18 00:48:04 +00:00
OlivineCafeFishingGuruText:
text "OLIVINE CAFE's"
line "menu is chock full"
para "of hearty fare for"
line "beefy SAILORS!"
done
2017-12-18 00:48:04 +00:00
OlivineCafeSailorText:
text "Whenever I roll"
line "into this town, I"
para "always visit the"
line "OLIVINE CAFE."
para "Everything on the"
line "menu makes me feel"
para "stronger. I can't"
line "stop eating!"
done
2015-07-10 08:45:35 +00:00
OlivineCafe_MapEventHeader:
; filler
db 0, 0
.Warps:
db 2
warp_def $7, $2, 7, OLIVINE_CITY
warp_def $7, $3, 7, OLIVINE_CITY
.CoordEvents:
db 0
.BGEvents:
db 0
.ObjectEvents:
db 3
object_event SPRITE_SAILOR, 3, 4, SPRITEMOVEDATA_STANDING_LEFT, 0, 0, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, SailorScript_0x9c8c1, -1
object_event SPRITE_FISHING_GURU, 3, 7, SPRITEMOVEDATA_WALK_UP_DOWN, 1, 0, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, OlivineCafeFishingGuruScript, -1
object_event SPRITE_SAILOR, 6, 6, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, OlivineCafeSailorScript, -1