pokecrystal-board/maps/MountMortarB1F.asm

155 lines
3.7 KiB
NASM
Raw Normal View History

object_const_def
2015-11-26 21:22:14 -08:00
const MOUNTMORTARB1F_POKE_BALL1
const MOUNTMORTARB1F_POKE_BALL2
const MOUNTMORTARB1F_BOULDER
const MOUNTMORTARB1F_KIYO
2015-11-26 21:22:14 -08:00
const MOUNTMORTARB1F_POKE_BALL3
const MOUNTMORTARB1F_POKE_BALL4
const MOUNTMORTARB1F_POKE_BALL5
MountMortarB1F_MapScripts:
def_scene_scripts
def_callbacks
2018-02-28 14:47:31 -08:00
MountMortarB1FKiyoScript:
faceplayer
2015-12-09 15:25:44 -08:00
opentext
2013-09-24 00:48:58 -07:00
checkevent EVENT_GOT_TYROGUE_FROM_KIYO
2018-02-28 14:47:31 -08:00
iftrue .GotTyrogue
2015-07-10 01:20:21 -07:00
checkevent EVENT_BEAT_BLACKBELT_KIYO
2018-02-28 14:47:31 -08:00
iftrue .BeatKiyo
writetext MountMortarB1FKiyoIntroText
2015-11-25 07:16:29 -08:00
waitbutton
closetext
winlosstext MountMortarB1FKiyoWinText, 0
loadtrainer BLACKBELT_T, KIYO
startbattle
reloadmapafterbattle
2015-07-10 01:20:21 -07:00
setevent EVENT_BEAT_BLACKBELT_KIYO
2015-12-09 15:25:44 -08:00
opentext
2018-02-28 14:47:31 -08:00
.BeatKiyo:
writetext MountMortarB1FTyrogueRewardText
2019-11-03 09:48:54 -08:00
promptbutton
2015-11-25 07:16:29 -08:00
waitsfx
readvar VAR_PARTYCOUNT
2018-02-28 14:47:31 -08:00
ifequal PARTY_LENGTH, .NoRoom
writetext MountMortarB1FReceiveMonText
playsound SFX_CAUGHT_MON
2015-11-25 07:16:29 -08:00
waitsfx
2015-10-04 11:14:51 -07:00
givepoke TYROGUE, 10
2013-09-24 00:48:58 -07:00
setevent EVENT_GOT_TYROGUE_FROM_KIYO
2018-02-28 14:47:31 -08:00
.GotTyrogue:
writetext MountMortarB1FKiyoGotTyrogueText
2015-11-25 07:16:29 -08:00
waitbutton
closetext
end
2018-02-28 14:47:31 -08:00
.NoRoom:
writetext MountMortarB1FKiyoFullPartyText
2015-11-25 07:16:29 -08:00
waitbutton
closetext
end
2015-06-25 21:01:08 -07:00
MountMortarB1FBoulder:
jumpstd StrengthBoulderScript
2015-12-15 07:55:56 -08:00
MountMortarB1FHyperPotion:
itemball HYPER_POTION
2015-12-15 07:55:56 -08:00
MountMortarB1FCarbos:
itemball CARBOS
2015-12-15 07:55:56 -08:00
MountMortarB1FFullRestore:
itemball FULL_RESTORE
2015-12-15 07:55:56 -08:00
MountMortarB1FMaxEther:
itemball MAX_ETHER
2015-12-15 07:55:56 -08:00
MountMortarB1FPPUp:
itemball PP_UP
MountMortarB1FHiddenMaxRevive:
hiddenitem MAX_REVIVE, EVENT_MOUNT_MORTAR_B1F_HIDDEN_MAX_REVIVE
MountMortarB1FKiyoIntroText:
text "Hey!"
para "I am the KARATE"
line "KING!"
para "I train alone here"
line "in the dark!"
para "You!"
line "Battle with me!"
para "Hwaaarggh!"
done
MountMortarB1FKiyoWinText:
text "Waaaarggh!"
line "I'm beaten!"
done
MountMortarB1FTyrogueRewardText:
text "I… I'm crushed…"
para "My training is"
line "still not enough…"
para "But a loss is a"
line "loss. I admit it."
para "As proof that you"
line "defeated me, I'll"
para "give you a rare"
line "fighting #MON."
done
MountMortarB1FReceiveMonText:
text "<PLAYER> received"
line "TYROGUE."
done
MountMortarB1FKiyoGotTyrogueText:
text "TYROGUE is a"
line "fighting-type."
para "It evolves into a"
line "tougher #MON."
para "Keep up the hard"
line "work. I'll keep"
cont "training too."
para "Farewell!"
done
MountMortarB1FKiyoFullPartyText:
text "You have no room"
line "in your party!"
done
MountMortarB1F_MapEvents:
db 0, 0 ; filler
def_warp_events
2018-02-01 19:22:07 -08:00
warp_event 3, 3, MOUNT_MORTAR_1F_INSIDE, 5
2018-02-01 18:54:00 -08:00
warp_event 19, 29, MOUNT_MORTAR_1F_OUTSIDE, 7
def_coord_events
def_bg_events
2018-02-01 19:22:07 -08:00
bg_event 4, 6, BGEVENT_ITEM, MountMortarB1FHiddenMaxRevive
def_object_events
object_event 29, 12, SPRITE_POKE_BALL, SPRITEMOVEDATA_STILL, 0, 0, -1, -1, 0, OBJECTTYPE_ITEMBALL, 0, MountMortarB1FHyperPotion, EVENT_MOUNT_MORTAR_B1F_HYPER_POTION
2018-02-01 19:22:07 -08:00
object_event 4, 16, SPRITE_POKE_BALL, SPRITEMOVEDATA_STILL, 0, 0, -1, -1, 0, OBJECTTYPE_ITEMBALL, 0, MountMortarB1FCarbos, EVENT_MOUNT_MORTAR_B1F_CARBOS
object_event 9, 10, SPRITE_BOULDER, SPRITEMOVEDATA_STRENGTH_BOULDER, 0, 0, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, MountMortarB1FBoulder, -1
2018-02-28 14:47:31 -08:00
object_event 16, 4, SPRITE_BLACK_BELT, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_BROWN, OBJECTTYPE_SCRIPT, 0, MountMortarB1FKiyoScript, -1
object_event 34, 24, SPRITE_POKE_BALL, SPRITEMOVEDATA_STILL, 0, 0, -1, -1, 0, OBJECTTYPE_ITEMBALL, 0, MountMortarB1FFullRestore, EVENT_MOUNT_MORTAR_B1F_FULL_RESTORE
2018-02-01 19:22:07 -08:00
object_event 32, 3, SPRITE_POKE_BALL, SPRITEMOVEDATA_STILL, 0, 0, -1, -1, 0, OBJECTTYPE_ITEMBALL, 0, MountMortarB1FMaxEther, EVENT_MOUNT_MORTAR_B1F_MAX_ETHER
object_event 21, 26, SPRITE_POKE_BALL, SPRITEMOVEDATA_STILL, 0, 0, -1, -1, 0, OBJECTTYPE_ITEMBALL, 0, MountMortarB1FPPUp, EVENT_MOUNT_MORTAR_B1F_PP_UP