blob: b56f43eb602176d60be919f94292e65043b290f8 (
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
|
const u8 DecorDesc_SMALL_DESK[] = _(
"A small desk built\n"
"for one.");
const u8 DecorDesc_POKEMON_DESK[] = _(
"A small desk built in\n"
"the shape of a POKé\n"
"BALL.");
const u8 DecorDesc_HEAVY_DESK[] = _(
"A large desk made\n"
"of steel. Put some\n"
"decorations on it.");
const u8 DecorDesc_RAGGED_DESK[] = _(
"A large desk made\n"
"of wood. Put some\n"
"decorations on it.");
const u8 DecorDesc_COMFORT_DESK[] = _(
"A large desk made\n"
"of leaves. Put some\n"
"decorations on it.");
const u8 DecorDesc_PRETTY_DESK[] = _(
"A huge desk made\n"
"of glass. Holds lots\n"
"of decorations.");
const u8 DecorDesc_BRICK_DESK[] = _(
"A huge desk made\n"
"of brick. Holds lots\n"
"of decorations.");
const u8 DecorDesc_CAMP_DESK[] = _(
"A huge desk made\n"
"of logs. Put lots of\n"
"decorations on it.");
const u8 DecorDesc_HARD_DESK[] = _(
"A huge desk made\n"
"of rocks. Holds\n"
"many decorations.");
const u8 DecorDesc_SMALL_CHAIR[] = _(
"A small chair made\n"
"for one.");
const u8 DecorDesc_POKEMON_CHAIR[] = _(
"A small chair built\n"
"in the shape of a\n"
"POKé BALL.");
const u8 DecorDesc_HEAVY_CHAIR[] = _(
"A small chair made\n"
"of steel.");
const u8 DecorDesc_PRETTY_CHAIR[] = _(
"A small chair made\n"
"of glass.");
const u8 DecorDesc_COMFORT_CHAIR[] = _(
"A small chair made\n"
"of leaves.");
const u8 DecorDesc_RAGGED_CHAIR[] = _(
"A small chair made\n"
"of wood.");
const u8 DecorDesc_BRICK_CHAIR[] = _(
"A small chair made\n"
"of brick.");
const u8 DecorDesc_CAMP_CHAIR[] = _(
"A small chair made\n"
"of logs.");
const u8 DecorDesc_HARD_CHAIR[] = _(
"A small chair made\n"
"of rock.");
const u8 DecorDesc_RED_PLANT[] = _(
"A vivid red potted\n"
"plant.");
const u8 DecorDesc_TROPICAL_PLANT[] = _(
"A flowering tropical\n"
"plant in a pot.");
const u8 DecorDesc_PRETTY_FLOWERS[] = _(
"A pot of cute\n"
"flowers.");
const u8 DecorDesc_COLORFUL_PLANT[] = _(
"A large pot with\n"
"many colorful\n"
"flowers.");
const u8 DecorDesc_BIG_PLANT[] = _(
"A large, umbrella-\n"
"shaped plant in a\n"
"big pot.");
const u8 DecorDesc_GORGEOUS_PLANT[] = _(
"A large, impressive\n"
"plant in a big pot.");
const u8 DecorDesc_RED_BRICK[] = _(
"A red-colored brick.\n"
"Decorations can be\n"
"placed on top.");
const u8 DecorDesc_YELLOW_BRICK[] = _(
"A yellow-colored\n"
"brick. Put some\n"
"decorations on top.");
const u8 DecorDesc_BLUE_BRICK[] = _(
"A blue-colored\n"
"brick. Put some\n"
"decorations on top.");
const u8 DecorDesc_RED_BALLOON[] = _(
"A red balloon filled\n"
"with water. Bursts\n"
"if stepped on.");
const u8 DecorDesc_BLUE_BALLOON[] = _(
"A blue balloon filled\n"
"with water. Bursts\n"
"if stepped on.");
const u8 DecorDesc_YELLOW_BALLOON[] = _(
"A yellow balloon\n"
"filled with water.\n"
"Pops if stepped on.");
const u8 DecorDesc_RED_TENT[] = _(
"A large red tent.\n"
"You can hide inside\n"
"it.");
const u8 DecorDesc_BLUE_TENT[] = _(
"A large blue tent.\n"
"You can hide inside\n"
"it.");
const u8 DecorDesc_SOLID_BOARD[] = _(
"Place over a hole to\n"
"cross to the other\n"
"side.");
const u8 DecorDesc_SLIDE[] = _(
"Use to slide down\n"
"from the platform.");
const u8 DecorDesc_FENCE_LENGTH[] = _(
"A small fence that\n"
"blocks passage.");
const u8 DecorDesc_FENCE_WIDTH[] = _(
"A small fence that\n"
"blocks passage.");
const u8 DecorDesc_TIRE[] = _(
"An old large tire.\n"
"Decorations can be\n"
"placed on top.");
const u8 DecorDesc_STAND[] = _(
"A large pedestal\n"
"with steps.");
const u8 DecorDesc_MUD_BALL[] = _(
"A large ball of mud.\n"
"Crumbles if stepped\n"
"on.");
const u8 DecorDesc_BREAKABLE_DOOR[] = _(
"A weird door that\n"
"people can walk\n"
"right through.");
const u8 DecorDesc_SAND_ORNAMENT[] = _(
"An ornament made\n"
"of sand. Crumbles if\n"
"touched.");
const u8 DecorDesc_SILVER_SHIELD[] = _(
"Awarded for 50\n"
"straight wins at\n"
"the BATTLE TOWER.");
const u8 DecorDesc_GOLD_SHIELD[] = _(
"Awarded for 100\n"
"straight wins at\n"
"the BATTLE TOWER.");
const u8 DecorDesc_GLASS_ORNAMENT[] = _(
"A glass replica of\n"
"a famous sculpture\n"
"at the ART MUSEUM.");
const u8 DecorDesc_TV[] = _(
"A small, gray-\n"
"colored toy TV.");
const u8 DecorDesc_ROUND_TV[] = _(
"A toy TV modeled\n"
"in the image of a\n"
"SEEDOT.");
const u8 DecorDesc_CUTE_TV[] = _(
"A toy TV modeled\n"
"in the image of a\n"
"SKITTY.");
const u8 DecorDesc_GLITTER_MAT[] = _(
"An odd mat that\n"
"glitters if stepped\n"
"on.");
const u8 DecorDesc_JUMP_MAT[] = _(
"A trick mat that\n"
"jumps when it is\n"
"stepped on.");
const u8 DecorDesc_SPIN_MAT[] = _(
"A trick mat that\n"
"spins around when\n"
"stepped on.");
const u8 DecorDesc_C_LOW_NOTE_MAT[] = _(
"A mat that plays\n"
"a low C note when\n"
"stepped on.");
const u8 DecorDesc_D_NOTE_MAT[] = _(
"A mat that plays\n"
"a D note when\n"
"stepped on.");
const u8 DecorDesc_E_NOTE_MAT[] = _(
"A mat that plays\n"
"an E note when\n"
"stepped on.");
const u8 DecorDesc_F_NOTE_MAT[] = _(
"A mat that plays\n"
"an F note when\n"
"stepped on.");
const u8 DecorDesc_G_NOTE_MAT[] = _(
"A mat that plays\n"
"a G note when\n"
"stepped on.");
const u8 DecorDesc_A_NOTE_MAT[] = _(
"A mat that plays\n"
"an A note when\n"
"stepped on.");
const u8 DecorDesc_B_NOTE_MAT[] = _(
"A mat that plays\n"
"a B note when\n"
"stepped on.");
const u8 DecorDesc_C_HIGH_NOTE_MAT[] = _(
"A mat that plays\n"
"a high C note when\n"
"stepped on.");
const u8 DecorDesc_SURF_MAT[] = _(
"A mat designed with\n"
"a SURF image.\n"
"Put items on top.");
const u8 DecorDesc_THUNDER_MAT[] = _(
"A mat designed with\n"
"a THUNDER image.\n"
"Put items on top.");
const u8 DecorDesc_FIRE_BLAST_MAT[] = _(
"A mat designed with\n"
"a FIRE BLAST image.\n"
"Put items on top.");
const u8 DecorDesc_POWDER_SNOW_MAT[] = _(
"A mat with a POWDER\n"
"SNOW image design.\n"
"Put items on top.");
const u8 DecorDesc_ATTRACT_MAT[] = _(
"A mat designed with\n"
"an ATTRACT image.\n"
"Put items on top.");
const u8 DecorDesc_FISSURE_MAT[] = _(
"A mat designed with\n"
"a FISSURE image.\n"
"Put items on top.");
const u8 DecorDesc_SPIKES_MAT[] = _(
"A mat designed with\n"
"a SPIKES image.\n"
"Put items on top.");
const u8 DecorDesc_BALL_POSTER[] = _(
"A small poster\n"
"printed with POKé\n"
"BALLS.");
const u8 DecorDesc_GREEN_POSTER[] = _(
"A small poster with\n"
"a TREECKO print.");
const u8 DecorDesc_RED_POSTER[] = _(
"A small poster with\n"
"a TORCHIC print.");
const u8 DecorDesc_BLUE_POSTER[] = _(
"A small poster with\n"
"a MUDKIP print.");
const u8 DecorDesc_CUTE_POSTER[] = _(
"A small poster with\n"
"an AZURILL print.");
const u8 DecorDesc_PIKA_POSTER[] = _(
"A large poster with\n"
"a PIKACHU and\n"
"PICHU print.");
const u8 DecorDesc_LONG_POSTER[] = _(
"A large poster with\n"
"a SEVIPER print.");
const u8 DecorDesc_SEA_POSTER[] = _(
"A large poster with\n"
"a RELICANTH print.");
const u8 DecorDesc_SKY_POSTER[] = _(
"A large poster with\n"
"a WINGULL print.");
const u8 DecorDesc_KISS_POSTER[] = _(
"A large poster with\n"
"a SMOOCHUM print.");
const u8 DecorDesc_PICHU_DOLL[] = _(
"A PICHU doll.\n"
"Place it on a mat\n"
"or a desk.");
const u8 DecorDesc_PIKACHU_DOLL[] = _(
"A PIKACHU doll.\n"
"Place it on a mat\n"
"or a desk.");
const u8 DecorDesc_MARILL_DOLL[] = _(
"A MARILL doll.\n"
"Place it on a mat\n"
"or a desk.");
const u8 DecorDesc_TOGEPI_DOLL[] = _(
"A TOGEPI doll.\n"
"Place it on a mat\n"
"or a desk.");
const u8 DecorDesc_CYNDAQUIL_DOLL[] = _(
"A CYNDAQUIL doll.\n"
"Place it on a mat\n"
"or a desk.");
const u8 DecorDesc_CHIKORITA_DOLL[] = _(
"A CHIKORITA doll.\n"
"Place it on a mat\n"
"or a desk.");
const u8 DecorDesc_TOTODILE_DOLL[] = _(
"A TOTODILE doll.\n"
"Place it on a mat\n"
"or a desk.");
const u8 DecorDesc_JIGGLYPUFF_DOLL[] = _(
"A JIGGLYPUFF doll.\n"
"Place it on a mat\n"
"or a desk.");
const u8 DecorDesc_MEOWTH_DOLL[] = _(
"A MEOWTH doll.\n"
"Place it on a mat\n"
"or a desk.");
const u8 DecorDesc_CLEFAIRY_DOLL[] = _(
"A CLEFAIRY doll.\n"
"Place it on a mat\n"
"or a desk.");
const u8 DecorDesc_DITTO_DOLL[] = _(
"A DITTO doll.\n"
"Place it on a mat\n"
"or a desk.");
const u8 DecorDesc_SMOOCHUM_DOLL[] = _(
"A SMOOCHUM doll.\n"
"Place it on a mat\n"
"or a desk.");
const u8 DecorDesc_TREECKO_DOLL[] = _(
"A TREECKO doll.\n"
"Place it on a mat\n"
"or a desk.");
const u8 DecorDesc_TORCHIC_DOLL[] = _(
"A TORCHIC doll.\n"
"Place it on a mat\n"
"or a desk.");
const u8 DecorDesc_MUDKIP_DOLL[] = _(
"A MUDKIP doll.\n"
"Place it on a mat\n"
"or a desk.");
const u8 DecorDesc_DUSKULL_DOLL[] = _(
"A DUSKULL doll.\n"
"Place it on a mat\n"
"or a desk.");
const u8 DecorDesc_WYNAUT_DOLL[] = _(
"A WYNAUT doll.\n"
"Place it on a mat\n"
"or a desk.");
const u8 DecorDesc_BALTOY_DOLL[] = _(
"A BALTOY doll.\n"
"Place it on a mat\n"
"or a desk.");
const u8 DecorDesc_KECLEON_DOLL[] = _(
"A KECLEON doll.\n"
"Place it on a mat\n"
"or a desk.");
const u8 DecorDesc_AZURILL_DOLL[] = _(
"An AZURILL doll.\n"
"Place it on a mat\n"
"or a desk.");
const u8 DecorDesc_SKITTY_DOLL[] = _(
"A SKITTY doll.\n"
"Place it on a mat\n"
"or a desk.");
const u8 DecorDesc_SWABLU_DOLL[] = _(
"A SWABLU doll.\n"
"Place it on a mat\n"
"or a desk.");
const u8 DecorDesc_GULPIN_DOLL[] = _(
"A GULPIN doll.\n"
"Place it on a mat\n"
"or a desk.");
const u8 DecorDesc_LOTAD_DOLL[] = _(
"A LOTAD doll.\n"
"Place it on a mat\n"
"or a desk.");
const u8 DecorDesc_SEEDOT_DOLL[] = _(
"A SEEDOT doll.\n"
"Place it on a mat\n"
"or a desk.");
const u8 DecorDesc_PIKA_CUSHION[] = _(
"A PIKACHU cushion.\n"
"Place it on a mat\n"
"or a desk.");
const u8 DecorDesc_ROUND_CUSHION[] = _(
"A MARILL cushion.\n"
"Place it on a mat\n"
"or a desk.");
const u8 DecorDesc_KISS_CUSHION[] = _(
"A SMOOCHUM\n"
"cushion. Place it on\n"
"a mat or a desk.");
const u8 DecorDesc_ZIGZAG_CUSHION[] = _(
"A ZIGZAGOON\n"
"cushion. Place it on\n"
"a mat or a desk.");
const u8 DecorDesc_SPIN_CUSHION[] = _(
"A SPINDA cushion.\n"
"Place it on a mat\n"
"or a desk.");
const u8 DecorDesc_DIAMOND_CUSHION[] = _(
"A SABLEYE cushion.\n"
"Place it on a mat\n"
"or a desk.");
const u8 DecorDesc_BALL_CUSHION[] = _(
"A BALL cushion.\n"
"Place it on a mat\n"
"or a desk.");
const u8 DecorDesc_GRASS_CUSHION[] = _(
"A grass-mark\n"
"cushion. Place it on\n"
"a mat or a desk.");
const u8 DecorDesc_FIRE_CUSHION[] = _(
"A fire-mark\n"
"cushion. Place it on\n"
"a mat or a desk.");
const u8 DecorDesc_WATER_CUSHION[] = _(
"A water-mark\n"
"cushion. Place it on\n"
"a mat or a desk.");
const u8 DecorDesc_SNORLAX_DOLL[] = _(
"A large doll.\n"
"Place it on a mat\n"
"or a desk.");
const u8 DecorDesc_RHYDON_DOLL[] = _(
"A large doll.\n"
"Place it on a mat\n"
"or a desk.");
const u8 DecorDesc_LAPRAS_DOLL[] = _(
"A large doll.\n"
"Place it on a mat\n"
"or a desk.");
const u8 DecorDesc_VENUSAUR_DOLL[] = _(
"A large doll.\n"
"Place it on a mat\n"
"or a desk.");
const u8 DecorDesc_CHARIZARD_DOLL[] = _(
"A large doll.\n"
"Place it on a mat\n"
"or a desk.");
const u8 DecorDesc_BLASTOISE_DOLL[] = _(
"A large doll.\n"
"Place it on a mat\n"
"or a desk.");
const u8 DecorDesc_WAILMER_DOLL[] = _(
"A large doll.\n"
"Place it on a mat\n"
"or a desk.");
const u8 DecorDesc_REGIROCK_DOLL[] = _(
"A large doll.\n"
"Place it on a mat\n"
"or a desk.");
const u8 DecorDesc_REGICE_DOLL[] = _(
"A large doll.\n"
"Place it on a mat\n"
"or a desk.");
const u8 DecorDesc_REGISTEEL_DOLL[] = _(
"A large doll.\n"
"Place it on a mat\n"
"or a desk.");
|