pokered/scripts/FuchsiaGoodRodHouse.asm

68 lines
1.4 KiB
NASM
Raw Permalink Normal View History

FuchsiaGoodRodHouse_Script:
2014-05-18 18:19:10 +00:00
jp EnableAutoTextBoxDrawing
FuchsiaGoodRodHouse_TextPointers:
def_text_pointers
dw_const FuchsiaGoodRodHouseFishingGuruText, TEXT_FUCHSIAGOODRODHOUSE_FISHING_GURU
2014-05-18 18:19:10 +00:00
FuchsiaGoodRodHouseFishingGuruText:
text_asm
ld a, [wStatusFlags1]
bit BIT_GOT_GOOD_ROD, a
jr nz, .got_item
ld hl, .Text
2014-05-18 18:19:10 +00:00
call PrintText
call YesNoChoice
ld a, [wCurrentMenuItem]
2014-05-18 18:19:10 +00:00
and a
jr nz, .refused
2015-08-05 21:20:29 +00:00
lb bc, GOOD_ROD, 1
2014-05-18 18:19:10 +00:00
call GiveItem
jr nc, .bag_full
ld hl, wStatusFlags1
set BIT_GOT_GOOD_ROD, [hl]
ld hl, .ReceivedGoodRodText
jr .done
.bag_full
ld hl, .NoRoomText
jr .done
2014-05-18 18:19:10 +00:00
.refused
ld hl, .ThatsSoDisappointingText
jr .done
.got_item
ld hl, .HowAreTheFishText
.done
2014-05-18 18:19:10 +00:00
call PrintText
jp TextScriptEnd
.Text:
text_far _FuchsiaGoodRodHouseFishingGuruText
text_end
2014-05-18 18:19:10 +00:00
.ReceivedGoodRodText:
text_far _FuchsiaGoodRodHouseFishingGuruReceivedGoodRodText
sound_get_item_1
text_end
2014-05-18 18:19:10 +00:00
.UnusedText:
para "つり こそ"
line "おとこの ロマン だ!"
2014-05-18 18:19:10 +00:00
para "へぼいつりざおは"
line "コイキングしか つれ なんだが"
line "この いいつりざおなら"
line "もっと いいもんが つれるんじゃ!"
2014-05-18 18:19:10 +00:00
done
.ThatsSoDisappointingText:
text_far _FuchsiaGoodRodHouseFishingGuruThatsSoDisappointingText
text_end
2014-05-18 18:19:10 +00:00
.HowAreTheFishText:
text_far _FuchsiaGoodRodHouseFishingGuruHowAreTheFishText
text_end
2014-05-18 18:19:10 +00:00
.NoRoomText:
text_far _FuchsiaGoodRodHouseFishingGuruNoRoomText
text_end