pokecrystal-board/maps/LakeOfRageHiddenPowerHouse.asm

90 lines
1.6 KiB
NASM
Raw Normal View History

2015-11-26 21:22:14 -08:00
const_value set 2
const LAKEOFRAGEHIDDENPOWERHOUSE_FISHER
LakeOfRageHiddenPowerHouse_MapScriptHeader:
.SceneScripts:
db 0
.MapCallbacks:
db 0
2015-06-25 21:01:08 -07:00
HiddenPowerGuy:
faceplayer
2015-12-09 15:25:44 -08:00
opentext
2013-09-24 00:48:58 -07:00
checkevent EVENT_GOT_TM10_HIDDEN_POWER
2015-06-25 21:01:08 -07:00
iftrue .AlreadyGotItem
writetext HiddenPowerGuyText1
2015-11-29 19:29:45 -08:00
buttonsound
2015-11-04 17:20:14 -08:00
verbosegiveitem TM_HIDDEN_POWER
2015-06-25 21:01:08 -07:00
iffalse .Done
2013-09-24 00:48:58 -07:00
setevent EVENT_GOT_TM10_HIDDEN_POWER
2015-06-25 21:01:08 -07:00
writetext HiddenPowerGuyText2
2015-11-25 07:16:29 -08:00
waitbutton
closetext
end
.AlreadyGotItem:
2015-06-25 21:01:08 -07:00
writetext HiddenPowerGuyText3
2015-11-25 07:16:29 -08:00
waitbutton
.Done:
2015-11-25 07:16:29 -08:00
closetext
end
2015-06-25 21:01:08 -07:00
HiddenPowerHouseBookshelf:
jumpstd difficultbookshelf
2015-06-25 21:01:08 -07:00
HiddenPowerGuyText1:
text "…You have strayed"
line "far…"
para "Here I have medi-"
line "tated. Inside me,"
para "a new power has"
line "been awakened."
para "Let me share my"
line "power with your"
para "#MON."
line "Take this, child."
done
2015-06-25 21:01:08 -07:00
HiddenPowerGuyText2:
text "Do you see it? It"
line "is HIDDEN POWER!"
para "It draws out the"
line "power of #MON"
cont "for attacking."
para "Remember this: its"
line "type and power de-"
cont "pend on the #-"
cont "MON using it."
done
2015-06-25 21:01:08 -07:00
HiddenPowerGuyText3:
text "I am meditating…"
done
LakeOfRageHiddenPowerHouse_MapEventHeader:
; filler
db 0, 0
.Warps:
db 2
warp_def $7, $2, 1, LAKE_OF_RAGE
warp_def $7, $3, 1, LAKE_OF_RAGE
.CoordEvents:
db 0
.BGEvents:
db 2
bg_event 1, 0, BGEVENT_READ, HiddenPowerHouseBookshelf
bg_event 1, 1, BGEVENT_READ, HiddenPowerHouseBookshelf
.ObjectEvents:
db 1
object_event SPRITE_FISHER, 3, 2, SPRITEMOVEDATA_SPINRANDOM_SLOW, 0, 0, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, HiddenPowerGuy, -1