pokecrystal-board/maps/Route27SandstormHouse.asm

109 lines
2.0 KiB
NASM
Raw Normal View History

2018-01-31 08:38:45 -08:00
const_def 2 ; object constants
2015-11-26 21:22:14 -08:00
const ROUTE27SANDSTORMHOUSE_GRANNY
Route27SandstormHouse_MapScripts:
db 0 ; scene scripts
db 0 ; callbacks
2015-06-25 21:01:08 -07:00
SandstormHouseWoman:
faceplayer
2015-12-09 15:25:44 -08:00
opentext
2013-09-24 00:48:58 -07:00
checkevent EVENT_GOT_TM37_SANDSTORM
2015-06-25 21:01:08 -07:00
iftrue .AlreadyGotItem
special GetFirstPokemonHappiness
2015-06-25 21:01:08 -07:00
writetext SandstormHouseWomanText1
2015-11-29 19:29:45 -08:00
buttonsound
2018-02-02 18:09:17 -08:00
ifgreater 150 - 1, .Loyal
2015-06-25 21:01:08 -07:00
jump .Disloyal
.Loyal:
2015-06-25 21:01:08 -07:00
writetext SandstormHouseWomanLoyalText
2015-11-29 19:29:45 -08:00
buttonsound
2015-11-04 17:20:14 -08:00
verbosegiveitem TM_SANDSTORM
2015-06-25 21:01:08 -07:00
iffalse .Done
2013-09-24 00:48:58 -07:00
setevent EVENT_GOT_TM37_SANDSTORM
.AlreadyGotItem:
2015-06-25 21:01:08 -07:00
writetext SandstormHouseSandstormDescription
2015-11-25 07:16:29 -08:00
waitbutton
.Done:
2015-11-25 07:16:29 -08:00
closetext
end
.Disloyal:
2015-06-25 21:01:08 -07:00
writetext SandstormHouseWomanDisloyalText
2015-11-25 07:16:29 -08:00
waitbutton
closetext
end
2015-06-25 21:01:08 -07:00
SandstormHouseBookshelf:
jumpstd magazinebookshelf
2015-06-25 21:01:08 -07:00
SandstormHouseWomanText1:
text "Where are you off"
line "to with #MON?"
para "#MON LEAGUE?"
para "Are your #MON"
line "loyal enough for"
cont "you to win?"
para "Let me see…"
done
2015-06-25 21:01:08 -07:00
SandstormHouseWomanLoyalText:
text "Ah! Your #MON"
line "trusts you very"
cont "much."
para "It's nice to see a"
line "good trainer."
para "Here. A gift for"
line "your journey."
done
2015-06-25 21:01:08 -07:00
SandstormHouseSandstormDescription:
text "TM37 happens to be"
line "SANDSTORM."
para "It's a move that"
line "inflicts damage on"
cont "both battlers."
para "It's for advanced"
line "trainers only."
para "Use it if you"
line "dare. Good luck!"
done
2015-06-25 21:01:08 -07:00
SandstormHouseWomanDisloyalText:
text "If it doesn't come"
line "to trust you some"
para "more, it could be"
line "tough going."
para "Trust is the tie"
line "that binds #MON"
cont "and trainers."
done
Route27SandstormHouse_MapEvents:
db 0, 0 ; filler
db 2 ; warp events
2018-02-01 19:22:07 -08:00
warp_event 2, 7, ROUTE_27, 1
warp_event 3, 7, ROUTE_27, 1
db 0 ; coord events
db 2 ; bg events
2018-02-01 19:22:07 -08:00
bg_event 0, 1, BGEVENT_READ, SandstormHouseBookshelf
bg_event 1, 1, BGEVENT_READ, SandstormHouseBookshelf
db 1 ; object events
2018-02-01 19:22:07 -08:00
object_event 2, 4, SPRITE_GRANNY, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, SandstormHouseWoman, -1