mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-09-09 09:51:34 -07:00
c05b7f41dd
- MapTriggers / maptrigger → SceneScripts / scene_script - XYTriggers / xy_trigger → CoordEvents / coord_event - Signposts / signpost → BGEvents / bg_event - PersonEvents / person_event → ObjectEvents / object_event
106 lines
2.1 KiB
NASM
106 lines
2.1 KiB
NASM
const_value set 2
|
|
const MRFUJISHOUSE_SUPER_NERD
|
|
const MRFUJISHOUSE_LASS
|
|
const MRFUJISHOUSE_PSYDUCK
|
|
const MRFUJISHOUSE_NIDORINO
|
|
const MRFUJISHOUSE_PIDGEY
|
|
|
|
MrFujisHouse_MapScriptHeader:
|
|
.SceneScripts:
|
|
db 0
|
|
|
|
.MapCallbacks:
|
|
db 0
|
|
|
|
MrFujisHouseSuperNerdScript:
|
|
jumptextfaceplayer MrFujisHouseSuperNerdText
|
|
|
|
MrFujisHouseLassScript:
|
|
jumptextfaceplayer MrFujisHouseLassText
|
|
|
|
MrFujisPsyduck:
|
|
opentext
|
|
writetext MrFujisPsyduckText
|
|
cry PSYDUCK
|
|
waitbutton
|
|
closetext
|
|
end
|
|
|
|
MrFujisNidorino:
|
|
opentext
|
|
writetext MrFujisNidorinoText
|
|
cry NIDORINO
|
|
waitbutton
|
|
closetext
|
|
end
|
|
|
|
MrFujisPidgey:
|
|
opentext
|
|
writetext MrFujisPidgeyText
|
|
cry PIDGEY
|
|
waitbutton
|
|
closetext
|
|
end
|
|
|
|
MrFujisHouseBookshelf:
|
|
jumpstd difficultbookshelf
|
|
|
|
MrFujisHouseSuperNerdText:
|
|
text "MR.FUJI does live"
|
|
line "here, but he's not"
|
|
|
|
para "home now."
|
|
|
|
para "He should be at"
|
|
line "the SOUL HOUSE."
|
|
done
|
|
|
|
MrFujisHouseLassText:
|
|
text "Some cold-hearted"
|
|
line "people stop caring"
|
|
cont "for their #MON."
|
|
|
|
para "Grandpa takes in"
|
|
line "the poor homeless"
|
|
|
|
para "#MON and takes"
|
|
line "care of them."
|
|
done
|
|
|
|
MrFujisPsyduckText:
|
|
text "PSYDUCK: Gu-guwa?"
|
|
done
|
|
|
|
MrFujisNidorinoText:
|
|
text "NIDORINO: Gyun!"
|
|
done
|
|
|
|
MrFujisPidgeyText:
|
|
text "PIDGEY: Pijji!"
|
|
done
|
|
|
|
MrFujisHouse_MapEventHeader:
|
|
; filler
|
|
db 0, 0
|
|
|
|
.Warps:
|
|
db 2
|
|
warp_def $7, $2, 2, LAVENDER_TOWN
|
|
warp_def $7, $3, 2, LAVENDER_TOWN
|
|
|
|
.CoordEvents:
|
|
db 0
|
|
|
|
.BGEvents:
|
|
db 2
|
|
bg_event 1, 0, BGEVENT_READ, MrFujisHouseBookshelf
|
|
bg_event 1, 1, BGEVENT_READ, MrFujisHouseBookshelf
|
|
|
|
.ObjectEvents:
|
|
db 5
|
|
object_event SPRITE_SUPER_NERD, 1, 4, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_GREEN, OBJECTTYPE_SCRIPT, 0, MrFujisHouseSuperNerdScript, -1
|
|
object_event SPRITE_LASS, 4, 3, SPRITEMOVEDATA_WANDER, 1, 1, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, MrFujisHouseLassScript, -1
|
|
object_event SPRITE_RHYDON, 4, 7, SPRITEMOVEDATA_POKEMON, 0, 0, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, MrFujisPsyduck, -1
|
|
object_event SPRITE_GROWLITHE, 5, 5, SPRITEMOVEDATA_POKEMON, 0, 0, -1, -1, PAL_NPC_BLUE, OBJECTTYPE_SCRIPT, 0, MrFujisNidorino, -1
|
|
object_event SPRITE_MOLTRES, 3, 1, SPRITEMOVEDATA_POKEMON, 0, 0, -1, -1, PAL_NPC_BROWN, OBJECTTYPE_SCRIPT, 0, MrFujisPidgey, -1
|