summaryrefslogtreecommitdiff
path: root/src/scripts/hall_of_honor.asm
blob: 7f5647a67089c998a37c6a9307bd681f683a7a99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
HallOfHonorLoadMap:
	ld a, SFX_10
	call PlaySFX
	ret

Script_fbe1:
	start_script
	print_text Text05b5
	ask_question_jump_default_yes Text05b6, .ows_fbee
	print_text Text05b7
	quit_script_fully

.ows_fbee
	open_deck_machine $0a
	quit_script_fully

Script_fbf1:
	start_script
	jump_if_event_true EVENT_RECEIVED_LEGENDARY_CARDS, .ows_fc10
	max_out_event_value EVENT_RECEIVED_LEGENDARY_CARDS
	print_text Text05b8
	give_card ZAPDOS3
	give_card MOLTRES2
	give_card ARTICUNO2
	give_card DRAGONITE1
	show_card_received_screen $ff
.ows_fc05
	flash_screen 0
	print_text Text05b9
.ows_fc0a
	flash_screen 1
	save_game 1
	play_credits
	quit_script_fully

.ows_fc10
	jump_if_event_equal EVENT_LEGENDARY_CARDS_RECEIVED_FLAGS, %1111, .ows_fc20
	pick_legendary_card
	print_text Text05ba
	give_card VARIABLE_CARD
	show_card_received_screen VARIABLE_CARD
	script_jump .ows_fc05

.ows_fc20
	print_text Text05bb
	flash_screen 0
	print_text Text05bc
	script_jump .ows_fc0a