blob: ede2011892a96ee2dd5bb2774dafa88ef4eb95f5 (
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
|
enum_start
enum tradeanim_next_command
tradeanim_next: macro
db tradeanim_next_command ; 00
endm
enum tradeanim_show_givemon_data_command
tradeanim_show_givemon_data: macro
db tradeanim_show_givemon_data_command ; 01
endm
enum tradeanim_show_getmon_data_command
tradeanim_show_getmon_data: macro
db tradeanim_show_getmon_data_command ; 02
endm
enum tradeanim_enter_link_tube_command
tradeanim_enter_link_tube: macro
db tradeanim_enter_link_tube_command ; 03
endm
__enum__ set $5
enum tradeanim_exit_link_tube_command
tradeanim_exit_link_tube: macro
db tradeanim_exit_link_tube_command ; 05
endm
enum tradeanim_tube_to_ot_command
tradeanim_tube_to_ot: macro
db tradeanim_tube_to_ot_command ; 06
endm
__enum__ set $e
enum tradeanim_tube_to_player_command
tradeanim_tube_to_player: macro
db tradeanim_tube_to_player_command ; 0e
endm
__enum__ set $16
enum tradeanim_sent_to_ot_text_command
tradeanim_sent_to_ot_text: macro
db tradeanim_sent_to_ot_text_command ; 16
endm
enum tradeanim_ot_bids_farewell_command
tradeanim_ot_bids_farewell: macro
db tradeanim_ot_bids_farewell_command ; 17
endm
enum tradeanim_take_care_of_text_command
tradeanim_take_care_of_text: macro
db tradeanim_take_care_of_text_command ; 18
endm
enum tradeanim_ot_sends_text_1_command
tradeanim_ot_sends_text_1: macro
db tradeanim_ot_sends_text_1_command ; 19
endm
enum tradeanim_ot_sends_text_2_command
tradeanim_ot_sends_text_2: macro
db tradeanim_ot_sends_text_2_command ; 1a
endm
enum tradeanim_setup_givemon_scroll_command
tradeanim_setup_givemon_scroll: macro
db tradeanim_setup_givemon_scroll_command ; 1b
endm
enum tradeanim_do_givemon_scroll_command
tradeanim_do_givemon_scroll: macro
db tradeanim_do_givemon_scroll_command ; 1c
endm
enum tradeanim_frontpic_scroll_command
tradeanim_frontpic_scroll: macro
db tradeanim_frontpic_scroll_command ; 1d
endm
enum tradeanim_textbox_scroll_command
tradeanim_textbox_scroll: macro
db tradeanim_textbox_scroll_command ; 1e
endm
enum tradeanim_scroll_out_right_command
tradeanim_scroll_out_right: macro
db tradeanim_scroll_out_right_command ; 1f
endm
__enum__ set $21
enum tradeanim_wait_80_command
tradeanim_wait_80: macro
db tradeanim_wait_80_command ; 21
endm
enum tradeanim_rocking_ball_command
tradeanim_rocking_ball: macro
db tradeanim_rocking_ball_command ; 22
endm
enum tradeanim_drop_ball_command
tradeanim_drop_ball: macro
db tradeanim_drop_ball_command ; 23
endm
enum tradeanim_wait_anim_command
tradeanim_wait_anim: macro
db tradeanim_wait_anim_command ; 24
endm
enum tradeanim_poof_command
tradeanim_poof: macro
db tradeanim_poof_command ; 25
endm
enum tradeanim_bulge_through_tube_command
tradeanim_bulge_through_tube: macro
db tradeanim_bulge_through_tube_command ; 26
endm
enum tradeanim_give_trademon_sfx_command
tradeanim_give_trademon_sfx: macro
db tradeanim_give_trademon_sfx_command ; 27
endm
enum tradeanim_get_trademon_sfx_command
tradeanim_get_trademon_sfx: macro
db tradeanim_get_trademon_sfx_command ; 28
endm
enum tradeanim_end_command
tradeanim_end: macro
db tradeanim_end_command ; 29
endm
|