summaryrefslogtreecommitdiff
path: root/src/data/map_objects.asm
blob: 34e2def11554d6c0acf92717c4a63b2ded7e02ee (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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
; Objects around maps that can be interacted with but are not represented
; by NPCs. Things like Deck Machines and the PCs.
; Format:
; Direction you need to face, X coord, Y coord
; Routine that gets called when you hit A in front of it
; Object Name, and Object default Text
MasonLabObjects: ; 13b04 (3:7b04)
	db NORTH, 18, 2
	dw PrintInteractableObjectText
	tx Text04a0
	tx WhatIsADeckText

	db NORTH, 20, 2
	dw PrintInteractableObjectText
	tx Text04a2
	tx Text04a1

	db NORTH, 22, 2
	dw PrintInteractableObjectText
	tx Text04a4
	tx Text04a3

	db NORTH, 24, 2
	dw PrintInteractableObjectText
	tx Text04a6
	tx Text04a5

	db NORTH, 20, 14
	dw PrintInteractableObjectText
	tx Text04a8
	tx Text04a7

	db NORTH, 22, 14
	dw PrintInteractableObjectText
	tx Text04aa
	tx Text04a9

	db NORTH, 24, 14
	dw PrintInteractableObjectText
	tx Text04ac
	tx Text04ab

	db NORTH, 2, 2
	dw PCMenu
	tx PlaceholderMessageText
	tx PokemonTradingCards101Text

	db $ff


DeckMachineRoomObjects: ; 13b4d (3:7b4d)
	db NORTH, 2, 2
	dw Script_d932
	tx PlaceholderMessageText
	tx PokemonTradingCards101Text

	db NORTH, 4, 2
	dw Script_d932
	tx PlaceholderMessageText
	tx PokemonTradingCards101Text

	db NORTH, 6, 2
	dw Script_d93f
	tx PlaceholderMessageText
	tx PokemonTradingCards101Text

	db NORTH, 8, 2
	dw Script_d93f
	tx PlaceholderMessageText
	tx PokemonTradingCards101Text

	db NORTH, 10, 2
	dw Script_d995
	tx PlaceholderMessageText
	tx PokemonTradingCards101Text

	db NORTH, 12, 2
	dw Script_d995
	tx PlaceholderMessageText
	tx PokemonTradingCards101Text

	db NORTH, 14, 2
	dw Script_d9c2
	tx PlaceholderMessageText
	tx PokemonTradingCards101Text

	db NORTH, 16, 2
	dw Script_d9c2
	tx PlaceholderMessageText
	tx PokemonTradingCards101Text

	db NORTH, 18, 2
	dw Script_d9ef
	tx PlaceholderMessageText
	tx PokemonTradingCards101Text

	db NORTH, 20, 2
	dw Script_d9ef
	tx PlaceholderMessageText
	tx PokemonTradingCards101Text

	db NORTH, 14, 10
	dw Script_da1c
	tx PlaceholderMessageText
	tx PokemonTradingCards101Text

	db NORTH, 16, 10
	dw Script_da1c
	tx PlaceholderMessageText
	tx PokemonTradingCards101Text

	db NORTH, 18, 10
	dw Script_da49
	tx PlaceholderMessageText
	tx PokemonTradingCards101Text

	db NORTH, 20, 10
	dw Script_da49
	tx PlaceholderMessageText
	tx PokemonTradingCards101Text

	db NORTH, 14, 18
	dw Script_da76
	tx PlaceholderMessageText
	tx PokemonTradingCards101Text

	db NORTH, 16, 18
	dw Script_da76
	tx PlaceholderMessageText
	tx PokemonTradingCards101Text

	db NORTH, 18, 18
	dw Script_daa3
	tx PlaceholderMessageText
	tx PokemonTradingCards101Text

	db NORTH, 20, 18
	dw Script_daa3
	tx PlaceholderMessageText
	tx PokemonTradingCards101Text

	db NORTH, 2, 18
	dw Script_dad0
	tx PlaceholderMessageText
	tx PokemonTradingCards101Text

	db NORTH, 4, 18
	dw Script_dad0
	tx PlaceholderMessageText
	tx PokemonTradingCards101Text

	db $ff


IshiharasHouseObjects: ; 13c02 (3:7c02)
	db NORTH, 6, 2
	dw PrintInteractableObjectText
	tx Text04ae
	tx Text04ad

	db NORTH, 8, 2
	dw PrintInteractableObjectText
	tx Text04b0
	tx Text04af

	db NORTH, 10, 2
	dw PrintInteractableObjectText
	tx Text04b2
	tx Text04b1

	db NORTH, 12, 2
	dw PrintInteractableObjectText
	tx Text04b4
	tx Text04b3

	db NORTH, 14, 2
	dw PrintInteractableObjectText
	tx Text04b6
	tx Text04b5

	db NORTH, 16, 2
	dw PrintInteractableObjectText
	tx Text04b8
	tx Text04b7

	db NORTH, 2, 12
	dw PrintInteractableObjectText
	tx Text04ba
	tx Text04b9

	db NORTH, 4, 12
	dw PrintInteractableObjectText
	tx Text04bc
	tx Text04bb

	db NORTH, 6, 12
	dw PrintInteractableObjectText
	tx Text04be
	tx Text04bd

	db NORTH, 12, 12
	dw PrintInteractableObjectText
	tx Text04c0
	tx Text04bf

	db NORTH, 14, 12
	dw PrintInteractableObjectText
	tx Text04c2
	tx Text04c1

	db NORTH, 16, 12
	dw PrintInteractableObjectText
	tx Text04c4
	tx Text04c3

	db $ff


FightingClubLobbyObjects: ; 13c6f (3:7c6f)
	db NORTH, 20, 2
	dw PrintInteractableObjectText
	tx Text04c6
	tx Text04c5

	db NORTH, 22, 2
	dw PrintInteractableObjectText
	tx Text04c8
	tx Text04c7

	db NORTH, 24, 2
	dw PrintInteractableObjectText
	tx Text04ca
	tx Text04c9

	db NORTH, 2, 8
	dw PCMenu
	tx PlaceholderMessageText
	tx PokemonTradingCards101Text

	db NORTH, 6, 6
	dw Script_fc52
	tx PlaceholderMessageText
	tx ClerkNPCName

	db NORTH, 10, 6
	dw Func_fc7a
	tx PlaceholderMessageText
	tx ClerkNPCName

	db $ff


RockClubLobbyObjects: ; 13ca6 (3:7ca6)
	db NORTH, 20, 2
	dw PrintInteractableObjectText
	tx Text04cc
	tx Text04cb

	db NORTH, 22, 2
	dw PrintInteractableObjectText
	tx Text04ce
	tx Text04cd

	db NORTH, 24, 2
	dw PrintInteractableObjectText
	tx Text04d0
	tx Text04cf

	db NORTH, 2, 8
	dw PCMenu
	tx PlaceholderMessageText
	tx PokemonTradingCards101Text

	db NORTH, 6, 6
	dw Script_fc52
	tx PlaceholderMessageText
	tx ClerkNPCName

	db NORTH, 10, 6
	dw Func_fc7a
	tx PlaceholderMessageText
	tx ClerkNPCName

	db $ff


WaterClubLobbyObjects: ; 13cdd (3:7cdd)
	db NORTH, 20, 2
	dw PrintInteractableObjectText
	tx Text04d2
	tx Text04d1

	db NORTH, 22, 2
	dw PrintInteractableObjectText
	tx Text04d4
	tx Text04d3

	db NORTH, 24, 2
	dw PrintInteractableObjectText
	tx Text04d6
	tx Text04d5

	db NORTH, 2, 8
	dw PCMenu
	tx PlaceholderMessageText
	tx PokemonTradingCards101Text

	db NORTH, 6, 6
	dw Script_fc52
	tx PlaceholderMessageText
	tx ClerkNPCName

	db NORTH, 10, 6
	dw Func_fc7a
	tx PlaceholderMessageText
	tx ClerkNPCName

	db $ff


LightningClubLobbyObjects: ; 13d14 (3:7d14)
	db NORTH, 20, 2
	dw PrintInteractableObjectText
	tx Text04d8
	tx Text04d7

	db NORTH, 22, 2
	dw PrintInteractableObjectText
	tx Text04da
	tx Text04d9

	db NORTH, 24, 2
	dw PrintInteractableObjectText
	tx Text04dc
	tx Text04db

	db NORTH, 2, 8
	dw PCMenu
	tx PlaceholderMessageText
	tx PokemonTradingCards101Text

	db NORTH, 6, 6
	dw Script_fc52
	tx PlaceholderMessageText
	tx ClerkNPCName

	db NORTH, 10, 6
	dw Func_fc7a
	tx PlaceholderMessageText
	tx ClerkNPCName

	db $ff


GrassClubLobbyObjects: ; 13d4b (3:7d4b)
	db NORTH, 20, 2
	dw PrintInteractableObjectText
	tx Text04de
	tx Text04dd

	db NORTH, 22, 2
	dw PrintInteractableObjectText
	tx Text04e0
	tx Text04df

	db NORTH, 24, 2
	dw PrintInteractableObjectText
	tx Text04e2
	tx Text04e1

	db NORTH, 2, 8
	dw PCMenu
	tx PlaceholderMessageText
	tx PokemonTradingCards101Text

	db NORTH, 6, 6
	dw Script_fc52
	tx PlaceholderMessageText
	tx ClerkNPCName

	db NORTH, 10, 6
	dw Func_fc7a
	tx PlaceholderMessageText
	tx ClerkNPCName

	db $ff


PsychicClubLobbyObjects: ; 13d82 (3:7d82)
	db NORTH, 20, 2
	dw PrintInteractableObjectText
	tx Text04e4
	tx Text04e3

	db NORTH, 22, 2
	dw PrintInteractableObjectText
	tx Text04e6
	tx Text04e5

	db NORTH, 24, 2
	dw PrintInteractableObjectText
	tx Text04e8
	tx Text04e7

	db NORTH, 2, 8
	dw PCMenu
	tx PlaceholderMessageText
	tx PokemonTradingCards101Text

	db NORTH, 6, 6
	dw Script_fc52
	tx PlaceholderMessageText
	tx ClerkNPCName

	db NORTH, 10, 6
	dw Func_fc7a
	tx PlaceholderMessageText
	tx ClerkNPCName

	db $ff


ScienceClubLobbyObjects: ; 13db9 (3:7db9)
	db NORTH, 20, 2
	dw PrintInteractableObjectText
	tx Text04ea
	tx Text04e9

	db NORTH, 22, 2
	dw PrintInteractableObjectText
	tx Text04ec
	tx Text04eb

	db NORTH, 24, 2
	dw PrintInteractableObjectText
	tx Text04ee
	tx Text04ed

	db NORTH, 2, 8
	dw PCMenu
	tx PlaceholderMessageText
	tx PokemonTradingCards101Text

	db NORTH, 6, 6
	dw Script_fc52
	tx PlaceholderMessageText
	tx ClerkNPCName

	db NORTH, 10, 6
	dw Func_fc7a
	tx PlaceholderMessageText
	tx ClerkNPCName

	db $ff


FireClubLobbyObjects: ; 13df0 (3:7df0)
	db NORTH, 20, 2
	dw PrintInteractableObjectText
	tx Text04f0
	tx Text04ef

	db NORTH, 22, 2
	dw PrintInteractableObjectText
	tx Text04f2
	tx Text04f1

	db NORTH, 24, 2
	dw PrintInteractableObjectText
	tx Text04f4
	tx Text04f3

	db NORTH, 2, 8
	dw PCMenu
	tx PlaceholderMessageText
	tx PokemonTradingCards101Text

	db NORTH, 6, 6
	dw Script_fc52
	tx PlaceholderMessageText
	tx ClerkNPCName

	db NORTH, 10, 6
	dw Func_fc7a
	tx PlaceholderMessageText
	tx ClerkNPCName

	db $ff


ChallengeHallLobbyObjects: ; 13e27 (3:7e27)
	db NORTH, 20, 2
	dw PrintInteractableObjectText
	tx Text04f6
	tx Text04f5

	db NORTH, 22, 2
	dw PrintInteractableObjectText
	tx Text04f8
	tx Text04f7

	db NORTH, 24, 2
	dw PrintInteractableObjectText
	tx Text04fa
	tx Text04f9

	db NORTH, 2, 8
	dw PCMenu
	tx PlaceholderMessageText
	tx PokemonTradingCards101Text

	db NORTH, 6, 6
	dw Script_fc52
	tx PlaceholderMessageText
	tx ClerkNPCName

	db NORTH, 10, 6
	dw Func_fc7a
	tx PlaceholderMessageText
	tx ClerkNPCName

	db $ff


PokemonDomeEntranceObjects: ; 13e5e (3:7e5e)
	db NORTH, 2, 2
	dw PrintInteractableObjectText
	tx Text04fc
	tx Text04fb

	db NORTH, 4, 2
	dw PrintInteractableObjectText
	tx Text04fe
	tx Text04fd

	db NORTH, 6, 2
	dw PrintInteractableObjectText
	tx Text0500
	tx Text04ff

	db NORTH, 2, 8
	dw PrintInteractableObjectText
	tx Text0502
	tx Text0501

	db NORTH, 4, 8
	dw PrintInteractableObjectText
	tx Text0504
	tx Text0503

	db NORTH, 6, 8
	dw PrintInteractableObjectText
	tx Text0506
	tx Text0505

	db NORTH, 18, 0
	dw Script_f631
	tx Text0508
	tx Text0507

	db NORTH, 20, 0
	dw Script_f631
	tx Text0508
	tx Text0507

	db NORTH, 22, 0
	dw Script_f6af
	tx Text0558
	tx Text0509

	db NORTH, 24, 0
	dw Script_f6af
	tx Text0558
	tx Text0509

	db NORTH, 28, 2
	dw PCMenu
	tx PlaceholderMessageText
	tx PokemonTradingCards101Text

	db $ff


HallOfHonorObjects: ; 13ec2 (3:7ec2)
	; Legendary Cards
	db NORTH, 10, 10
	dw Script_fbf1
	dw NULL
	dw NULL

	; Legendary Cards
	db NORTH, 12, 10
	dw Script_fbf1
	dw NULL
	dw NULL

	db NORTH, 10, 2
	dw Script_fbe1
	tx PlaceholderMessageText
	tx PokemonTradingCards101Text

	db NORTH, 12, 2
	dw Script_fbe1
	tx PlaceholderMessageText
	tx PokemonTradingCards101Text

	db $ff