2018-01-31 08:38:45 -08:00
|
|
|
const_def 2 ; object constants
|
2015-11-26 21:22:14 -08:00
|
|
|
const MRPOKEMONSHOUSE_GENTLEMAN
|
|
|
|
const MRPOKEMONSHOUSE_OAK
|
|
|
|
|
2018-01-16 19:57:19 -08:00
|
|
|
MrPokemonsHouse_MapScripts:
|
2018-01-30 11:15:47 -08:00
|
|
|
db 2 ; scene scripts
|
2018-02-01 09:40:58 -08:00
|
|
|
scene_script .MeetMrPokemon ; SCENE_DEFAULT
|
2018-02-01 12:06:06 -08:00
|
|
|
scene_script .DummyScene ; SCENE_FINISHED
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2018-01-30 11:15:47 -08:00
|
|
|
db 0 ; callbacks
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2017-12-10 14:53:21 -08:00
|
|
|
.MeetMrPokemon:
|
2016-01-06 13:59:56 -08:00
|
|
|
priorityjump .MrPokemonEvent
|
2013-02-16 22:54:07 -08:00
|
|
|
end
|
|
|
|
|
2017-12-24 10:46:34 -08:00
|
|
|
.DummyScene:
|
2013-02-16 22:54:07 -08:00
|
|
|
end
|
|
|
|
|
2016-04-10 11:42:14 -07:00
|
|
|
.MrPokemonEvent:
|
2015-11-26 21:22:14 -08:00
|
|
|
showemote EMOTE_SHOCK, MRPOKEMONSHOUSE_GENTLEMAN, 15
|
2018-02-25 17:05:37 -08:00
|
|
|
turnobject MRPOKEMONSHOUSE_GENTLEMAN, DOWN
|
2015-12-09 15:25:44 -08:00
|
|
|
opentext
|
2016-01-06 13:59:56 -08:00
|
|
|
writetext MrPokemonIntroText1
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2013-02-16 22:54:07 -08:00
|
|
|
closetext
|
2016-01-06 13:59:56 -08:00
|
|
|
applymovement PLAYER, MrPokemonsHouse_PlayerWalksToMrPokemon
|
2015-12-09 15:25:44 -08:00
|
|
|
opentext
|
2016-01-06 13:59:56 -08:00
|
|
|
writetext MrPokemonIntroText2
|
2015-11-29 19:29:45 -08:00
|
|
|
buttonsound
|
2015-11-25 07:16:29 -08:00
|
|
|
waitsfx
|
2015-11-04 17:20:14 -08:00
|
|
|
giveitem MYSTERY_EGG
|
2016-01-06 13:59:56 -08:00
|
|
|
writetext MrPokemonsHouse_GotEggText
|
2014-04-30 03:04:35 -07:00
|
|
|
playsound SFX_KEY_ITEM
|
2015-11-25 07:16:29 -08:00
|
|
|
waitsfx
|
2013-02-16 22:54:07 -08:00
|
|
|
itemnotify
|
2013-09-24 00:48:58 -07:00
|
|
|
setevent EVENT_GOT_MYSTERY_EGG_FROM_MR_POKEMON
|
2015-07-23 09:59:19 -07:00
|
|
|
blackoutmod CHERRYGROVE_CITY
|
2016-01-06 13:59:56 -08:00
|
|
|
writetext MrPokemonIntroText3
|
2015-11-29 19:29:45 -08:00
|
|
|
buttonsound
|
2018-02-25 17:05:37 -08:00
|
|
|
turnobject MRPOKEMONSHOUSE_GENTLEMAN, RIGHT
|
2016-01-06 13:59:56 -08:00
|
|
|
writetext MrPokemonIntroText4
|
2015-11-29 19:29:45 -08:00
|
|
|
buttonsound
|
2018-02-25 17:05:37 -08:00
|
|
|
turnobject MRPOKEMONSHOUSE_GENTLEMAN, DOWN
|
|
|
|
turnobject MRPOKEMONSHOUSE_OAK, LEFT
|
2016-01-06 13:59:56 -08:00
|
|
|
writetext MrPokemonIntroText5
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2013-02-16 22:54:07 -08:00
|
|
|
closetext
|
2016-01-06 13:59:56 -08:00
|
|
|
jump MrPokemonsHouse_OakScript
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2016-01-06 13:59:56 -08:00
|
|
|
MrPokemonsHouse_MrPokemonScript:
|
2013-02-16 22:54:07 -08:00
|
|
|
faceplayer
|
2015-12-09 15:25:44 -08:00
|
|
|
opentext
|
2013-02-16 22:54:07 -08:00
|
|
|
checkitem RED_SCALE
|
2016-01-06 13:59:56 -08:00
|
|
|
iftrue .RedScale
|
2013-09-24 00:48:58 -07:00
|
|
|
checkevent EVENT_GAVE_MYSTERY_EGG_TO_ELM
|
2016-01-06 13:59:56 -08:00
|
|
|
iftrue .AlwaysNewDiscoveries
|
|
|
|
writetext MrPokemonText_ImDependingOnYou
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2013-02-16 22:54:07 -08:00
|
|
|
closetext
|
|
|
|
end
|
|
|
|
|
2016-04-10 11:42:14 -07:00
|
|
|
.AlwaysNewDiscoveries:
|
2016-01-06 13:59:56 -08:00
|
|
|
writetext MrPokemonText_AlwaysNewDiscoveries
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2013-02-16 22:54:07 -08:00
|
|
|
closetext
|
|
|
|
end
|
|
|
|
|
2016-04-10 11:42:14 -07:00
|
|
|
.RedScale:
|
2016-01-06 13:59:56 -08:00
|
|
|
writetext MrPokemonText_GimmeTheScale
|
2013-02-16 22:54:07 -08:00
|
|
|
yesorno
|
2016-01-06 13:59:56 -08:00
|
|
|
iffalse .refused
|
2015-11-04 17:20:14 -08:00
|
|
|
verbosegiveitem EXP_SHARE
|
2016-01-06 13:59:56 -08:00
|
|
|
iffalse .full
|
2015-11-04 17:20:14 -08:00
|
|
|
takeitem RED_SCALE
|
2016-01-06 13:59:56 -08:00
|
|
|
jump .AlwaysNewDiscoveries
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2016-01-06 13:59:56 -08:00
|
|
|
.refused
|
|
|
|
writetext MrPokemonText_Disappointed
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2016-01-06 13:59:56 -08:00
|
|
|
.full
|
2015-11-25 07:16:29 -08:00
|
|
|
closetext
|
2013-02-16 22:54:07 -08:00
|
|
|
end
|
|
|
|
|
2016-01-06 13:59:56 -08:00
|
|
|
MrPokemonsHouse_OakScript:
|
2014-04-30 03:04:35 -07:00
|
|
|
playmusic MUSIC_PROF_OAK
|
2016-01-06 13:59:56 -08:00
|
|
|
applymovement MRPOKEMONSHOUSE_OAK, MrPokemonsHouse_OakWalksToPlayer
|
2018-02-25 17:05:37 -08:00
|
|
|
turnobject PLAYER, RIGHT
|
2015-12-09 15:25:44 -08:00
|
|
|
opentext
|
2016-01-06 13:59:56 -08:00
|
|
|
writetext MrPokemonsHouse_OakText1
|
2015-11-29 19:29:45 -08:00
|
|
|
buttonsound
|
2015-11-25 07:16:29 -08:00
|
|
|
waitsfx
|
2016-01-06 13:59:56 -08:00
|
|
|
writetext MrPokemonsHouse_GetDexText
|
2014-04-30 03:04:35 -07:00
|
|
|
playsound SFX_ITEM
|
2015-11-25 07:16:29 -08:00
|
|
|
waitsfx
|
2015-07-10 05:08:03 -07:00
|
|
|
setflag ENGINE_POKEDEX
|
2016-01-06 13:59:56 -08:00
|
|
|
writetext MrPokemonsHouse_OakText2
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2013-02-16 22:54:07 -08:00
|
|
|
closetext
|
2018-02-25 17:05:37 -08:00
|
|
|
turnobject PLAYER, DOWN
|
2016-01-06 13:59:56 -08:00
|
|
|
applymovement MRPOKEMONSHOUSE_OAK, MrPokemonsHouse_OakExits
|
2014-04-30 03:04:35 -07:00
|
|
|
playsound SFX_EXIT_BUILDING
|
2015-11-26 21:22:14 -08:00
|
|
|
disappear MRPOKEMONSHOUSE_OAK
|
2015-11-25 07:16:29 -08:00
|
|
|
waitsfx
|
2015-02-11 15:03:42 -08:00
|
|
|
special RestartMapMusic
|
2013-02-16 22:54:07 -08:00
|
|
|
pause 15
|
2018-02-25 17:05:37 -08:00
|
|
|
turnobject PLAYER, UP
|
2015-12-09 15:25:44 -08:00
|
|
|
opentext
|
2016-01-06 13:59:56 -08:00
|
|
|
writetext MrPokemonsHouse_MrPokemonHealText
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2013-02-16 22:54:07 -08:00
|
|
|
closetext
|
2018-01-24 08:17:05 -08:00
|
|
|
special FadeBlackQuickly
|
2018-01-02 09:49:25 -08:00
|
|
|
special ReloadSpritesNoPalettes
|
2014-04-30 03:04:35 -07:00
|
|
|
playmusic MUSIC_HEAL
|
2018-01-24 08:17:05 -08:00
|
|
|
special StubbedTrainerRankings_Healings
|
2015-06-26 23:24:55 -07:00
|
|
|
special HealParty
|
2013-02-16 22:54:07 -08:00
|
|
|
pause 60
|
2018-01-24 08:17:05 -08:00
|
|
|
special FadeInQuickly
|
2015-02-11 15:03:42 -08:00
|
|
|
special RestartMapMusic
|
2015-12-09 15:25:44 -08:00
|
|
|
opentext
|
2016-01-06 13:59:56 -08:00
|
|
|
writetext MrPokemonText_ImDependingOnYou
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2013-02-16 22:54:07 -08:00
|
|
|
closetext
|
2015-07-18 12:46:38 -07:00
|
|
|
setevent EVENT_RIVAL_NEW_BARK_TOWN
|
2018-01-22 16:10:09 -08:00
|
|
|
setevent EVENT_PLAYERS_HOUSE_1F_NEIGHBOR
|
|
|
|
clearevent EVENT_PLAYERS_NEIGHBORS_HOUSE_NEIGHBOR
|
2018-02-01 12:06:06 -08:00
|
|
|
setscene SCENE_FINISHED
|
2018-02-01 09:40:58 -08:00
|
|
|
setmapscene CHERRYGROVE_CITY, SCENE_CHERRYGROVECITY_MEET_RIVAL
|
|
|
|
setmapscene ELMS_LAB, SCENE_ELMSLAB_MEET_OFFICER
|
2015-10-24 07:34:19 -07:00
|
|
|
specialphonecall SPECIALCALL_ROBBED
|
2015-07-16 15:10:10 -07:00
|
|
|
clearevent EVENT_COP_IN_ELMS_LAB
|
2013-09-24 00:48:58 -07:00
|
|
|
checkevent EVENT_GOT_TOTODILE_FROM_ELM
|
2016-01-06 13:59:56 -08:00
|
|
|
iftrue .RivalTakesChikorita
|
2013-09-24 00:48:58 -07:00
|
|
|
checkevent EVENT_GOT_CHIKORITA_FROM_ELM
|
2016-01-06 13:59:56 -08:00
|
|
|
iftrue .RivalTakesCyndaquil
|
2015-07-16 15:10:10 -07:00
|
|
|
setevent EVENT_TOTODILE_POKEBALL_IN_ELMS_LAB
|
2013-02-16 22:54:07 -08:00
|
|
|
end
|
|
|
|
|
2016-04-10 11:42:14 -07:00
|
|
|
.RivalTakesChikorita:
|
2015-07-16 15:10:10 -07:00
|
|
|
setevent EVENT_CHIKORITA_POKEBALL_IN_ELMS_LAB
|
2013-02-16 22:54:07 -08:00
|
|
|
end
|
|
|
|
|
2016-04-10 11:42:14 -07:00
|
|
|
.RivalTakesCyndaquil:
|
2015-07-16 15:10:10 -07:00
|
|
|
setevent EVENT_CYNDAQUIL_POKEBALL_IN_ELMS_LAB
|
2013-02-16 22:54:07 -08:00
|
|
|
end
|
|
|
|
|
2015-07-10 01:45:35 -07:00
|
|
|
MapMrPokemonsHouseSignpost1Script:
|
2016-01-06 13:59:56 -08:00
|
|
|
jumptext MrPokemonsHouse_ForeignMagazinesText
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-07-10 01:45:35 -07:00
|
|
|
MapMrPokemonsHouseSignpost3Script:
|
2016-01-06 13:59:56 -08:00
|
|
|
jumptext MrPokemonsHouse_BrokenComputerText
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-07-10 01:45:35 -07:00
|
|
|
MapMrPokemonsHouseSignpost4Script:
|
2016-01-06 13:59:56 -08:00
|
|
|
jumptext MrPokemonsHouse_StrangeCoinsText
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2016-01-06 13:59:56 -08:00
|
|
|
MrPokemonsHouse_PlayerWalksToMrPokemon:
|
2016-05-14 10:46:14 -07:00
|
|
|
step RIGHT
|
|
|
|
step UP
|
2013-02-16 22:54:07 -08:00
|
|
|
step_end
|
|
|
|
|
2016-01-06 13:59:56 -08:00
|
|
|
MrPokemonsHouse_OakWalksToPlayer:
|
2016-05-14 10:46:14 -07:00
|
|
|
step DOWN
|
|
|
|
step LEFT
|
|
|
|
step LEFT
|
2013-02-16 22:54:07 -08:00
|
|
|
step_end
|
|
|
|
|
2016-01-06 13:59:56 -08:00
|
|
|
MrPokemonsHouse_OakExits:
|
2016-05-14 10:46:14 -07:00
|
|
|
step DOWN
|
|
|
|
step LEFT
|
|
|
|
turn_head DOWN
|
2018-01-09 15:45:25 -08:00
|
|
|
step_sleep 2
|
2013-02-16 22:54:07 -08:00
|
|
|
step_end
|
|
|
|
|
2016-01-06 13:59:56 -08:00
|
|
|
MrPokemonIntroText1:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "Hello, hello! You"
|
2015-06-27 21:59:17 -07:00
|
|
|
line "must be <PLAY_G>."
|
2014-03-05 21:29:44 -08:00
|
|
|
|
|
|
|
para "PROF.ELM said that"
|
|
|
|
line "you would visit."
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2016-01-06 13:59:56 -08:00
|
|
|
MrPokemonIntroText2:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "This is what I"
|
|
|
|
line "want PROF.ELM to"
|
|
|
|
cont "examine."
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2016-01-06 13:59:56 -08:00
|
|
|
MrPokemonsHouse_GotEggText:
|
2015-06-27 21:59:17 -07:00
|
|
|
text "<PLAYER> received"
|
2014-03-05 21:29:44 -08:00
|
|
|
line "MYSTERY EGG."
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2016-01-06 13:59:56 -08:00
|
|
|
MrPokemonIntroText3:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "I know a couple"
|
|
|
|
line "who run a #MON"
|
|
|
|
cont "DAY-CARE service."
|
|
|
|
|
|
|
|
para "They gave me that"
|
|
|
|
line "EGG."
|
|
|
|
|
|
|
|
para "I was intrigued,"
|
|
|
|
line "so I sent mail to"
|
|
|
|
cont "PROF.ELM."
|
|
|
|
|
|
|
|
para "For #MON evolu-"
|
|
|
|
line "tion, PROF.ELM is"
|
|
|
|
cont "the authority."
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2016-01-06 13:59:56 -08:00
|
|
|
MrPokemonIntroText4:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "Even PROF.OAK here"
|
|
|
|
line "recognizes that."
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2016-01-06 13:59:56 -08:00
|
|
|
MrPokemonIntroText5:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "If my assumption"
|
|
|
|
line "is correct, PROF."
|
|
|
|
cont "ELM will know it."
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2016-01-06 13:59:56 -08:00
|
|
|
MrPokemonsHouse_MrPokemonHealText:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "You are returning"
|
|
|
|
line "to PROF.ELM?"
|
|
|
|
|
|
|
|
para "Here. Your #MON"
|
|
|
|
line "should have some"
|
|
|
|
cont "rest."
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2016-01-06 13:59:56 -08:00
|
|
|
MrPokemonText_ImDependingOnYou:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "I'm depending on"
|
|
|
|
line "you!"
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2016-01-06 13:59:56 -08:00
|
|
|
MrPokemonText_AlwaysNewDiscoveries:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "Life is delight-"
|
|
|
|
line "ful! Always, new"
|
|
|
|
|
|
|
|
para "discoveries to be"
|
|
|
|
line "made!"
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2016-01-06 13:59:56 -08:00
|
|
|
MrPokemonsHouse_OakText1:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "OAK: Aha! So"
|
2015-06-27 21:59:17 -07:00
|
|
|
line "you're <PLAY_G>!"
|
2014-03-05 21:29:44 -08:00
|
|
|
|
|
|
|
para "I'm OAK! A #MON"
|
|
|
|
line "researcher."
|
|
|
|
|
|
|
|
para "I was just visit-"
|
|
|
|
line "ing my old friend"
|
|
|
|
cont "MR.#MON."
|
|
|
|
|
|
|
|
para "I heard you were"
|
|
|
|
line "running an errand"
|
|
|
|
|
|
|
|
para "for PROF.ELM, so I"
|
|
|
|
line "waited here."
|
|
|
|
|
|
|
|
para "Oh! What's this?"
|
|
|
|
line "A rare #MON!"
|
|
|
|
|
|
|
|
para "Let's see…"
|
|
|
|
|
|
|
|
para "Hm, I see!"
|
|
|
|
|
|
|
|
para "I understand why"
|
|
|
|
line "PROF.ELM gave you"
|
|
|
|
|
|
|
|
para "a #MON for this"
|
|
|
|
line "errand."
|
|
|
|
|
|
|
|
para "To researchers"
|
|
|
|
line "like PROF.ELM and"
|
|
|
|
|
|
|
|
para "I, #MON are our"
|
|
|
|
line "friends."
|
|
|
|
|
|
|
|
para "He saw that you"
|
|
|
|
line "would treat your"
|
|
|
|
|
|
|
|
para "#MON with love"
|
|
|
|
line "and care."
|
|
|
|
|
|
|
|
para "…Ah!"
|
|
|
|
|
|
|
|
para "You seem to be"
|
|
|
|
line "dependable."
|
|
|
|
|
|
|
|
para "How would you like"
|
|
|
|
line "to help me out?"
|
|
|
|
|
|
|
|
para "See? This is the"
|
|
|
|
line "latest version of"
|
|
|
|
cont "#DEX."
|
|
|
|
|
|
|
|
para "It automatically"
|
|
|
|
line "records data on"
|
|
|
|
|
|
|
|
para "#MON you've"
|
|
|
|
line "seen or caught."
|
|
|
|
|
|
|
|
para "It's a hi-tech"
|
|
|
|
line "encyclopedia!"
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2016-01-06 13:59:56 -08:00
|
|
|
MrPokemonsHouse_GetDexText:
|
2015-06-27 21:59:17 -07:00
|
|
|
text "<PLAYER> received"
|
2014-03-05 21:29:44 -08:00
|
|
|
line "#DEX!"
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2016-01-06 13:59:56 -08:00
|
|
|
MrPokemonsHouse_OakText2:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "Go meet many kinds"
|
|
|
|
line "of #MON and"
|
|
|
|
|
|
|
|
para "complete that"
|
|
|
|
line "#DEX!"
|
|
|
|
|
|
|
|
para "But I've stayed"
|
|
|
|
line "too long."
|
|
|
|
|
|
|
|
para "I have to get to"
|
|
|
|
line "GOLDENROD for my"
|
|
|
|
cont "usual radio show."
|
|
|
|
|
2015-06-27 21:59:17 -07:00
|
|
|
para "<PLAY_G>, I'm"
|
2014-03-05 21:29:44 -08:00
|
|
|
line "counting on you!"
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2016-01-06 13:59:56 -08:00
|
|
|
MrPokemonText_GimmeTheScale:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "Hm? That SCALE!"
|
|
|
|
line "What's that?"
|
|
|
|
cont "A red GYARADOS?"
|
|
|
|
|
|
|
|
para "That's rare! "
|
|
|
|
line "I, I want it…"
|
|
|
|
|
2015-06-27 21:59:17 -07:00
|
|
|
para "<PLAY_G>, would you"
|
2014-03-05 21:29:44 -08:00
|
|
|
line "care to trade it?"
|
|
|
|
|
|
|
|
para "I can offer this"
|
|
|
|
line "EXP.SHARE I got"
|
|
|
|
cont "from PROF.OAK."
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2016-01-06 13:59:56 -08:00
|
|
|
MrPokemonText_Disappointed:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "That's disappoint-"
|
|
|
|
line "ing. That happens"
|
|
|
|
cont "to be very rare."
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2016-01-06 13:59:56 -08:00
|
|
|
MrPokemonsHouse_ForeignMagazinesText:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "It's packed with"
|
|
|
|
line "foreign magazines."
|
|
|
|
|
|
|
|
para "Can't even read"
|
|
|
|
line "their titles…"
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2016-01-06 13:59:56 -08:00
|
|
|
MrPokemonsHouse_BrokenComputerText:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "It's a big com-"
|
|
|
|
line "puter. Hmm. It's"
|
|
|
|
cont "broken."
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2016-01-06 13:59:56 -08:00
|
|
|
MrPokemonsHouse_StrangeCoinsText:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "A whole pile of"
|
|
|
|
line "strange coins!"
|
|
|
|
|
|
|
|
para "Maybe they're from"
|
|
|
|
line "another country…"
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2018-01-16 19:57:19 -08:00
|
|
|
MrPokemonsHouse_MapEvents:
|
2018-01-30 11:15:47 -08:00
|
|
|
db 0, 0 ; filler
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2018-01-30 11:15:47 -08:00
|
|
|
db 2 ; warp events
|
2018-02-01 19:22:07 -08:00
|
|
|
warp_event 2, 7, ROUTE_30, 2
|
|
|
|
warp_event 3, 7, ROUTE_30, 2
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2018-01-30 11:15:47 -08:00
|
|
|
db 0 ; coord events
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2018-01-30 11:15:47 -08:00
|
|
|
db 5 ; bg events
|
2018-02-01 19:22:07 -08:00
|
|
|
bg_event 0, 1, BGEVENT_READ, MapMrPokemonsHouseSignpost1Script
|
|
|
|
bg_event 1, 1, BGEVENT_READ, MapMrPokemonsHouseSignpost1Script
|
|
|
|
bg_event 6, 1, BGEVENT_READ, MapMrPokemonsHouseSignpost3Script
|
|
|
|
bg_event 7, 1, BGEVENT_READ, MapMrPokemonsHouseSignpost3Script
|
|
|
|
bg_event 6, 4, BGEVENT_READ, MapMrPokemonsHouseSignpost4Script
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2018-01-30 11:15:47 -08:00
|
|
|
db 2 ; object events
|
2018-02-01 19:22:07 -08:00
|
|
|
object_event 3, 5, SPRITE_GENTLEMAN, SPRITEMOVEDATA_STANDING_RIGHT, 0, 0, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, MrPokemonsHouse_MrPokemonScript, -1
|
|
|
|
object_event 6, 5, SPRITE_OAK, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, ObjectEvent, EVENT_MR_POKEMONS_HOUSE_OAK
|