pokecrystal-board/maps/UnionCaveB1F.asm

175 lines
4.1 KiB
NASM
Raw Normal View History

object_const_def
2015-11-26 21:22:14 -08:00
const UNIONCAVEB1F_POKEFAN_M1
const UNIONCAVEB1F_POKEFAN_M2
const UNIONCAVEB1F_SUPER_NERD1
const UNIONCAVEB1F_SUPER_NERD2
const UNIONCAVEB1F_POKE_BALL1
const UNIONCAVEB1F_BOULDER
const UNIONCAVEB1F_POKE_BALL2
UnionCaveB1F_MapScripts:
def_scene_scripts
def_callbacks
2015-07-10 01:20:21 -07:00
TrainerPokemaniacAndrew:
trainer POKEMANIAC, ANDREW, EVENT_BEAT_POKEMANIAC_ANDREW, PokemaniacAndrewSeenText, PokemaniacAndrewBeatenText, 0, .Script
2017-12-17 17:45:04 -08:00
.Script:
2018-02-02 18:09:17 -08:00
endifjustbattled
2015-12-09 15:25:44 -08:00
opentext
2017-12-10 12:36:58 -08:00
writetext PokemaniacAndrewAfterBattleText
2015-11-25 07:16:29 -08:00
waitbutton
closetext
end
2015-07-10 01:20:21 -07:00
TrainerPokemaniacCalvin:
trainer POKEMANIAC, CALVIN, EVENT_BEAT_POKEMANIAC_CALVIN, PokemaniacCalvinSeenText, PokemaniacCalvinBeatenText, 0, .Script
2017-12-17 17:45:04 -08:00
.Script:
2018-02-02 18:09:17 -08:00
endifjustbattled
2015-12-09 15:25:44 -08:00
opentext
2017-12-10 12:36:58 -08:00
writetext PokemaniacCalvinAfterBattleText
2015-11-25 07:16:29 -08:00
waitbutton
closetext
end
2015-07-10 01:20:21 -07:00
TrainerHikerPhillip:
trainer HIKER, PHILLIP, EVENT_BEAT_HIKER_PHILLIP, HikerPhillipSeenText, HikerPhillipBeatenText, 0, .Script
2017-12-17 17:45:04 -08:00
.Script:
2018-02-02 18:09:17 -08:00
endifjustbattled
2015-12-09 15:25:44 -08:00
opentext
2017-12-10 12:36:58 -08:00
writetext HikerPhillipAfterBattleText
2015-11-25 07:16:29 -08:00
waitbutton
closetext
end
2015-07-10 01:20:21 -07:00
TrainerHikerLeonard:
trainer HIKER, LEONARD, EVENT_BEAT_HIKER_LEONARD, HikerLeonardSeenText, HikerLeonardBeatenText, 0, .Script
2017-12-17 17:45:04 -08:00
.Script:
2018-02-02 18:09:17 -08:00
endifjustbattled
2015-12-09 15:25:44 -08:00
opentext
2017-12-10 12:36:58 -08:00
writetext HikerLeonardAfterBattleText
2015-11-25 07:16:29 -08:00
waitbutton
closetext
end
2015-12-15 07:55:56 -08:00
UnionCaveB1FTMSwift:
itemball TM_SWIFT
2015-12-15 07:55:56 -08:00
UnionCaveB1FXDefend:
itemball X_DEFEND
2015-06-25 21:01:08 -07:00
UnionCaveB1FBoulder:
jumpstd StrengthBoulderScript
2015-07-10 01:20:21 -07:00
HikerPhillipSeenText:
text "It's been a while"
line "since I last saw"
cont "another person."
para "Don't be shy."
line "Let's battle!"
done
2015-07-10 01:20:21 -07:00
HikerPhillipBeatenText:
text "Uurggh…"
done
2017-12-10 12:36:58 -08:00
HikerPhillipAfterBattleText:
text "I've been lost for"
line "a long time…"
para "I don't mind it"
line "here, but I am"
cont "soooo hungry!"
done
2015-07-10 01:20:21 -07:00
HikerLeonardSeenText:
text "What do you know!"
line "A visitor!"
done
2015-07-10 01:20:21 -07:00
HikerLeonardBeatenText:
text "Wahahah! You're a"
line "feisty one!"
done
2017-12-10 12:36:58 -08:00
HikerLeonardAfterBattleText:
text "I live down here."
para "You can, too, if"
line "you'd like."
para "There's plenty of"
line "room, you see."
done
2015-07-10 01:20:21 -07:00
PokemaniacAndrewSeenText:
text "Who's there?"
para "Leave me and my"
line "#MON alone!"
done
2015-07-10 01:20:21 -07:00
PokemaniacAndrewBeatenText:
text "Go…"
line "Go away!"
done
2017-12-10 12:36:58 -08:00
PokemaniacAndrewAfterBattleText:
text "Just me and my"
line "#MON. I'm de-"
cont "lirious with joy."
done
2015-07-10 01:20:21 -07:00
PokemaniacCalvinSeenText:
text "I came all the way"
line "here to conduct my"
cont "#MON research."
para "Let me demonstrate"
line "my findings in a"
cont "real battle!"
done
2015-07-10 01:20:21 -07:00
PokemaniacCalvinBeatenText:
text "You demonstrated"
line "on me!"
done
2017-12-10 12:36:58 -08:00
PokemaniacCalvinAfterBattleText:
text "I should compile"
line "and announce my"
cont "study findings."
para "I might even be-"
line "come famous like"
cont "PROF.ELM."
done
UnionCaveB1F_MapEvents:
db 0, 0 ; filler
def_warp_events
2018-02-01 19:22:07 -08:00
warp_event 3, 3, RUINS_OF_ALPH_OUTSIDE, 7
warp_event 3, 11, RUINS_OF_ALPH_OUTSIDE, 8
warp_event 7, 19, UNION_CAVE_1F, 1
warp_event 3, 33, UNION_CAVE_1F, 2
2018-02-01 18:54:00 -08:00
warp_event 17, 31, UNION_CAVE_B2F, 1
def_coord_events
def_bg_events
def_object_events
2018-02-01 19:22:07 -08:00
object_event 9, 4, SPRITE_POKEFAN_M, SPRITEMOVEDATA_SPINRANDOM_FAST, 0, 0, -1, -1, PAL_NPC_BROWN, OBJECTTYPE_TRAINER, 3, TrainerHikerPhillip, -1
object_event 16, 7, SPRITE_POKEFAN_M, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_BROWN, OBJECTTYPE_TRAINER, 3, TrainerHikerLeonard, -1
object_event 5, 32, SPRITE_SUPER_NERD, SPRITEMOVEDATA_STANDING_LEFT, 0, 0, -1, -1, PAL_NPC_BLUE, OBJECTTYPE_TRAINER, 3, TrainerPokemaniacAndrew, -1
object_event 17, 30, SPRITE_SUPER_NERD, SPRITEMOVEDATA_STANDING_LEFT, 0, 0, -1, -1, PAL_NPC_BLUE, OBJECTTYPE_TRAINER, 3, TrainerPokemaniacCalvin, -1
2018-02-01 19:22:07 -08:00
object_event 2, 16, SPRITE_POKE_BALL, SPRITEMOVEDATA_STILL, 0, 0, -1, -1, 0, OBJECTTYPE_ITEMBALL, 0, UnionCaveB1FTMSwift, EVENT_UNION_CAVE_B1F_TM_SWIFT
object_event 7, 10, SPRITE_BOULDER, SPRITEMOVEDATA_STRENGTH_BOULDER, 0, 0, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, UnionCaveB1FBoulder, -1
object_event 17, 23, SPRITE_POKE_BALL, SPRITEMOVEDATA_STILL, 0, 0, -1, -1, 0, OBJECTTYPE_ITEMBALL, 0, UnionCaveB1FXDefend, EVENT_UNION_CAVE_B1F_X_DEFEND