pokered/scripts/MrPsychicsHouse.asm

47 lines
927 B
NASM
Raw Permalink Normal View History

MrPsychicsHouse_Script:
2014-05-18 18:19:10 +00:00
jp EnableAutoTextBoxDrawing
MrPsychicsHouse_TextPointers:
def_text_pointers
dw_const MrPsychicsHouseMrPsychicText, TEXT_MRPSYCHICSHOUSE_MR_PSYCHIC
2014-05-18 18:19:10 +00:00
MrPsychicsHouseMrPsychicText:
text_asm
2015-07-21 17:36:03 +00:00
CheckEvent EVENT_GOT_TM29
jr nz, .got_item
ld hl, .YouWantedThisText
2014-05-18 18:19:10 +00:00
call PrintText
2020-07-06 02:52:27 +00:00
lb bc, TM_PSYCHIC_M, 1
2014-05-18 18:19:10 +00:00
call GiveItem
jr nc, .bag_full
ld hl, .ReceivedTM29Text
2014-05-18 18:19:10 +00:00
call PrintText
2015-07-21 17:36:03 +00:00
SetEvent EVENT_GOT_TM29
jr .done
.bag_full
ld hl, .TM29NoRoomText
2014-05-18 18:19:10 +00:00
call PrintText
jr .done
.got_item
ld hl, .TM29ExplanationText
2014-05-18 18:19:10 +00:00
call PrintText
.done
2014-05-18 18:19:10 +00:00
jp TextScriptEnd
.YouWantedThisText:
text_far _MrPsychicsHouseMrPsychicYouWantedThisText
text_end
2014-05-18 18:19:10 +00:00
.ReceivedTM29Text:
text_far _MrPsychicsHouseMrPsychicReceivedTM29Text
sound_get_item_1
text_end
2014-05-18 18:19:10 +00:00
.TM29ExplanationText:
text_far _MrPsychicsHouseMrPsychicTM29ExplanationText
text_end
2014-05-18 18:19:10 +00:00
.TM29NoRoomText:
text_far _MrPsychicsHouseMrPsychicTM29NoRoomText
text_end