-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdata.json
573 lines (573 loc) · 20.7 KB
/
data.json
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
{
"palettes": {
"transparent_color_id": 0,
"menu": [4, 7, 7, 3]
},
"credit_offsets": [
30, 45, 70, 95, 120, 145, 170, 195, 220, 250, 270, 295, 315
],
"menu_data": [
{
"name": "title",
"position": [34, 70],
"content": [
{
"text": "new game",
"callback": "load_area_state",
"args": ["main", -1]
},
{ "text": "load game", "callback": "load" },
{
"text": "credits",
"callback": "load_area",
"args": [-4]
}
]
},
{
"name": "main",
"position": [5, 70],
"content": [
{
"text": "shop",
"callback": "load_area",
"args": [0]
},
{
"text": "fishing",
"callback": "swap_menu_context",
"args": ["location"]
},
{
"text": "fishapedia",
"callback": "load_area",
"args": [-2]
},
{
"text": "save menu",
"callback": "swap_menu_context",
"args": ["saving menu"]
}
]
},
{
"name": "location",
"prev": "main",
"position": [5, 70],
"content": [
{
"text": "beach",
"callback": "load_area",
"args": [1]
},
{
"text": "river",
"callback": "load_area",
"args": [2]
},
{
"text": "lake",
"callback": "load_area",
"args": [3]
}
]
},
{
"name": "saving menu",
"prev": "main",
"position": [5, 70],
"content": [
{ "text": "save", "callback": "save" },
{ "text": "save and quit", "callback": "save_and_quit" },
{
"text": "quit without saving",
"callback": "load_area_state",
"args": ["title", -3]
}
]
},
{
"name": "switch_rods",
"prev": "fishing",
"position": [5, 70],
"content": "switch_rods_menu",
"hint": "display_rod_selection_icon"
},
{
"name": "shop",
"position": [5, 70],
"content": [
{
"text": "sell all fish",
"callback": "sell_all_fish"
},
{
"text": "buy rods",
"callback": "enable_rod_shop"
}
]
},
{
"name": "fishing",
"position": [5, 70],
"content": [
{
"text": "return to map",
"callback": "load_area_state",
"args": ["main", -1]
},
{
"text": "switch rods",
"callback": "swap_menu_context",
"args": ["switch_rods"]
}
]
}
],
"text": [60, 5, 7, 1],
"gauge_data": {
"position": [10, 10],
"size": [102, 5],
"settings": [4, 7, 2, 3],
"req_tension_ticks": 20,
"tension_timer": 30
},
"power_gauge_colors": [8, 9, 10, 11, 3],
"biases": {
"weight": 8,
"size": 3
},
"sell_weights": {
"per_weight_unit": 3,
"per_size_unit": 2
},
"shopkeeper": {
"sprite": 238
},
"animation_data": {
"cat": {
"data": [{ "sprite": 232 }, { "sprite": 234 }],
"size": 16,
"ticks_per_frame": 5
},
"menu_selector": {
"data": [
{ "sprite": 32, "offset": [0, 0] },
{ "sprite": 32, "offset": [-1, 0] },
{ "sprite": 32, "offset": [-2, 0] },
{ "sprite": 32, "offset": [-3, 0] },
{ "sprite": 32, "offset": [-2, 0] },
{ "sprite": 32, "offset": [-1, 0] }
],
"ticks_per_frame": 3
},
"up_arrow": {
"data": [
{ "sprite": 33, "offset": [0, 0] },
{ "sprite": 33, "offset": [0, -1] },
{ "sprite": 33, "offset": [0, -2] },
{ "sprite": 33, "offset": [0, -1] }
],
"ticks_per_frame": 3
},
"down_arrow": {
"data": [
{ "sprite": 49, "offset": [0, 0] },
{ "sprite": 49, "offset": [0, 1] },
{ "sprite": 49, "offset": [0, 2] },
{ "sprite": 49, "offset": [0, 1] }
],
"ticks_per_frame": 3
}
},
"rods": [
{
"name": "sticky the rod",
"power": 0,
"description": "a stick with a string on it. the most basic of basic fishing rods.",
"cost": 10,
"spriteID": 200
},
{
"name": "good rod",
"power": 3,
"description": "a pretty good rod per the name. you've seen some kids with pocket-sized monsters use this thing before.",
"cost": 50,
"spriteID": 202
},
{
"name": "fisherman classic",
"power": 7,
"description": "a classic rod chosen by professionals of the industry and your uncle joey.",
"cost": 100,
"spriteID": 204
},
{
"name": "peerless pole",
"power": 10,
"description": "a legendary rod passed down by the most skilled of fishing artisans and fearless warriors.",
"cost": 500,
"spriteID": 206
}
],
"areas": [
{
"name": "beach",
"position": [60, 55],
"music": [],
"fishes": [
{
"gradient": [8, 9, 10, 11, 11, 11, 10, 9, 8],
"successIDs": [11],
"min_gauge_requirement": 1,
"max_gauge_requirement": 3,
"stats": ["goldfish", 2, 2.7, 12.5, 1],
"units": ["cm", "g"],
"description": "made with real cheese. not actual cheese; it's a fake cheese brand that's called real cheese. the more you know!"
},
{
"gradient": [8, 9, 10, 11, 10, 9, 8],
"successIDs": [11],
"min_gauge_requirement": 6,
"max_gauge_requirement": "inf",
"stats": ["yellowfin tuna", 4, 32, 2.25, 4],
"units": ["m", "kg"],
"description": "named such because it's got yellow fins. people like to eat it but not as much as albacore for-tuna-tely."
},
{
"gradient": [8, 9, 10, 10, 10, 10, 11, 11, 10, 9, 8],
"successIDs": [11],
"min_gauge_requirement": 3,
"max_gauge_requirement": 6,
"stats": ["pufferfish", 6, 0.08, 60, 3],
"units": ["cm", "kg"],
"description": "in a pinch it'll inflate and get prickly; makes it great for particularly vindictive matches of any inflatable variety of sportsball."
},
{
"gradient": [8, 9, 10, 11, 11, 11, 11, 11, 10, 9, 8],
"successIDs": [11],
"min_gauge_requirement": 2,
"max_gauge_requirement": 4,
"stats": ["triggerfish", 8, 0.04, 71, 2],
"units": ["cm", "kg"],
"description": "it's got a gun watch out! fortunately fish do not have thumbs and thus are forced to always practice trigger discipline. don't drop this guy though."
},
{
"gradient": [8, 9, 10, 11, 11, 10, 11, 11, 10, 9, 8],
"successIDs": [11],
"min_gauge_requirement": 2,
"max_gauge_requirement": 4,
"stats": ["ocean sunfish", 66, 2.2, 1, 2],
"units": ["m", "kg"],
"description": "named after the sun which is a deadly laser. large and in charge just like the actual sun of our solar system."
},
{
"gradient": [8, 9, 10, 11, 11, 10, 11, 11, 10, 9, 8],
"successIDs": [11],
"min_gauge_requirement": 4,
"max_gauge_requirement": 8,
"stats": ["clownfish", 72, 0.007, 15, 3],
"units": ["cm", "kg"],
"description": "the practical aquatic jokester. two whole animated feature films got made about this guy! maybe not this guy in particular."
},
{
"gradient": [8, 9, 10, 11, 11, 10, 11, 11, 10, 9, 8],
"successIDs": [11],
"min_gauge_requirement": 2,
"max_gauge_requirement": 4,
"stats": ["bonefish", 74, 2.7, 12.5, 1],
"units": ["cm", "g"],
"description": "it's got a bone to pick with you. you've also got a bone to pick with it for getting hooked on your line."
},
{
"gradient": [8, 9, 10, 11, 11, 10, 11, 11, 10, 9, 8],
"successIDs": [11],
"min_gauge_requirement": 2,
"max_gauge_requirement": 4,
"stats": ["angelfish", 96, 0.015, 25, 2],
"units": ["cm", "kg"],
"description": "not biblically accurate because it's just a normal fish. makes a mean angel food cake though."
},
{
"gradient": [8, 9, 10, 11, 11, 10, 11, 11, 10, 9, 8],
"successIDs": [11],
"min_gauge_requirement": 3,
"max_gauge_requirement": 6,
"stats": ["angle fish", 98, 0.015, 25, 3],
"units": ["cm", "kg"],
"description": "a particularly obtuse-looking fish. ask them about trigonometry and the unit circle; they got pretty good grades in high school pre-calc."
},
{
"gradient": [8, 9, 10, 11, 11, 10, 11, 11, 10, 9, 8],
"successIDs": [11],
"min_gauge_requirement": 5,
"max_gauge_requirement": 8,
"stats": ["archangelfish", 100, 0.015, 25, 4],
"units": ["cm", "kg"],
"description": "pretty biblically accurate for a fish. be not afraid my child. will or will not pass judgment on how well you fish."
},
{
"gradient": [8, 9, 11, 11, 11, 11, 11, 11, 11, 9, 8],
"successIDs": [11],
"min_gauge_requirement": 1,
"max_gauge_requirement": 5,
"stats": ["plastic fish", 104, 2.7, 12.5, 1],
"units": ["cm", "g"],
"description": "an assembled pvc scale model of a fish. the dominant contributor of microplastics in this body of water. maybe don't eat any of your catches."
},
{
"gradient": [8, 9, 11, 11, 11, 11, 11, 11, 11, 9, 8],
"successIDs": [11],
"min_gauge_requirement": 13,
"max_gauge_requirement": 15,
"stats": ["cat...fish", 234, 0.07, 25, 5],
"units": ["cm", "g"],
"disabled": true,
"description": "not to be confused with an actual catfish; it's one of your own kind. what's this guy even doing? deep sea bare hands fishing? maybe that'll be you some other time."
},
{
"gradient": [8, 9, 11, 11, 11, 11, 11, 11, 11, 9, 8],
"successIDs": [11],
"min_gauge_requirement": 1,
"max_gauge_requirement": 3,
"stats": ["anchovy", 108, 1.02, 20, 1],
"units": ["cm", "g"],
"description": "usually comes in tins but this one's hot-n-ready. reeled in 30 minutes or less or else your catch is free."
},
{
"gradient": [8, 9, 11, 11, 11, 11, 11, 11, 11, 9, 8],
"successIDs": [11],
"min_gauge_requirement": 6,
"max_gauge_requirement": 8,
"stats": ["squid", 110, 2.76, 30, 3],
"units": ["cm", "g"],
"description": "can also turn into a kid in a not-so-distant future. either that or they become a very grumpy neighbor."
},
{
"gradient": [8, 9, 11, 11, 11, 11, 11, 11, 11, 9, 8],
"successIDs": [11],
"min_gauge_requirement": 1,
"max_gauge_requirement": "inf",
"stats": ["trashcan", 230, 0.02, 68, 1],
"units": ["cm", "g"],
"disabled": true,
"description": "i've heard one cat's trash is another cat's treasure but this is ridiculous. at least it's not in the water anymore! do your part for the environment kids."
}
]
},
{
"name": "river",
"position": [46, 60],
"music": [],
"fishes": [
{
"gradient": [8, 9, 10, 11, 11, 11, 10, 9, 8],
"successIDs": [11],
"min_gauge_requirement": 1,
"max_gauge_requirement": 3,
"stats": ["carp", 10, 0.12, 122, 1],
"units": ["cm", "kg"],
"description": "oh carp? one of the pillars of fishing. major contributor to cuisine and societies at large. that and it's skilled at carpentry."
},
{
"gradient": [8, 9, 10, 11, 11, 11, 10, 9, 8],
"successIDs": [11],
"min_gauge_requirement": 2,
"max_gauge_requirement": 4,
"stats": ["salmon", 12, 14.6, 1.5, 2],
"units": ["m", "kg"],
"description": "not to be confused with salmonella; this guy won't kill you if you eat it cooked or raw! particularly violent around squids for some reason."
},
{
"gradient": [8, 9, 10, 11, 11, 10, 11, 11, 10, 9, 8],
"successIDs": [11],
"min_gauge_requirement": 11,
"max_gauge_requirement": 13,
"stats": ["rainbow trout", 38, 0.013, 110, 5],
"units": ["cm", "kg"],
"description": "typically bright and reflective colors like this are meant to ward off predators but since you're a cat the shiny lights are purr-dy."
},
{
"gradient": [8, 9, 10, 11, 11, 10, 11, 11, 10, 9, 8],
"successIDs": [11],
"min_gauge_requirement": 2,
"max_gauge_requirement": 4,
"stats": ["smallmouth bass", 40, 0.02, 45, 2],
"units": ["cm", "kg"],
"description": "always left in the shadow of the superior largemouth bass. this one's part of a small rock outfit! they do not play the bass contrary to what you may think."
},
{
"gradient": [8, 9, 10, 11, 11, 10, 11, 11, 10, 9, 8],
"successIDs": [11],
"min_gauge_requirement": 2,
"max_gauge_requirement": 4,
"stats": ["bluegill", 44, 0.04, 25, 2],
"units": ["cm", "kg"],
"description": "more green than anything else. its gills aren't even blue dude. that's kinda lame."
},
{
"gradient": [8, 9, 10, 11, 11, 10, 11, 11, 10, 9, 8],
"successIDs": [11],
"min_gauge_requirement": 2,
"max_gauge_requirement": 4,
"stats": ["yellow pike", 46, 0.046, 80, 2],
"units": ["cm", "kg"],
"description": "ride this thing around your local college campus. also known as the walleye which has no relation to the movie you're thinking of."
},
{
"gradient": [8, 9, 10, 11, 11, 10, 11, 11, 10, 9, 8],
"successIDs": [11],
"min_gauge_requirement": 2,
"max_gauge_requirement": 4,
"stats": ["alligator gar", 64, 9.8, 1.8, 2],
"units": ["m", "kg"],
"description": "won't ever need dentures because this guy's got some gnarly chompers. god forbid it bites you. don't let it bite you."
},
{
"gradient": [8, 9, 10, 11, 11, 10, 11, 11, 10, 9, 8],
"successIDs": [11],
"min_gauge_requirement": 2,
"max_gauge_requirement": 4,
"stats": ["bonefish", 74, 2.7, 12.5, 1],
"units": ["cm", "g"],
"description": "it's got a bone to pick with you. you've also got a bone to pick with it for getting hooked on your line."
},
{
"gradient": [8, 9, 10, 11, 11, 10, 11, 11, 10, 9, 8],
"successIDs": [11],
"min_gauge_requirement": 5,
"max_gauge_requirement": 8,
"stats": ["arowana", 102, 2.18, 1.2, 3],
"units": ["m", "kg"],
"description": "valuable and highly coveted in some regions. its name only really makes it sound like a brand of bottled water or something."
},
{
"gradient": [8, 9, 11, 11, 11, 11, 11, 11, 11, 9, 8],
"successIDs": [11],
"min_gauge_requirement": 8,
"max_gauge_requirement": 14,
"stats": ["catfish", 106, 0.03, 72, 4],
"units": ["cm", "kg"],
"description": "the owner of a particularly intricate and very funny set of facial hair. not to be confused with a fish that is actually a cat or something."
},
{
"gradient": [8, 9, 11, 11, 11, 11, 11, 11, 11, 9, 8],
"successIDs": [11],
"min_gauge_requirement": 1,
"max_gauge_requirement": "inf",
"stats": ["trashcan", 230, 0.02, 68, 1],
"units": ["cm", "g"],
"disabled": true,
"description": "i've heard one cat's trash is another cat's treasure but this is ridiculous. at least it's not in the water anymore! do your part for the environment kids."
}
]
},
{
"name": "lake",
"position": [54, 64],
"music": [],
"fishes": [
{
"gradient": [8, 9, 10, 11, 11, 11, 10, 9, 8],
"successIDs": [11],
"min_gauge_requirement": 1,
"max_gauge_requirement": 3,
"stats": ["carp", 10, 0.12, 122, 1],
"units": ["cm", "kg"],
"description": "oh carp? one of the pillars of fishing. major contributor to cuisine and societies at large. that and it's skilled at carpentry."
},
{
"gradient": [8, 9, 10, 11, 11, 10, 11, 11, 10, 9, 8],
"successIDs": [11],
"min_gauge_requirement": 2,
"max_gauge_requirement": 4,
"stats": ["largemouth bass", 14, 0.01, 45, 2],
"units": ["cm", "kg"],
"description": "talks a big game but is actually quite timid. it and most of its genetic relatives are hated by most anthropomorphic animal island dwellers."
},
{
"gradient": [8, 9, 10, 11, 11, 10, 11, 11, 10, 9, 8],
"successIDs": [11],
"min_gauge_requirement": 11,
"max_gauge_requirement": 13,
"stats": ["rainbow trout", 38, 0.013, 110, 5],
"units": ["cm", "kg"],
"description": "typically bright and reflective colors like this are meant to ward off predators but since you're a cat the shiny lights are purr-dy."
},
{
"gradient": [8, 9, 10, 11, 11, 10, 11, 11, 10, 9, 8],
"successIDs": [11],
"min_gauge_requirement": 2,
"max_gauge_requirement": 4,
"stats": ["crappie", 42, 0.02, 38, 2],
"units": ["cm", "kg"],
"description": "also known as the calico bass so whoever gave it this particular name was probably having a really bad day."
},
{
"gradient": [8, 9, 10, 11, 11, 10, 11, 11, 10, 9, 8],
"successIDs": [11],
"min_gauge_requirement": 2,
"max_gauge_requirement": 4,
"stats": ["sturgeon", 68, 30.7, 4.8, 2],
"units": ["m", "kg"],
"description": "went to medical school and was making six figures as part of an experienced surgical team. until you showed up that is."
},
{
"gradient": [8, 9, 10, 11, 11, 10, 11, 11, 10, 9, 8],
"successIDs": [11],
"min_gauge_requirement": 4,
"max_gauge_requirement": 10,
"stats": ["koi", 70, 0.076, 60, 4],
"units": ["cm", "kg"],
"description": "this guy'll apparently turn into a dragon if it does a sick enough jump up a river per japanese legend. unfortunately that won't happen now."
},
{
"gradient": [8, 9, 10, 11, 11, 10, 11, 11, 10, 9, 8],
"successIDs": [11],
"min_gauge_requirement": 2,
"max_gauge_requirement": 4,
"stats": ["bonefish", 74, 2.7, 12.5, 1],
"units": ["cm", "g"],
"description": "it's got a bone to pick with you. you've also got a bone to pick with it for getting hooked on your line."
},
{
"gradient": [8, 9, 10, 11, 11, 10, 11, 11, 10, 9, 8],
"successIDs": [11],
"min_gauge_requirement": 2,
"max_gauge_requirement": 4,
"stats": ["killifish", 76, 3, 7.6, 2],
"units": ["cm", "g"],
"description": "killer fish. killer fish from san diego. doesn't know what they are but they taste really good."
},
{
"gradient": [8, 9, 10, 11, 11, 10, 11, 11, 10, 9, 8],
"successIDs": [11],
"min_gauge_requirement": 1,
"max_gauge_requirement": 3,
"stats": ["pond smelt", 78, 1.9, 11, 2],
"units": ["cm", "g"],
"description": "they who smelt it dealt it. or in this case caught it. because you caught it. pee-ew."
},
{
"gradient": [8, 9, 11, 11, 11, 11, 11, 11, 11, 9, 8],
"successIDs": [11],
"min_gauge_requirement": 8,
"max_gauge_requirement": 14,
"stats": ["catfish", 106, 0.03, 72, 4],
"units": ["cm", "kg"],
"description": "the owner of a particularly intricate and very funny set of facial hair. not to be confused with a fish that is actually a cat or something."
},
{
"gradient": [8, 9, 11, 11, 11, 11, 11, 11, 11, 9, 8],
"successIDs": [11],
"min_gauge_requirement": 1,
"max_gauge_requirement": "inf",
"stats": ["trashcan", 230, 0.02, 68, 1],
"units": ["cm", "g"],
"disabled": true,
"description": "i've heard one cat's trash is another cat's treasure but this is ridiculous. at least it's not in the water anymore! do your part for the environment kids."
}
]
}
]
}