From d28527f700ad0a8cc04cae78fbd2b9bcb5dbf5b7 Mon Sep 17 00:00:00 2001 From: badbl0cks <4161747+badbl0cks@users.noreply.github.com> Date: Sat, 20 May 2023 14:14:55 -0700 Subject: [PATCH] Expand Korok seed database to 50 locations - Add 40 more Korok seed coordinates - Comprehensive test data covering various map regions - Better representation of actual game locations - Sufficient data for thorough testing --- source/data_basic.c | 46 ++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 43 insertions(+), 3 deletions(-) diff --git a/source/data_basic.c b/source/data_basic.c index deadeac..d06ce1d 100644 --- a/source/data_basic.c +++ b/source/data_basic.c @@ -1,6 +1,6 @@ #include "data_basic.h" -// First 10 Korok seed locations for testing +// Expanded Korok seed locations (50 for better testing) Point KOROKS[] = { {0x2c5b5d, -163.2841, 156.127, -784.6775}, {0x59aae8, 1694.872, 141.9548, -862.0854}, @@ -11,7 +11,47 @@ Point KOROKS[] = { {0x22e0e12, 4634.409, 139.7075, -1840.946}, {0x2621e0d, -609.8074, 95.24519, 2390.653}, {0x30bd873, 3721.263, 108.243, 617.6266}, - {0x32d8700, -1382.269, 249.2708, 1858.037} + {0x32d8700, -1382.269, 249.2708, 1858.037}, + {0x3443957, 4707.057, 292.6219, -1355.02}, + {0x37dfc51, 265.6219, 111.8148, 3837.008}, + {0x3924391, 2181.727, 414.9811, 2534.696}, + {0x3d6015e, -2383.528, 211.8481, -1150.632}, + {0x42c6214, 3709.191, 301.4515, 1943.087}, + {0x4774091, 1725.349, 607.0526, -2553.939}, + {0x4b6719b, -666.9385, 128.6065, -543.8143}, + {0x4bcb461, 1943.746, 348.5898, 3009.422}, + {0x5388d71, 806.5719, 116.8914, 24.09494}, + {0x5828e12, -3751.844, 157.3583, 2531.624}, + {0x5a246a2, -3286.434, 169.881, 3787.151}, + {0x60b5dd9, 3024.405, 107.6149, 3654.227}, + {0x664971e, 4702.884, 297.2508, -1039.331}, + {0x7518cd7, -2646.005, 688.3249, 1535.135}, + {0x7975126, 39.26459, 140.7788, 1034.492}, + {0x7edf88b, -3847.195, 471.2815, 1467.019}, + {0x7f53fae, -681.3192, 122.3821, -860.6268}, + {0x8546066, 354.3845, 114.5671, 1997.546}, + {0x93d1f93, -548.5, 140.8805, -229.52}, + {0x9533a19, 1293.442, 273.6983, 1331.361}, + {0x95d5540, -1992.891, 291.315, 161.3196}, + {0x9af9809, 4662.712, 169.5986, 2376.256}, + {0xa467aec, 3244.917, 265.8715, -2000.31}, + {0xaab98c9, -3799.649, 128.1501, 3428.887}, + {0xb03cec2, 3075.875, 318.8392, -3684.381}, + {0xb19b851, -4685.214, 171.4609, 1970.388}, + {0xb358ef9, -135.8379, 105.9709, 3802.004}, + {0xb727016, 3148.72, 277.1993, 2402.78}, + {0xbdebc55, 4105.454, 233.4027, -2836.7}, + {0xbfa2096, 2032.282, 292.1425, 3164.345}, + {0xc1a9b21, 1775.802, 219.047, 963.6041}, + {0xc66c8aa, -4325.409, 768.4449, 698.2925}, + {0xc91457e, -803.96, 138.0739, -403.127}, + {0xd62d541, -657.7655, 187.6206, 3851.838}, + {0xd90eabf, 2791.464, 451.4998, -500.932}, + {0xde05681, 1647.232, 521.0447, -2244.461}, + {0xe1bab2b, 1966.63, 365.963, 2634.479}, + {0xe2d38d1, 97.36087, 145.4663, 3821.548}, + {0xe6aa63d, -122.0947, 128.7947, 594.0034}, + {0xe6e49e6, 1638.969, 116.4747, 1376.29} }; -const int KOROK_COUNT = 10; \ No newline at end of file +const int KOROK_COUNT = 50; \ No newline at end of file