pokecrystal-board/maps/OlivineGym.asm

221 lines
3.9 KiB
NASM
Raw Normal View History

2015-11-26 21:22:14 -08:00
const_value set 2
const OLIVINEGYM_JASMINE
const OLIVINEGYM_GYM_GUY
2015-07-10 00:00:27 -07:00
OlivineGym_MapScriptHeader:
.MapTriggers:
db 0
.MapCallbacks:
db 0
2015-07-10 00:00:27 -07:00
JasmineScript_0x9c12f:
faceplayer
loadfont
2013-09-24 00:48:58 -07:00
checkevent EVENT_BEAT_JASMINE
2015-07-10 00:00:27 -07:00
iftrue .FightDone
2015-01-20 00:01:23 -08:00
writetext UnknownText_0x9c1b9
2015-11-25 07:16:29 -08:00
waitbutton
closetext
2015-11-02 11:37:02 -08:00
winlosstext UnknownText_0x9c2bb, 0
loadtrainer JASMINE, 1
startbattle
returnafterbattle
2013-09-24 00:48:58 -07:00
setevent EVENT_BEAT_JASMINE
loadfont
2015-01-20 00:01:23 -08:00
writetext UnknownText_0x9c33a
playsound SFX_GET_BADGE
2015-11-25 07:16:29 -08:00
waitsfx
2015-07-10 00:00:27 -07:00
setflag ENGINE_MINERALBADGE
checkcode VAR_BADGES
scall OlivineGymTriggerRockets
.FightDone
2013-09-24 00:48:58 -07:00
checkevent EVENT_GOT_TM23_IRON_TAIL
iftrue UnknownScript_0x9c172
2015-01-20 00:01:23 -08:00
writetext UnknownText_0x9c354
2015-11-29 19:29:45 -08:00
buttonsound
2015-11-04 17:20:14 -08:00
verbosegiveitem TM_IRON_TAIL
iffalse UnknownScript_0x9c176
2013-09-24 00:48:58 -07:00
setevent EVENT_GOT_TM23_IRON_TAIL
2015-01-20 00:01:23 -08:00
writetext UnknownText_0x9c3a5
2015-11-25 07:16:29 -08:00
waitbutton
closetext
end
2015-07-10 00:00:27 -07:00
UnknownScript_0x9c172:
2015-01-20 00:01:23 -08:00
writetext UnknownText_0x9c3d1
2015-11-25 07:16:29 -08:00
waitbutton
2015-07-10 00:00:27 -07:00
UnknownScript_0x9c176:
2015-11-25 07:16:29 -08:00
closetext
end
2015-07-10 00:00:27 -07:00
OlivineGymTriggerRockets:
if_equal 7, .RadioTowerRockets
if_equal 6, .GoldenrodRockets
end
2015-07-10 00:00:27 -07:00
.GoldenrodRockets
2015-06-24 18:26:24 -07:00
jumpstd goldenrodrockets
2015-07-10 00:00:27 -07:00
.RadioTowerRockets
2015-06-24 18:26:24 -07:00
jumpstd radiotowerrockets
2015-07-10 00:00:27 -07:00
OlivineGymGuyScript:
faceplayer
2013-09-24 00:48:58 -07:00
checkevent EVENT_BEAT_JASMINE
iftrue .OlivineGymGuyWinScript
2013-09-24 00:48:58 -07:00
checkevent EVENT_JASMINE_RETURNED_TO_GYM
iffalse .OlivineGymGuyPreScript
loadfont
2015-01-20 00:01:23 -08:00
writetext OlivineGymGuyText
2015-11-25 07:16:29 -08:00
waitbutton
closetext
end
.OlivineGymGuyWinScript
loadfont
2015-01-20 00:01:23 -08:00
writetext OlivineGymGuyWinText
2015-11-25 07:16:29 -08:00
waitbutton
closetext
end
.OlivineGymGuyPreScript
loadfont
2015-01-20 00:01:23 -08:00
writetext OlivineGymGuyPreText
2015-11-25 07:16:29 -08:00
waitbutton
closetext
end
2015-06-24 20:51:36 -07:00
OlivineGymStatue:
checkflag ENGINE_MINERALBADGE
iftrue .Beaten
2015-06-24 18:26:24 -07:00
jumpstd gymstatue1
2015-06-24 20:51:36 -07:00
.Beaten
trainertotext JASMINE, 1, $1
2015-06-24 18:26:24 -07:00
jumpstd gymstatue2
2015-07-10 00:00:27 -07:00
UnknownText_0x9c1b9:
text "…Thank you for"
line "your help at the"
cont "LIGHTHOUSE…"
para "But this is dif-"
line "ferent. Please"
para "allow me to intro-"
line "duce myself."
para "I am JASMINE, a"
line "GYM LEADER. I use"
cont "the steel-type."
para "…Do you know about"
line "the steel-type?"
para "It's a type that"
line "was only recently"
cont "discovered."
para "…Um… May I begin?"
done
2015-07-10 00:00:27 -07:00
UnknownText_0x9c2bb:
text "…You are a better"
line "trainer than me,"
para "in both skill and"
line "kindness."
para "In accordance with"
line "LEAGUE rules, I"
para "confer upon you"
line "this BADGE."
done
2015-07-10 00:00:27 -07:00
UnknownText_0x9c33a:
text "<PLAYER> received"
line "MINERALBADGE."
done
2015-07-10 00:00:27 -07:00
UnknownText_0x9c354:
text "MINERALBADGE"
line "raises #MON's"
cont "DEFENSE."
para "…Um… Please take"
line "this too…"
done
2015-07-10 00:00:27 -07:00
UnknownText_0x9c393:
text "<PLAYER> received"
line "TM09."
done
2015-07-10 00:00:27 -07:00
UnknownText_0x9c3a5:
text "…You could use"
line "that TM to teach"
cont "IRON TAIL."
done
2015-07-10 00:00:27 -07:00
UnknownText_0x9c3d1:
text "Um… I don't know"
line "how to say this,"
cont "but good luck…"
done
2015-07-10 00:00:27 -07:00
OlivineGymGuyText:
text "JASMINE uses the"
line "newly discovered"
cont "steel-type."
para "I don't know very"
line "much about it."
done
2015-07-10 00:00:27 -07:00
OlivineGymGuyWinText:
text "That was awesome."
para "The steel-type,"
line "huh?"
para "That was a close"
line "encounter of an"
cont "unknown kind!"
done
2015-07-10 00:00:27 -07:00
OlivineGymGuyPreText:
text "JASMINE, the GYM"
line "LEADER, is at the"
cont "LIGHTHOUSE."
para "She's been tending"
line "to a sick #MON."
para "A strong trainer"
line "has to be compas-"
cont "sionate."
done
2015-07-10 00:00:27 -07:00
OlivineGym_MapEventHeader:
; filler
db 0, 0
.Warps:
db 2
warp_def $f, $4, 2, OLIVINE_CITY
warp_def $f, $5, 2, OLIVINE_CITY
.XYTriggers:
db 0
.Signposts:
db 2
signpost 13, 3, SIGNPOST_READ, OlivineGymStatue
signpost 13, 6, SIGNPOST_READ, OlivineGymStatue
.PersonEvents:
db 2
person_event SPRITE_JASMINE, 3, 5, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, (1 << 3) | PAL_OW_RED, PERSONTYPE_SCRIPT, 0, JasmineScript_0x9c12f, EVENT_OLIVINE_GYM_JASMINE
person_event SPRITE_GYM_GUY, 13, 7, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, (1 << 3) | PAL_OW_RED, PERSONTYPE_SCRIPT, 0, OlivineGymGuyScript, -1