├── .gitattributes ├── .gitignore ├── .gitmodules ├── README.md ├── changelog.txt ├── files ├── Credits.txt ├── README.pdf ├── configschema.xml ├── mod.ini ├── mod.manifest ├── mod.version ├── system │ ├── cam │ │ ├── C0000.BIN │ │ ├── C0100.bin │ │ ├── C0101.bin │ │ ├── C0102.BIN │ │ ├── C0103.BIN │ │ ├── C0200.BIN │ │ ├── C0201.bin │ │ ├── C0202.bin │ │ ├── C0203.bin │ │ ├── C0204.bin │ │ ├── C0300.bin │ │ ├── C0301.BIN │ │ ├── C0302.bin │ │ ├── C0303.BIN │ │ ├── C0304.BIN │ │ ├── C0400.bin │ │ ├── C0401.bin │ │ ├── C0402.bin │ │ ├── C0403.bin │ │ ├── C0404.bin │ │ ├── C0500.bin │ │ ├── C0501.bin │ │ ├── C0502.BIN │ │ ├── C0503.bin │ │ ├── C0600.bin │ │ ├── C0601.bin │ │ ├── C0602.bin │ │ ├── C0603.bin │ │ ├── C0604.bin │ │ ├── C0700.bin │ │ ├── C0701.bin │ │ ├── C0702.bin │ │ ├── C0703.bin │ │ ├── C0800.bin │ │ ├── C0801.bin │ │ ├── C0802.BIN │ │ ├── C0803.BIN │ │ ├── C0900.bin │ │ ├── C0901.bin │ │ ├── C0904.BIN │ │ ├── C0905.bin │ │ ├── C1000.bin │ │ ├── C1001.bin │ │ ├── C1002.bin │ │ ├── C1003.BIN │ │ ├── C1004.BIN │ │ ├── C1200.bin │ │ ├── C1201.bin │ │ ├── C1202.bin │ │ ├── C1203.bin │ │ ├── C1900.bin │ │ └── C3800.BIN │ ├── models │ │ ├── MM-Platform.sa1mdl │ │ └── MysticMelody.sa1mdl │ ├── sets │ │ ├── Casinopolis │ │ │ ├── ACas0.bin │ │ │ ├── ACas1.BIN │ │ │ ├── ACasK.BIN │ │ │ ├── ACasM.BIN │ │ │ ├── BCas0.bin │ │ │ ├── BCas1.BIN │ │ │ ├── BCasK.BIN │ │ │ ├── BCasM.bin │ │ │ ├── ECas0.bin │ │ │ ├── ECas1.BIN │ │ │ ├── ECasK.BIN │ │ │ ├── ECasM.BIN │ │ │ ├── KCas0.bin │ │ │ ├── KCas1.BIN │ │ │ ├── KCasK.BIN │ │ │ ├── KCasM.BIN │ │ │ ├── MCas0.bin │ │ │ ├── MCas1.BIN │ │ │ ├── MCasK.BIN │ │ │ ├── MCasM.BIN │ │ │ ├── SCas0.bin │ │ │ ├── SCas1.BIN │ │ │ ├── SCasK.BIN │ │ │ └── SCasM.BIN │ │ ├── Emerald Coast │ │ │ ├── AEC0.bin │ │ │ ├── AEC1.bin │ │ │ ├── AEC2.BIN │ │ │ ├── AECE.bin │ │ │ ├── BEC0.bin │ │ │ ├── BEC1.bin │ │ │ ├── BEC2.BIN │ │ │ ├── BECE.BIN │ │ │ ├── EEC0.bin │ │ │ ├── EEC1.bin │ │ │ ├── EEC2.BIN │ │ │ ├── EECE.bin │ │ │ ├── KEC0.bin │ │ │ ├── KEC1.bin │ │ │ ├── KEC2.BIN │ │ │ ├── KECE.bin │ │ │ ├── MEC0.bin │ │ │ ├── MEC1.bin │ │ │ ├── MEC2.BIN │ │ │ ├── MECE.bin │ │ │ ├── SEC0.bin │ │ │ ├── SEC1.bin │ │ │ ├── SEC2.BIN │ │ │ └── SECE.bin │ │ ├── Final Egg │ │ │ ├── AFE0.bin │ │ │ ├── AFE1.bin │ │ │ ├── AFE2.BIN │ │ │ ├── AFEA.BIN │ │ │ ├── AFEG.BIN │ │ │ ├── BFE0.bin │ │ │ ├── BFE1.bin │ │ │ ├── BFE2.BIN │ │ │ ├── BFEA.bin │ │ │ ├── BFEG.BIN │ │ │ ├── EFE0.bin │ │ │ ├── EFE1.bin │ │ │ ├── EFE2.BIN │ │ │ ├── EFEA.bin │ │ │ ├── EFEG.BIN │ │ │ ├── KFE0.bin │ │ │ ├── KFE1.bin │ │ │ ├── KFE2.BIN │ │ │ ├── KFEA.bin │ │ │ ├── KFEG.BIN │ │ │ ├── MFE0.bin │ │ │ ├── MFE1.bin │ │ │ ├── MFE2.BIN │ │ │ ├── MFEA.bin │ │ │ ├── MFEG.BIN │ │ │ ├── SFE0.bin │ │ │ ├── SFE1.bin │ │ │ ├── SFE2.BIN │ │ │ ├── SFEA.bin │ │ │ └── SFEG.BIN │ │ ├── HH.BIN │ │ ├── Hot Shelter │ │ │ ├── AHS0.bin │ │ │ ├── AHS1.BIN │ │ │ ├── AHS2.BIN │ │ │ ├── AHSB.BIN │ │ │ ├── BHS0.BIN │ │ │ ├── BHS1.bin │ │ │ ├── BHS2.BIN │ │ │ ├── BHSB.BIN │ │ │ ├── EHS0.BIN │ │ │ ├── EHS1.BIN │ │ │ ├── EHS2.BIN │ │ │ ├── EHSB.BIN │ │ │ ├── KHS0.BIN │ │ │ ├── KHS1.BIN │ │ │ ├── KHS2.BIN │ │ │ ├── KHSB.BIN │ │ │ ├── MHS0.BIN │ │ │ ├── MHS1.BIN │ │ │ ├── MHS2.BIN │ │ │ ├── MHSB.BIN │ │ │ ├── SHS0.BIN │ │ │ ├── SHS1.BIN │ │ │ ├── SHS2.BIN │ │ │ └── SHSB.BIN │ │ ├── Ice Cap │ │ │ ├── AIC0.BIN │ │ │ ├── AIC1.BIN │ │ │ ├── AIC2.BIN │ │ │ ├── AIC3.BIN │ │ │ ├── AICM.bin │ │ │ ├── BIC0.bin │ │ │ ├── BIC1.BIN │ │ │ ├── BIC2.BIN │ │ │ ├── BIC3.BIN │ │ │ ├── BICM.BIN │ │ │ ├── EIC0.BIN │ │ │ ├── EIC1.BIN │ │ │ ├── EIC2.BIN │ │ │ ├── EIC3.BIN │ │ │ ├── EICM.BIN │ │ │ ├── KIC0.BIN │ │ │ ├── KIC1.BIN │ │ │ ├── KIC2.BIN │ │ │ ├── KIC3.BIN │ │ │ ├── KICM.BIN │ │ │ ├── MIC0.BIN │ │ │ ├── MIC1.BIN │ │ │ ├── MIC2.BIN │ │ │ ├── MIC3.BIN │ │ │ ├── MICM.BIN │ │ │ ├── SIC0.BIN │ │ │ ├── SIC1.BIN │ │ │ ├── SIC2.BIN │ │ │ ├── SIC3.BIN │ │ │ └── SICM.BIN │ │ ├── Lost World │ │ │ ├── ALW0.bin │ │ │ ├── ALW1.bin │ │ │ ├── ALW2.bin │ │ │ ├── ALWK.BIN │ │ │ ├── BLW0.bin │ │ │ ├── BLW1.bin │ │ │ ├── BLW2.bin │ │ │ ├── BLWK.BIN │ │ │ ├── ELW0.bin │ │ │ ├── ELW1.bin │ │ │ ├── ELW2.bin │ │ │ ├── ELWK.BIN │ │ │ ├── KLW0.bin │ │ │ ├── KLW1.bin │ │ │ ├── KLW2.bin │ │ │ ├── KLWK.BIN │ │ │ ├── MLW0.bin │ │ │ ├── MLW1.bin │ │ │ ├── MLW2.bin │ │ │ ├── MLWK.BIN │ │ │ ├── SLW0.bin │ │ │ ├── SLW1.bin │ │ │ ├── SLW2.bin │ │ │ └── SLWK.BIN │ │ ├── Red Mountain │ │ │ ├── ARM0.bin │ │ │ ├── ARM1.bin │ │ │ ├── ARM2.BIN │ │ │ ├── ARMG.bin │ │ │ ├── BRM0.bin │ │ │ ├── BRM1.bin │ │ │ ├── BRM2.BIN │ │ │ ├── BRMG.bin │ │ │ ├── ERM0.bin │ │ │ ├── ERM1.bin │ │ │ ├── ERM2.BIN │ │ │ ├── ERMG.bin │ │ │ ├── KRM0.bin │ │ │ ├── KRM1.bin │ │ │ ├── KRM2.BIN │ │ │ ├── KRMG.bin │ │ │ ├── MRM0.bin │ │ │ ├── MRM1.bin │ │ │ ├── MRM2.BIN │ │ │ ├── MRMG.bin │ │ │ ├── SRM0.bin │ │ │ ├── SRM1.bin │ │ │ ├── SRM2.BIN │ │ │ └── SRMG.bin │ │ ├── SET1801S.BIN │ │ ├── SETE101RS.BIN │ │ ├── SETE101S.BIN │ │ ├── SETMCART03S.BIN │ │ ├── SETZEROS.BIN │ │ ├── Sky Deck │ │ │ ├── ASD0.bin │ │ │ ├── ASD1.BIN │ │ │ ├── ASD2.BIN │ │ │ ├── ASDK.BIN │ │ │ ├── ASDM.bin │ │ │ ├── BSD0.bin │ │ │ ├── BSD1.BIN │ │ │ ├── BSD2.BIN │ │ │ ├── BSDK.BIN │ │ │ ├── BSDM.bin │ │ │ ├── ESD0.bin │ │ │ ├── ESD1.BIN │ │ │ ├── ESD2.BIN │ │ │ ├── ESDK.BIN │ │ │ ├── ESDM.bin │ │ │ ├── KSD0.bin │ │ │ ├── KSD1.BIN │ │ │ ├── KSD2.BIN │ │ │ ├── KSDK.BIN │ │ │ ├── KSDM.bin │ │ │ ├── MSD0.bin │ │ │ ├── MSD1.BIN │ │ │ ├── MSD2.BIN │ │ │ ├── MSDK.BIN │ │ │ ├── MSDM.bin │ │ │ ├── SSD0.bin │ │ │ ├── SSD1.BIN │ │ │ ├── SSD2.BIN │ │ │ ├── SSDK.BIN │ │ │ └── SSDM.bin │ │ ├── Speed Highway │ │ │ ├── ASH0.bin │ │ │ ├── ASH1.bin │ │ │ ├── ASH2.bin │ │ │ ├── ASHK.bin │ │ │ ├── ASHM.BIN │ │ │ ├── BSH0.bin │ │ │ ├── BSH1.bin │ │ │ ├── BSH2.bin │ │ │ ├── BSHK.bin │ │ │ ├── BSHM.BIN │ │ │ ├── ESH0.bin │ │ │ ├── ESH1.bin │ │ │ ├── ESH2.bin │ │ │ ├── ESHK.bin │ │ │ ├── ESHM.BIN │ │ │ ├── KSH0.bin │ │ │ ├── KSH1.bin │ │ │ ├── KSH2.bin │ │ │ ├── KSHK.BIN │ │ │ ├── KSHM.BIN │ │ │ ├── MSH0.BIN │ │ │ ├── MSH1.bin │ │ │ ├── MSH2.bin │ │ │ ├── MSHK.bin │ │ │ ├── MSHM.BIN │ │ │ ├── SSH0.bin │ │ │ ├── SSH1.bin │ │ │ ├── SSH2.bin │ │ │ ├── SSHK.bin │ │ │ └── SSHM.bin │ │ ├── Twinkle Park │ │ │ ├── ATP0.BIN │ │ │ ├── ATP1.bin │ │ │ ├── ATP2.bin │ │ │ ├── ATPA.BIN │ │ │ ├── ATPB.BIN │ │ │ ├── BTP0.BIN │ │ │ ├── BTP1.bin │ │ │ ├── BTP2.bin │ │ │ ├── BTPA.bin │ │ │ ├── BTPB.BIN │ │ │ ├── ETP0.BIN │ │ │ ├── ETP1.BIN │ │ │ ├── ETP2.bin │ │ │ ├── ETPA.bin │ │ │ ├── ETPB.BIN │ │ │ ├── KTP0.BIN │ │ │ ├── KTP1.BIN │ │ │ ├── KTP2.bin │ │ │ ├── KTPA.bin │ │ │ ├── KTPB.BIN │ │ │ ├── MTP0.BIN │ │ │ ├── MTP1.BIN │ │ │ ├── MTP2.bin │ │ │ ├── MTPA.bin │ │ │ ├── MTPB.BIN │ │ │ ├── STP0.BIN │ │ │ ├── STP1.BIN │ │ │ ├── STP2.bin │ │ │ ├── STPA.bin │ │ │ └── STPB.BIN │ │ └── Windy Valley │ │ │ ├── AWV0.BIN │ │ │ ├── AWV1.BIN │ │ │ ├── AWV2.BIN │ │ │ ├── AWVG.BIN │ │ │ ├── AWVM.bin │ │ │ ├── BWV0.BIN │ │ │ ├── BWV1.BIN │ │ │ ├── BWV2.BIN │ │ │ ├── BWVG.BIN │ │ │ ├── BWVM.bin │ │ │ ├── EWV0.BIN │ │ │ ├── EWV1.bin │ │ │ ├── EWV2.bin │ │ │ ├── EWVG.BIN │ │ │ ├── EWVM.bin │ │ │ ├── KWV0.BIN │ │ │ ├── KWV1.BIN │ │ │ ├── KWV2.BIN │ │ │ ├── KWVG.BIN │ │ │ ├── KWVM.bin │ │ │ ├── MWV0.BIN │ │ │ ├── MWV1.BIN │ │ │ ├── MWV2.bin │ │ │ ├── MWVG.BIN │ │ │ ├── MWVM.bin │ │ │ ├── SWV0.BIN │ │ │ ├── SWV1.BIN │ │ │ ├── SWV2.BIN │ │ │ ├── SWVG.BIN │ │ │ └── SWVM.bin │ ├── songs │ │ ├── NIGHTS_A.ADX │ │ ├── NIGHTS_S.ADX │ │ ├── SONIC_CD.ADX │ │ └── SSRACING.ADX │ ├── sounddata │ │ ├── bgm │ │ │ └── wma │ │ │ │ └── RandoStats.adx │ │ └── sounds │ │ │ ├── 1000.adx │ │ │ ├── 1001.adx │ │ │ ├── 1002.adx │ │ │ ├── 1003.adx │ │ │ ├── 1004.adx │ │ │ ├── 4000.adx │ │ │ ├── 4001.adx │ │ │ ├── 4002.adx │ │ │ ├── 4003.adx │ │ │ ├── 4005.adx │ │ │ ├── 5000.wav │ │ │ ├── 6000.adx │ │ │ ├── 6001.adx │ │ │ ├── 6002.adx │ │ │ ├── 6003.wav │ │ │ ├── 6004.wav │ │ │ ├── 6005.wav │ │ │ ├── 6006.wav │ │ │ └── 6007.wav │ ├── textures │ │ ├── AVA_GTITLE0_E.PVM │ │ ├── CON_REGULAR_E_HD.PVMX │ │ ├── ENDBG_SONIC_0_HD.PVMX │ │ ├── RACE_HD.pvmx │ │ └── WINDY_BACK3.PVM │ └── voices │ │ ├── BackRingHit.adx │ │ ├── ZeroArm.adx │ │ ├── ZeroHit.adx │ │ ├── ZeroLaser.adx │ │ ├── ZeroTarget.adx │ │ ├── ZeroThink.adx │ │ ├── amyyesyes.adx │ │ ├── anyideasonic.adx │ │ ├── b03_00_22.adx │ │ ├── back ring.adx │ │ ├── begone.adx │ │ ├── big.adx │ │ ├── biggotit.adx │ │ ├── bighehe.adx │ │ ├── bigvictory.adx │ │ ├── bigwouhou.adx │ │ ├── bounce.adx │ │ ├── caughup.adx │ │ ├── chaocry1.adx │ │ ├── chaocry2.adx │ │ ├── congratulations_amy.adx │ │ ├── congratulations_knux.adx │ │ ├── congratulations_sonic.adx │ │ ├── congratulations_tails.adx │ │ ├── dontgiveup.adx │ │ ├── eggmannowyouknow.adx │ │ ├── eggmanyosh.adx │ │ ├── gammagetitem.adx │ │ ├── giveupamy_424.adx │ │ ├── giveuptails.adx │ │ ├── goingamy.adx │ │ ├── haha_sonic.adx │ │ ├── keepup.adx │ │ ├── knuckles.adx │ │ ├── nope.adx │ │ ├── notez.adx │ │ ├── nouse.adx │ │ ├── noway.adx │ │ ├── teleport.adx │ │ ├── useless.adx │ │ └── youthought.adx └── textures │ ├── BACKRING.pvmx │ ├── Missions.pvmx │ ├── RandomTitleCard.pvmx │ ├── common-obj.pvmx │ └── hud_rando.pvmx ├── sadx-randomizer.sln └── sadx-randomizer ├── .gitattributes ├── 00_HedgehogHammer.cpp ├── 01_EmeraldCoast.cpp ├── 02_WindyValley.cpp ├── 03_TwinklePark.cpp ├── 04_SpeedHighway.cpp ├── 05_RedMountain.cpp ├── 06_SkyDeck.cpp ├── 07_LostWorld.cpp ├── 08_IceCap.cpp ├── 09_Casino.cpp ├── 10_FinalEgg.cpp ├── 12_HotShelter.cpp ├── 35_TwinkleCircuit.cpp ├── 38_SandHill.cpp ├── AISettings.cpp ├── AdventureFlags.cpp ├── BackRing.cpp ├── Chao.cpp ├── Chaos0.cpp ├── Chaos2.cpp ├── Chaos4.cpp ├── Chaos6.cpp ├── CharactersSettings.cpp ├── Common_Startup.cpp ├── Cutscene.cpp ├── E100-series.cpp ├── EC.h ├── EggHornet.cpp ├── EggViper.cpp ├── EggWalker.cpp ├── Level.cpp ├── Missions.cpp ├── Mod.cpp ├── Music.cpp ├── ObjectCommon.cpp ├── PerfectChaos.cpp ├── Race.cpp ├── Randomizer_Main.cpp ├── ResultScreen.cpp ├── SetCamFiles.cpp ├── SuperSonic.cpp ├── TreasureHunting.cpp ├── Utils.cpp ├── Voices.cpp ├── Zero-chase.cpp ├── Zero.cpp ├── cart.cpp ├── changelog.txt ├── config.cpp ├── credits.cpp ├── data ├── Cas.h ├── Chaos0.h ├── Chaos2.h ├── Chaos4.h ├── Chaos6.h ├── CharactersSettings.h ├── Credits.h ├── Cutscene.h ├── E101.h ├── EggHornet.h ├── EggViper.h ├── EggWalker.h ├── FE.h ├── HS.h ├── IceCap.h ├── LW.h ├── RM.h ├── RandomHelpers.h ├── SADXFunctions.h ├── SADXVariables.h ├── SD.h ├── SH.h ├── SandHill.h ├── StageSettings.h ├── TP.h ├── Utils.h ├── WV.h ├── Zero.h ├── chao.h ├── hud.h ├── level.h ├── mission.h ├── resource.h ├── resource1.h ├── sound.h ├── startup.h └── subtitles.h ├── e101.cpp ├── enemy.cpp ├── enemy.h ├── hud.cpp ├── multiapi.h ├── mystic-melody.cpp ├── nlohmann └── json.hpp ├── objects.h ├── sadx-randomizer.vcxproj ├── sadx-randomizer.vcxproj.filters ├── sound.cpp ├── stdafx.cpp ├── stdafx.h ├── subtitles.cpp └── targetver.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/README.md -------------------------------------------------------------------------------- /changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/changelog.txt -------------------------------------------------------------------------------- /files/Credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/Credits.txt -------------------------------------------------------------------------------- /files/README.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/README.pdf -------------------------------------------------------------------------------- /files/configschema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/configschema.xml -------------------------------------------------------------------------------- /files/mod.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/mod.ini -------------------------------------------------------------------------------- /files/mod.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/mod.manifest -------------------------------------------------------------------------------- /files/mod.version: -------------------------------------------------------------------------------- 1 | 11/05/2021 23:30:47 -------------------------------------------------------------------------------- /files/system/cam/C0000.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/cam/C0000.BIN -------------------------------------------------------------------------------- /files/system/cam/C0100.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/cam/C0100.bin -------------------------------------------------------------------------------- /files/system/cam/C0101.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/cam/C0101.bin -------------------------------------------------------------------------------- /files/system/cam/C0102.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/cam/C0102.BIN -------------------------------------------------------------------------------- /files/system/cam/C0103.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/cam/C0103.BIN -------------------------------------------------------------------------------- /files/system/cam/C0200.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/cam/C0200.BIN -------------------------------------------------------------------------------- /files/system/cam/C0201.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/cam/C0201.bin -------------------------------------------------------------------------------- /files/system/cam/C0202.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/cam/C0202.bin -------------------------------------------------------------------------------- /files/system/cam/C0203.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/cam/C0203.bin -------------------------------------------------------------------------------- /files/system/cam/C0204.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/cam/C0204.bin -------------------------------------------------------------------------------- /files/system/cam/C0300.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/cam/C0300.bin -------------------------------------------------------------------------------- /files/system/cam/C0301.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/cam/C0301.BIN -------------------------------------------------------------------------------- /files/system/cam/C0302.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/cam/C0302.bin -------------------------------------------------------------------------------- /files/system/cam/C0303.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/cam/C0303.BIN -------------------------------------------------------------------------------- /files/system/cam/C0304.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/cam/C0304.BIN -------------------------------------------------------------------------------- /files/system/cam/C0400.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/cam/C0400.bin -------------------------------------------------------------------------------- /files/system/cam/C0401.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/cam/C0401.bin -------------------------------------------------------------------------------- /files/system/cam/C0402.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/cam/C0402.bin -------------------------------------------------------------------------------- /files/system/cam/C0403.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/cam/C0403.bin -------------------------------------------------------------------------------- /files/system/cam/C0404.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/cam/C0404.bin -------------------------------------------------------------------------------- /files/system/cam/C0500.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/cam/C0500.bin -------------------------------------------------------------------------------- /files/system/cam/C0501.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/cam/C0501.bin -------------------------------------------------------------------------------- /files/system/cam/C0502.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/cam/C0502.BIN -------------------------------------------------------------------------------- /files/system/cam/C0503.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/cam/C0503.bin -------------------------------------------------------------------------------- /files/system/cam/C0600.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/cam/C0600.bin -------------------------------------------------------------------------------- /files/system/cam/C0601.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/cam/C0601.bin -------------------------------------------------------------------------------- /files/system/cam/C0602.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/cam/C0602.bin -------------------------------------------------------------------------------- /files/system/cam/C0603.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/cam/C0603.bin -------------------------------------------------------------------------------- /files/system/cam/C0604.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/cam/C0604.bin -------------------------------------------------------------------------------- /files/system/cam/C0700.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/cam/C0700.bin -------------------------------------------------------------------------------- /files/system/cam/C0701.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/cam/C0701.bin -------------------------------------------------------------------------------- /files/system/cam/C0702.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/cam/C0702.bin -------------------------------------------------------------------------------- /files/system/cam/C0703.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/cam/C0703.bin -------------------------------------------------------------------------------- /files/system/cam/C0800.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/cam/C0800.bin -------------------------------------------------------------------------------- /files/system/cam/C0801.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/cam/C0801.bin -------------------------------------------------------------------------------- /files/system/cam/C0802.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/cam/C0802.BIN -------------------------------------------------------------------------------- /files/system/cam/C0803.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/cam/C0803.BIN -------------------------------------------------------------------------------- /files/system/cam/C0900.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/cam/C0900.bin -------------------------------------------------------------------------------- /files/system/cam/C0901.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/cam/C0901.bin -------------------------------------------------------------------------------- /files/system/cam/C0904.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/cam/C0904.BIN -------------------------------------------------------------------------------- /files/system/cam/C0905.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/cam/C0905.bin -------------------------------------------------------------------------------- /files/system/cam/C1000.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/cam/C1000.bin -------------------------------------------------------------------------------- /files/system/cam/C1001.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/cam/C1001.bin -------------------------------------------------------------------------------- /files/system/cam/C1002.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/cam/C1002.bin -------------------------------------------------------------------------------- /files/system/cam/C1003.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/cam/C1003.BIN -------------------------------------------------------------------------------- /files/system/cam/C1004.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/cam/C1004.BIN -------------------------------------------------------------------------------- /files/system/cam/C1200.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/cam/C1200.bin -------------------------------------------------------------------------------- /files/system/cam/C1201.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/cam/C1201.bin -------------------------------------------------------------------------------- /files/system/cam/C1202.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/cam/C1202.bin -------------------------------------------------------------------------------- /files/system/cam/C1203.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/cam/C1203.bin -------------------------------------------------------------------------------- /files/system/cam/C1900.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/cam/C1900.bin -------------------------------------------------------------------------------- /files/system/cam/C3800.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/cam/C3800.BIN -------------------------------------------------------------------------------- /files/system/models/MM-Platform.sa1mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/models/MM-Platform.sa1mdl -------------------------------------------------------------------------------- /files/system/models/MysticMelody.sa1mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/models/MysticMelody.sa1mdl -------------------------------------------------------------------------------- /files/system/sets/Casinopolis/ACas0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Casinopolis/ACas0.bin -------------------------------------------------------------------------------- /files/system/sets/Casinopolis/ACas1.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Casinopolis/ACas1.BIN -------------------------------------------------------------------------------- /files/system/sets/Casinopolis/ACasK.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Casinopolis/ACasK.BIN -------------------------------------------------------------------------------- /files/system/sets/Casinopolis/ACasM.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Casinopolis/ACasM.BIN -------------------------------------------------------------------------------- /files/system/sets/Casinopolis/BCas0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Casinopolis/BCas0.bin -------------------------------------------------------------------------------- /files/system/sets/Casinopolis/BCas1.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Casinopolis/BCas1.BIN -------------------------------------------------------------------------------- /files/system/sets/Casinopolis/BCasK.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Casinopolis/BCasK.BIN -------------------------------------------------------------------------------- /files/system/sets/Casinopolis/BCasM.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Casinopolis/BCasM.bin -------------------------------------------------------------------------------- /files/system/sets/Casinopolis/ECas0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Casinopolis/ECas0.bin -------------------------------------------------------------------------------- /files/system/sets/Casinopolis/ECas1.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Casinopolis/ECas1.BIN -------------------------------------------------------------------------------- /files/system/sets/Casinopolis/ECasK.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Casinopolis/ECasK.BIN -------------------------------------------------------------------------------- /files/system/sets/Casinopolis/ECasM.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Casinopolis/ECasM.BIN -------------------------------------------------------------------------------- /files/system/sets/Casinopolis/KCas0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Casinopolis/KCas0.bin -------------------------------------------------------------------------------- /files/system/sets/Casinopolis/KCas1.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Casinopolis/KCas1.BIN -------------------------------------------------------------------------------- /files/system/sets/Casinopolis/KCasK.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Casinopolis/KCasK.BIN -------------------------------------------------------------------------------- /files/system/sets/Casinopolis/KCasM.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Casinopolis/KCasM.BIN -------------------------------------------------------------------------------- /files/system/sets/Casinopolis/MCas0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Casinopolis/MCas0.bin -------------------------------------------------------------------------------- /files/system/sets/Casinopolis/MCas1.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Casinopolis/MCas1.BIN -------------------------------------------------------------------------------- /files/system/sets/Casinopolis/MCasK.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Casinopolis/MCasK.BIN -------------------------------------------------------------------------------- /files/system/sets/Casinopolis/MCasM.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Casinopolis/MCasM.BIN -------------------------------------------------------------------------------- /files/system/sets/Casinopolis/SCas0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Casinopolis/SCas0.bin -------------------------------------------------------------------------------- /files/system/sets/Casinopolis/SCas1.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Casinopolis/SCas1.BIN -------------------------------------------------------------------------------- /files/system/sets/Casinopolis/SCasK.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Casinopolis/SCasK.BIN -------------------------------------------------------------------------------- /files/system/sets/Casinopolis/SCasM.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Casinopolis/SCasM.BIN -------------------------------------------------------------------------------- /files/system/sets/Emerald Coast/AEC0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Emerald Coast/AEC0.bin -------------------------------------------------------------------------------- /files/system/sets/Emerald Coast/AEC1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Emerald Coast/AEC1.bin -------------------------------------------------------------------------------- /files/system/sets/Emerald Coast/AEC2.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Emerald Coast/AEC2.BIN -------------------------------------------------------------------------------- /files/system/sets/Emerald Coast/AECE.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Emerald Coast/AECE.bin -------------------------------------------------------------------------------- /files/system/sets/Emerald Coast/BEC0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Emerald Coast/BEC0.bin -------------------------------------------------------------------------------- /files/system/sets/Emerald Coast/BEC1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Emerald Coast/BEC1.bin -------------------------------------------------------------------------------- /files/system/sets/Emerald Coast/BEC2.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Emerald Coast/BEC2.BIN -------------------------------------------------------------------------------- /files/system/sets/Emerald Coast/BECE.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Emerald Coast/BECE.BIN -------------------------------------------------------------------------------- /files/system/sets/Emerald Coast/EEC0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Emerald Coast/EEC0.bin -------------------------------------------------------------------------------- /files/system/sets/Emerald Coast/EEC1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Emerald Coast/EEC1.bin -------------------------------------------------------------------------------- /files/system/sets/Emerald Coast/EEC2.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Emerald Coast/EEC2.BIN -------------------------------------------------------------------------------- /files/system/sets/Emerald Coast/EECE.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Emerald Coast/EECE.bin -------------------------------------------------------------------------------- /files/system/sets/Emerald Coast/KEC0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Emerald Coast/KEC0.bin -------------------------------------------------------------------------------- /files/system/sets/Emerald Coast/KEC1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Emerald Coast/KEC1.bin -------------------------------------------------------------------------------- /files/system/sets/Emerald Coast/KEC2.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Emerald Coast/KEC2.BIN -------------------------------------------------------------------------------- /files/system/sets/Emerald Coast/KECE.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Emerald Coast/KECE.bin -------------------------------------------------------------------------------- /files/system/sets/Emerald Coast/MEC0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Emerald Coast/MEC0.bin -------------------------------------------------------------------------------- /files/system/sets/Emerald Coast/MEC1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Emerald Coast/MEC1.bin -------------------------------------------------------------------------------- /files/system/sets/Emerald Coast/MEC2.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Emerald Coast/MEC2.BIN -------------------------------------------------------------------------------- /files/system/sets/Emerald Coast/MECE.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Emerald Coast/MECE.bin -------------------------------------------------------------------------------- /files/system/sets/Emerald Coast/SEC0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Emerald Coast/SEC0.bin -------------------------------------------------------------------------------- /files/system/sets/Emerald Coast/SEC1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Emerald Coast/SEC1.bin -------------------------------------------------------------------------------- /files/system/sets/Emerald Coast/SEC2.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Emerald Coast/SEC2.BIN -------------------------------------------------------------------------------- /files/system/sets/Emerald Coast/SECE.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Emerald Coast/SECE.bin -------------------------------------------------------------------------------- /files/system/sets/Final Egg/AFE0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Final Egg/AFE0.bin -------------------------------------------------------------------------------- /files/system/sets/Final Egg/AFE1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Final Egg/AFE1.bin -------------------------------------------------------------------------------- /files/system/sets/Final Egg/AFE2.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Final Egg/AFE2.BIN -------------------------------------------------------------------------------- /files/system/sets/Final Egg/AFEA.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Final Egg/AFEA.BIN -------------------------------------------------------------------------------- /files/system/sets/Final Egg/AFEG.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Final Egg/AFEG.BIN -------------------------------------------------------------------------------- /files/system/sets/Final Egg/BFE0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Final Egg/BFE0.bin -------------------------------------------------------------------------------- /files/system/sets/Final Egg/BFE1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Final Egg/BFE1.bin -------------------------------------------------------------------------------- /files/system/sets/Final Egg/BFE2.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Final Egg/BFE2.BIN -------------------------------------------------------------------------------- /files/system/sets/Final Egg/BFEA.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Final Egg/BFEA.bin -------------------------------------------------------------------------------- /files/system/sets/Final Egg/BFEG.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Final Egg/BFEG.BIN -------------------------------------------------------------------------------- /files/system/sets/Final Egg/EFE0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Final Egg/EFE0.bin -------------------------------------------------------------------------------- /files/system/sets/Final Egg/EFE1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Final Egg/EFE1.bin -------------------------------------------------------------------------------- /files/system/sets/Final Egg/EFE2.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Final Egg/EFE2.BIN -------------------------------------------------------------------------------- /files/system/sets/Final Egg/EFEA.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Final Egg/EFEA.bin -------------------------------------------------------------------------------- /files/system/sets/Final Egg/EFEG.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Final Egg/EFEG.BIN -------------------------------------------------------------------------------- /files/system/sets/Final Egg/KFE0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Final Egg/KFE0.bin -------------------------------------------------------------------------------- /files/system/sets/Final Egg/KFE1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Final Egg/KFE1.bin -------------------------------------------------------------------------------- /files/system/sets/Final Egg/KFE2.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Final Egg/KFE2.BIN -------------------------------------------------------------------------------- /files/system/sets/Final Egg/KFEA.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Final Egg/KFEA.bin -------------------------------------------------------------------------------- /files/system/sets/Final Egg/KFEG.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Final Egg/KFEG.BIN -------------------------------------------------------------------------------- /files/system/sets/Final Egg/MFE0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Final Egg/MFE0.bin -------------------------------------------------------------------------------- /files/system/sets/Final Egg/MFE1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Final Egg/MFE1.bin -------------------------------------------------------------------------------- /files/system/sets/Final Egg/MFE2.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Final Egg/MFE2.BIN -------------------------------------------------------------------------------- /files/system/sets/Final Egg/MFEA.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Final Egg/MFEA.bin -------------------------------------------------------------------------------- /files/system/sets/Final Egg/MFEG.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Final Egg/MFEG.BIN -------------------------------------------------------------------------------- /files/system/sets/Final Egg/SFE0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Final Egg/SFE0.bin -------------------------------------------------------------------------------- /files/system/sets/Final Egg/SFE1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Final Egg/SFE1.bin -------------------------------------------------------------------------------- /files/system/sets/Final Egg/SFE2.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Final Egg/SFE2.BIN -------------------------------------------------------------------------------- /files/system/sets/Final Egg/SFEA.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Final Egg/SFEA.bin -------------------------------------------------------------------------------- /files/system/sets/Final Egg/SFEG.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Final Egg/SFEG.BIN -------------------------------------------------------------------------------- /files/system/sets/HH.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/HH.BIN -------------------------------------------------------------------------------- /files/system/sets/Hot Shelter/AHS0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Hot Shelter/AHS0.bin -------------------------------------------------------------------------------- /files/system/sets/Hot Shelter/AHS1.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Hot Shelter/AHS1.BIN -------------------------------------------------------------------------------- /files/system/sets/Hot Shelter/AHS2.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Hot Shelter/AHS2.BIN -------------------------------------------------------------------------------- /files/system/sets/Hot Shelter/AHSB.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Hot Shelter/AHSB.BIN -------------------------------------------------------------------------------- /files/system/sets/Hot Shelter/BHS0.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Hot Shelter/BHS0.BIN -------------------------------------------------------------------------------- /files/system/sets/Hot Shelter/BHS1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Hot Shelter/BHS1.bin -------------------------------------------------------------------------------- /files/system/sets/Hot Shelter/BHS2.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Hot Shelter/BHS2.BIN -------------------------------------------------------------------------------- /files/system/sets/Hot Shelter/BHSB.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Hot Shelter/BHSB.BIN -------------------------------------------------------------------------------- /files/system/sets/Hot Shelter/EHS0.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Hot Shelter/EHS0.BIN -------------------------------------------------------------------------------- /files/system/sets/Hot Shelter/EHS1.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Hot Shelter/EHS1.BIN -------------------------------------------------------------------------------- /files/system/sets/Hot Shelter/EHS2.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Hot Shelter/EHS2.BIN -------------------------------------------------------------------------------- /files/system/sets/Hot Shelter/EHSB.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Hot Shelter/EHSB.BIN -------------------------------------------------------------------------------- /files/system/sets/Hot Shelter/KHS0.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Hot Shelter/KHS0.BIN -------------------------------------------------------------------------------- /files/system/sets/Hot Shelter/KHS1.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Hot Shelter/KHS1.BIN -------------------------------------------------------------------------------- /files/system/sets/Hot Shelter/KHS2.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Hot Shelter/KHS2.BIN -------------------------------------------------------------------------------- /files/system/sets/Hot Shelter/KHSB.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Hot Shelter/KHSB.BIN -------------------------------------------------------------------------------- /files/system/sets/Hot Shelter/MHS0.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Hot Shelter/MHS0.BIN -------------------------------------------------------------------------------- /files/system/sets/Hot Shelter/MHS1.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Hot Shelter/MHS1.BIN -------------------------------------------------------------------------------- /files/system/sets/Hot Shelter/MHS2.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Hot Shelter/MHS2.BIN -------------------------------------------------------------------------------- /files/system/sets/Hot Shelter/MHSB.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Hot Shelter/MHSB.BIN -------------------------------------------------------------------------------- /files/system/sets/Hot Shelter/SHS0.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Hot Shelter/SHS0.BIN -------------------------------------------------------------------------------- /files/system/sets/Hot Shelter/SHS1.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Hot Shelter/SHS1.BIN -------------------------------------------------------------------------------- /files/system/sets/Hot Shelter/SHS2.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Hot Shelter/SHS2.BIN -------------------------------------------------------------------------------- /files/system/sets/Hot Shelter/SHSB.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Hot Shelter/SHSB.BIN -------------------------------------------------------------------------------- /files/system/sets/Ice Cap/AIC0.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Ice Cap/AIC0.BIN -------------------------------------------------------------------------------- /files/system/sets/Ice Cap/AIC1.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Ice Cap/AIC1.BIN -------------------------------------------------------------------------------- /files/system/sets/Ice Cap/AIC2.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Ice Cap/AIC2.BIN -------------------------------------------------------------------------------- /files/system/sets/Ice Cap/AIC3.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Ice Cap/AIC3.BIN -------------------------------------------------------------------------------- /files/system/sets/Ice Cap/AICM.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Ice Cap/AICM.bin -------------------------------------------------------------------------------- /files/system/sets/Ice Cap/BIC0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Ice Cap/BIC0.bin -------------------------------------------------------------------------------- /files/system/sets/Ice Cap/BIC1.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Ice Cap/BIC1.BIN -------------------------------------------------------------------------------- /files/system/sets/Ice Cap/BIC2.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Ice Cap/BIC2.BIN -------------------------------------------------------------------------------- /files/system/sets/Ice Cap/BIC3.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Ice Cap/BIC3.BIN -------------------------------------------------------------------------------- /files/system/sets/Ice Cap/BICM.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Ice Cap/BICM.BIN -------------------------------------------------------------------------------- /files/system/sets/Ice Cap/EIC0.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Ice Cap/EIC0.BIN -------------------------------------------------------------------------------- /files/system/sets/Ice Cap/EIC1.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Ice Cap/EIC1.BIN -------------------------------------------------------------------------------- /files/system/sets/Ice Cap/EIC2.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Ice Cap/EIC2.BIN -------------------------------------------------------------------------------- /files/system/sets/Ice Cap/EIC3.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Ice Cap/EIC3.BIN -------------------------------------------------------------------------------- /files/system/sets/Ice Cap/EICM.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Ice Cap/EICM.BIN -------------------------------------------------------------------------------- /files/system/sets/Ice Cap/KIC0.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Ice Cap/KIC0.BIN -------------------------------------------------------------------------------- /files/system/sets/Ice Cap/KIC1.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Ice Cap/KIC1.BIN -------------------------------------------------------------------------------- /files/system/sets/Ice Cap/KIC2.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Ice Cap/KIC2.BIN -------------------------------------------------------------------------------- /files/system/sets/Ice Cap/KIC3.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Ice Cap/KIC3.BIN -------------------------------------------------------------------------------- /files/system/sets/Ice Cap/KICM.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Ice Cap/KICM.BIN -------------------------------------------------------------------------------- /files/system/sets/Ice Cap/MIC0.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Ice Cap/MIC0.BIN -------------------------------------------------------------------------------- /files/system/sets/Ice Cap/MIC1.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Ice Cap/MIC1.BIN -------------------------------------------------------------------------------- /files/system/sets/Ice Cap/MIC2.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Ice Cap/MIC2.BIN -------------------------------------------------------------------------------- /files/system/sets/Ice Cap/MIC3.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Ice Cap/MIC3.BIN -------------------------------------------------------------------------------- /files/system/sets/Ice Cap/MICM.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Ice Cap/MICM.BIN -------------------------------------------------------------------------------- /files/system/sets/Ice Cap/SIC0.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Ice Cap/SIC0.BIN -------------------------------------------------------------------------------- /files/system/sets/Ice Cap/SIC1.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Ice Cap/SIC1.BIN -------------------------------------------------------------------------------- /files/system/sets/Ice Cap/SIC2.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Ice Cap/SIC2.BIN -------------------------------------------------------------------------------- /files/system/sets/Ice Cap/SIC3.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Ice Cap/SIC3.BIN -------------------------------------------------------------------------------- /files/system/sets/Ice Cap/SICM.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Ice Cap/SICM.BIN -------------------------------------------------------------------------------- /files/system/sets/Lost World/ALW0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Lost World/ALW0.bin -------------------------------------------------------------------------------- /files/system/sets/Lost World/ALW1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Lost World/ALW1.bin -------------------------------------------------------------------------------- /files/system/sets/Lost World/ALW2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Lost World/ALW2.bin -------------------------------------------------------------------------------- /files/system/sets/Lost World/ALWK.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Lost World/ALWK.BIN -------------------------------------------------------------------------------- /files/system/sets/Lost World/BLW0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Lost World/BLW0.bin -------------------------------------------------------------------------------- /files/system/sets/Lost World/BLW1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Lost World/BLW1.bin -------------------------------------------------------------------------------- /files/system/sets/Lost World/BLW2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Lost World/BLW2.bin -------------------------------------------------------------------------------- /files/system/sets/Lost World/BLWK.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Lost World/BLWK.BIN -------------------------------------------------------------------------------- /files/system/sets/Lost World/ELW0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Lost World/ELW0.bin -------------------------------------------------------------------------------- /files/system/sets/Lost World/ELW1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Lost World/ELW1.bin -------------------------------------------------------------------------------- /files/system/sets/Lost World/ELW2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Lost World/ELW2.bin -------------------------------------------------------------------------------- /files/system/sets/Lost World/ELWK.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Lost World/ELWK.BIN -------------------------------------------------------------------------------- /files/system/sets/Lost World/KLW0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Lost World/KLW0.bin -------------------------------------------------------------------------------- /files/system/sets/Lost World/KLW1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Lost World/KLW1.bin -------------------------------------------------------------------------------- /files/system/sets/Lost World/KLW2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Lost World/KLW2.bin -------------------------------------------------------------------------------- /files/system/sets/Lost World/KLWK.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Lost World/KLWK.BIN -------------------------------------------------------------------------------- /files/system/sets/Lost World/MLW0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Lost World/MLW0.bin -------------------------------------------------------------------------------- /files/system/sets/Lost World/MLW1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Lost World/MLW1.bin -------------------------------------------------------------------------------- /files/system/sets/Lost World/MLW2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Lost World/MLW2.bin -------------------------------------------------------------------------------- /files/system/sets/Lost World/MLWK.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Lost World/MLWK.BIN -------------------------------------------------------------------------------- /files/system/sets/Lost World/SLW0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Lost World/SLW0.bin -------------------------------------------------------------------------------- /files/system/sets/Lost World/SLW1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Lost World/SLW1.bin -------------------------------------------------------------------------------- /files/system/sets/Lost World/SLW2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Lost World/SLW2.bin -------------------------------------------------------------------------------- /files/system/sets/Lost World/SLWK.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Lost World/SLWK.BIN -------------------------------------------------------------------------------- /files/system/sets/Red Mountain/ARM0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Red Mountain/ARM0.bin -------------------------------------------------------------------------------- /files/system/sets/Red Mountain/ARM1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Red Mountain/ARM1.bin -------------------------------------------------------------------------------- /files/system/sets/Red Mountain/ARM2.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Red Mountain/ARM2.BIN -------------------------------------------------------------------------------- /files/system/sets/Red Mountain/ARMG.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Red Mountain/ARMG.bin -------------------------------------------------------------------------------- /files/system/sets/Red Mountain/BRM0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Red Mountain/BRM0.bin -------------------------------------------------------------------------------- /files/system/sets/Red Mountain/BRM1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Red Mountain/BRM1.bin -------------------------------------------------------------------------------- /files/system/sets/Red Mountain/BRM2.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Red Mountain/BRM2.BIN -------------------------------------------------------------------------------- /files/system/sets/Red Mountain/BRMG.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Red Mountain/BRMG.bin -------------------------------------------------------------------------------- /files/system/sets/Red Mountain/ERM0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Red Mountain/ERM0.bin -------------------------------------------------------------------------------- /files/system/sets/Red Mountain/ERM1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Red Mountain/ERM1.bin -------------------------------------------------------------------------------- /files/system/sets/Red Mountain/ERM2.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Red Mountain/ERM2.BIN -------------------------------------------------------------------------------- /files/system/sets/Red Mountain/ERMG.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Red Mountain/ERMG.bin -------------------------------------------------------------------------------- /files/system/sets/Red Mountain/KRM0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Red Mountain/KRM0.bin -------------------------------------------------------------------------------- /files/system/sets/Red Mountain/KRM1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Red Mountain/KRM1.bin -------------------------------------------------------------------------------- /files/system/sets/Red Mountain/KRM2.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Red Mountain/KRM2.BIN -------------------------------------------------------------------------------- /files/system/sets/Red Mountain/KRMG.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Red Mountain/KRMG.bin -------------------------------------------------------------------------------- /files/system/sets/Red Mountain/MRM0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Red Mountain/MRM0.bin -------------------------------------------------------------------------------- /files/system/sets/Red Mountain/MRM1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Red Mountain/MRM1.bin -------------------------------------------------------------------------------- /files/system/sets/Red Mountain/MRM2.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Red Mountain/MRM2.BIN -------------------------------------------------------------------------------- /files/system/sets/Red Mountain/MRMG.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Red Mountain/MRMG.bin -------------------------------------------------------------------------------- /files/system/sets/Red Mountain/SRM0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Red Mountain/SRM0.bin -------------------------------------------------------------------------------- /files/system/sets/Red Mountain/SRM1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Red Mountain/SRM1.bin -------------------------------------------------------------------------------- /files/system/sets/Red Mountain/SRM2.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Red Mountain/SRM2.BIN -------------------------------------------------------------------------------- /files/system/sets/Red Mountain/SRMG.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Red Mountain/SRMG.bin -------------------------------------------------------------------------------- /files/system/sets/SET1801S.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/SET1801S.BIN -------------------------------------------------------------------------------- /files/system/sets/SETE101RS.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/SETE101RS.BIN -------------------------------------------------------------------------------- /files/system/sets/SETE101S.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/SETE101S.BIN -------------------------------------------------------------------------------- /files/system/sets/SETMCART03S.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/SETMCART03S.BIN -------------------------------------------------------------------------------- /files/system/sets/SETZEROS.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/SETZEROS.BIN -------------------------------------------------------------------------------- /files/system/sets/Sky Deck/ASD0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Sky Deck/ASD0.bin -------------------------------------------------------------------------------- /files/system/sets/Sky Deck/ASD1.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Sky Deck/ASD1.BIN -------------------------------------------------------------------------------- /files/system/sets/Sky Deck/ASD2.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Sky Deck/ASD2.BIN -------------------------------------------------------------------------------- /files/system/sets/Sky Deck/ASDK.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Sky Deck/ASDK.BIN -------------------------------------------------------------------------------- /files/system/sets/Sky Deck/ASDM.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Sky Deck/ASDM.bin -------------------------------------------------------------------------------- /files/system/sets/Sky Deck/BSD0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Sky Deck/BSD0.bin -------------------------------------------------------------------------------- /files/system/sets/Sky Deck/BSD1.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Sky Deck/BSD1.BIN -------------------------------------------------------------------------------- /files/system/sets/Sky Deck/BSD2.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Sky Deck/BSD2.BIN -------------------------------------------------------------------------------- /files/system/sets/Sky Deck/BSDK.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Sky Deck/BSDK.BIN -------------------------------------------------------------------------------- /files/system/sets/Sky Deck/BSDM.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Sky Deck/BSDM.bin -------------------------------------------------------------------------------- /files/system/sets/Sky Deck/ESD0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Sky Deck/ESD0.bin -------------------------------------------------------------------------------- /files/system/sets/Sky Deck/ESD1.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Sky Deck/ESD1.BIN -------------------------------------------------------------------------------- /files/system/sets/Sky Deck/ESD2.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Sky Deck/ESD2.BIN -------------------------------------------------------------------------------- /files/system/sets/Sky Deck/ESDK.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Sky Deck/ESDK.BIN -------------------------------------------------------------------------------- /files/system/sets/Sky Deck/ESDM.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Sky Deck/ESDM.bin -------------------------------------------------------------------------------- /files/system/sets/Sky Deck/KSD0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Sky Deck/KSD0.bin -------------------------------------------------------------------------------- /files/system/sets/Sky Deck/KSD1.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Sky Deck/KSD1.BIN -------------------------------------------------------------------------------- /files/system/sets/Sky Deck/KSD2.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Sky Deck/KSD2.BIN -------------------------------------------------------------------------------- /files/system/sets/Sky Deck/KSDK.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Sky Deck/KSDK.BIN -------------------------------------------------------------------------------- /files/system/sets/Sky Deck/KSDM.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Sky Deck/KSDM.bin -------------------------------------------------------------------------------- /files/system/sets/Sky Deck/MSD0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Sky Deck/MSD0.bin -------------------------------------------------------------------------------- /files/system/sets/Sky Deck/MSD1.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Sky Deck/MSD1.BIN -------------------------------------------------------------------------------- /files/system/sets/Sky Deck/MSD2.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Sky Deck/MSD2.BIN -------------------------------------------------------------------------------- /files/system/sets/Sky Deck/MSDK.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Sky Deck/MSDK.BIN -------------------------------------------------------------------------------- /files/system/sets/Sky Deck/MSDM.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Sky Deck/MSDM.bin -------------------------------------------------------------------------------- /files/system/sets/Sky Deck/SSD0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Sky Deck/SSD0.bin -------------------------------------------------------------------------------- /files/system/sets/Sky Deck/SSD1.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Sky Deck/SSD1.BIN -------------------------------------------------------------------------------- /files/system/sets/Sky Deck/SSD2.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Sky Deck/SSD2.BIN -------------------------------------------------------------------------------- /files/system/sets/Sky Deck/SSDK.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Sky Deck/SSDK.BIN -------------------------------------------------------------------------------- /files/system/sets/Sky Deck/SSDM.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Sky Deck/SSDM.bin -------------------------------------------------------------------------------- /files/system/sets/Speed Highway/ASH0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Speed Highway/ASH0.bin -------------------------------------------------------------------------------- /files/system/sets/Speed Highway/ASH1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Speed Highway/ASH1.bin -------------------------------------------------------------------------------- /files/system/sets/Speed Highway/ASH2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Speed Highway/ASH2.bin -------------------------------------------------------------------------------- /files/system/sets/Speed Highway/ASHK.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Speed Highway/ASHK.bin -------------------------------------------------------------------------------- /files/system/sets/Speed Highway/ASHM.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Speed Highway/ASHM.BIN -------------------------------------------------------------------------------- /files/system/sets/Speed Highway/BSH0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Speed Highway/BSH0.bin -------------------------------------------------------------------------------- /files/system/sets/Speed Highway/BSH1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Speed Highway/BSH1.bin -------------------------------------------------------------------------------- /files/system/sets/Speed Highway/BSH2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Speed Highway/BSH2.bin -------------------------------------------------------------------------------- /files/system/sets/Speed Highway/BSHK.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Speed Highway/BSHK.bin -------------------------------------------------------------------------------- /files/system/sets/Speed Highway/BSHM.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Speed Highway/BSHM.BIN -------------------------------------------------------------------------------- /files/system/sets/Speed Highway/ESH0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Speed Highway/ESH0.bin -------------------------------------------------------------------------------- /files/system/sets/Speed Highway/ESH1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Speed Highway/ESH1.bin -------------------------------------------------------------------------------- /files/system/sets/Speed Highway/ESH2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Speed Highway/ESH2.bin -------------------------------------------------------------------------------- /files/system/sets/Speed Highway/ESHK.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Speed Highway/ESHK.bin -------------------------------------------------------------------------------- /files/system/sets/Speed Highway/ESHM.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Speed Highway/ESHM.BIN -------------------------------------------------------------------------------- /files/system/sets/Speed Highway/KSH0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Speed Highway/KSH0.bin -------------------------------------------------------------------------------- /files/system/sets/Speed Highway/KSH1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Speed Highway/KSH1.bin -------------------------------------------------------------------------------- /files/system/sets/Speed Highway/KSH2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Speed Highway/KSH2.bin -------------------------------------------------------------------------------- /files/system/sets/Speed Highway/KSHK.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Speed Highway/KSHK.BIN -------------------------------------------------------------------------------- /files/system/sets/Speed Highway/KSHM.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Speed Highway/KSHM.BIN -------------------------------------------------------------------------------- /files/system/sets/Speed Highway/MSH0.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Speed Highway/MSH0.BIN -------------------------------------------------------------------------------- /files/system/sets/Speed Highway/MSH1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Speed Highway/MSH1.bin -------------------------------------------------------------------------------- /files/system/sets/Speed Highway/MSH2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Speed Highway/MSH2.bin -------------------------------------------------------------------------------- /files/system/sets/Speed Highway/MSHK.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Speed Highway/MSHK.bin -------------------------------------------------------------------------------- /files/system/sets/Speed Highway/MSHM.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Speed Highway/MSHM.BIN -------------------------------------------------------------------------------- /files/system/sets/Speed Highway/SSH0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Speed Highway/SSH0.bin -------------------------------------------------------------------------------- /files/system/sets/Speed Highway/SSH1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Speed Highway/SSH1.bin -------------------------------------------------------------------------------- /files/system/sets/Speed Highway/SSH2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Speed Highway/SSH2.bin -------------------------------------------------------------------------------- /files/system/sets/Speed Highway/SSHK.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Speed Highway/SSHK.bin -------------------------------------------------------------------------------- /files/system/sets/Speed Highway/SSHM.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Speed Highway/SSHM.bin -------------------------------------------------------------------------------- /files/system/sets/Twinkle Park/ATP0.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Twinkle Park/ATP0.BIN -------------------------------------------------------------------------------- /files/system/sets/Twinkle Park/ATP1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Twinkle Park/ATP1.bin -------------------------------------------------------------------------------- /files/system/sets/Twinkle Park/ATP2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Twinkle Park/ATP2.bin -------------------------------------------------------------------------------- /files/system/sets/Twinkle Park/ATPA.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Twinkle Park/ATPA.BIN -------------------------------------------------------------------------------- /files/system/sets/Twinkle Park/ATPB.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Twinkle Park/ATPB.BIN -------------------------------------------------------------------------------- /files/system/sets/Twinkle Park/BTP0.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Twinkle Park/BTP0.BIN -------------------------------------------------------------------------------- /files/system/sets/Twinkle Park/BTP1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Twinkle Park/BTP1.bin -------------------------------------------------------------------------------- /files/system/sets/Twinkle Park/BTP2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Twinkle Park/BTP2.bin -------------------------------------------------------------------------------- /files/system/sets/Twinkle Park/BTPA.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Twinkle Park/BTPA.bin -------------------------------------------------------------------------------- /files/system/sets/Twinkle Park/BTPB.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Twinkle Park/BTPB.BIN -------------------------------------------------------------------------------- /files/system/sets/Twinkle Park/ETP0.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Twinkle Park/ETP0.BIN -------------------------------------------------------------------------------- /files/system/sets/Twinkle Park/ETP1.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Twinkle Park/ETP1.BIN -------------------------------------------------------------------------------- /files/system/sets/Twinkle Park/ETP2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Twinkle Park/ETP2.bin -------------------------------------------------------------------------------- /files/system/sets/Twinkle Park/ETPA.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Twinkle Park/ETPA.bin -------------------------------------------------------------------------------- /files/system/sets/Twinkle Park/ETPB.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Twinkle Park/ETPB.BIN -------------------------------------------------------------------------------- /files/system/sets/Twinkle Park/KTP0.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Twinkle Park/KTP0.BIN -------------------------------------------------------------------------------- /files/system/sets/Twinkle Park/KTP1.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Twinkle Park/KTP1.BIN -------------------------------------------------------------------------------- /files/system/sets/Twinkle Park/KTP2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Twinkle Park/KTP2.bin -------------------------------------------------------------------------------- /files/system/sets/Twinkle Park/KTPA.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Twinkle Park/KTPA.bin -------------------------------------------------------------------------------- /files/system/sets/Twinkle Park/KTPB.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Twinkle Park/KTPB.BIN -------------------------------------------------------------------------------- /files/system/sets/Twinkle Park/MTP0.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Twinkle Park/MTP0.BIN -------------------------------------------------------------------------------- /files/system/sets/Twinkle Park/MTP1.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Twinkle Park/MTP1.BIN -------------------------------------------------------------------------------- /files/system/sets/Twinkle Park/MTP2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Twinkle Park/MTP2.bin -------------------------------------------------------------------------------- /files/system/sets/Twinkle Park/MTPA.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Twinkle Park/MTPA.bin -------------------------------------------------------------------------------- /files/system/sets/Twinkle Park/MTPB.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Twinkle Park/MTPB.BIN -------------------------------------------------------------------------------- /files/system/sets/Twinkle Park/STP0.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Twinkle Park/STP0.BIN -------------------------------------------------------------------------------- /files/system/sets/Twinkle Park/STP1.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Twinkle Park/STP1.BIN -------------------------------------------------------------------------------- /files/system/sets/Twinkle Park/STP2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Twinkle Park/STP2.bin -------------------------------------------------------------------------------- /files/system/sets/Twinkle Park/STPA.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Twinkle Park/STPA.bin -------------------------------------------------------------------------------- /files/system/sets/Twinkle Park/STPB.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Twinkle Park/STPB.BIN -------------------------------------------------------------------------------- /files/system/sets/Windy Valley/AWV0.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Windy Valley/AWV0.BIN -------------------------------------------------------------------------------- /files/system/sets/Windy Valley/AWV1.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Windy Valley/AWV1.BIN -------------------------------------------------------------------------------- /files/system/sets/Windy Valley/AWV2.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Windy Valley/AWV2.BIN -------------------------------------------------------------------------------- /files/system/sets/Windy Valley/AWVG.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Windy Valley/AWVG.BIN -------------------------------------------------------------------------------- /files/system/sets/Windy Valley/AWVM.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Windy Valley/AWVM.bin -------------------------------------------------------------------------------- /files/system/sets/Windy Valley/BWV0.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Windy Valley/BWV0.BIN -------------------------------------------------------------------------------- /files/system/sets/Windy Valley/BWV1.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Windy Valley/BWV1.BIN -------------------------------------------------------------------------------- /files/system/sets/Windy Valley/BWV2.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Windy Valley/BWV2.BIN -------------------------------------------------------------------------------- /files/system/sets/Windy Valley/BWVG.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Windy Valley/BWVG.BIN -------------------------------------------------------------------------------- /files/system/sets/Windy Valley/BWVM.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Windy Valley/BWVM.bin -------------------------------------------------------------------------------- /files/system/sets/Windy Valley/EWV0.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Windy Valley/EWV0.BIN -------------------------------------------------------------------------------- /files/system/sets/Windy Valley/EWV1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Windy Valley/EWV1.bin -------------------------------------------------------------------------------- /files/system/sets/Windy Valley/EWV2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Windy Valley/EWV2.bin -------------------------------------------------------------------------------- /files/system/sets/Windy Valley/EWVG.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Windy Valley/EWVG.BIN -------------------------------------------------------------------------------- /files/system/sets/Windy Valley/EWVM.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Windy Valley/EWVM.bin -------------------------------------------------------------------------------- /files/system/sets/Windy Valley/KWV0.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Windy Valley/KWV0.BIN -------------------------------------------------------------------------------- /files/system/sets/Windy Valley/KWV1.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Windy Valley/KWV1.BIN -------------------------------------------------------------------------------- /files/system/sets/Windy Valley/KWV2.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Windy Valley/KWV2.BIN -------------------------------------------------------------------------------- /files/system/sets/Windy Valley/KWVG.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Windy Valley/KWVG.BIN -------------------------------------------------------------------------------- /files/system/sets/Windy Valley/KWVM.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Windy Valley/KWVM.bin -------------------------------------------------------------------------------- /files/system/sets/Windy Valley/MWV0.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Windy Valley/MWV0.BIN -------------------------------------------------------------------------------- /files/system/sets/Windy Valley/MWV1.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Windy Valley/MWV1.BIN -------------------------------------------------------------------------------- /files/system/sets/Windy Valley/MWV2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Windy Valley/MWV2.bin -------------------------------------------------------------------------------- /files/system/sets/Windy Valley/MWVG.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Windy Valley/MWVG.BIN -------------------------------------------------------------------------------- /files/system/sets/Windy Valley/MWVM.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Windy Valley/MWVM.bin -------------------------------------------------------------------------------- /files/system/sets/Windy Valley/SWV0.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Windy Valley/SWV0.BIN -------------------------------------------------------------------------------- /files/system/sets/Windy Valley/SWV1.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Windy Valley/SWV1.BIN -------------------------------------------------------------------------------- /files/system/sets/Windy Valley/SWV2.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Windy Valley/SWV2.BIN -------------------------------------------------------------------------------- /files/system/sets/Windy Valley/SWVG.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Windy Valley/SWVG.BIN -------------------------------------------------------------------------------- /files/system/sets/Windy Valley/SWVM.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sets/Windy Valley/SWVM.bin -------------------------------------------------------------------------------- /files/system/songs/NIGHTS_A.ADX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/songs/NIGHTS_A.ADX -------------------------------------------------------------------------------- /files/system/songs/NIGHTS_S.ADX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/songs/NIGHTS_S.ADX -------------------------------------------------------------------------------- /files/system/songs/SONIC_CD.ADX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/songs/SONIC_CD.ADX -------------------------------------------------------------------------------- /files/system/songs/SSRACING.ADX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/songs/SSRACING.ADX -------------------------------------------------------------------------------- /files/system/sounddata/bgm/wma/RandoStats.adx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sounddata/bgm/wma/RandoStats.adx -------------------------------------------------------------------------------- /files/system/sounddata/sounds/1000.adx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sounddata/sounds/1000.adx -------------------------------------------------------------------------------- /files/system/sounddata/sounds/1001.adx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sounddata/sounds/1001.adx -------------------------------------------------------------------------------- /files/system/sounddata/sounds/1002.adx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sounddata/sounds/1002.adx -------------------------------------------------------------------------------- /files/system/sounddata/sounds/1003.adx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sounddata/sounds/1003.adx -------------------------------------------------------------------------------- /files/system/sounddata/sounds/1004.adx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sounddata/sounds/1004.adx -------------------------------------------------------------------------------- /files/system/sounddata/sounds/4000.adx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sounddata/sounds/4000.adx -------------------------------------------------------------------------------- /files/system/sounddata/sounds/4001.adx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sounddata/sounds/4001.adx -------------------------------------------------------------------------------- /files/system/sounddata/sounds/4002.adx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sounddata/sounds/4002.adx -------------------------------------------------------------------------------- /files/system/sounddata/sounds/4003.adx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sounddata/sounds/4003.adx -------------------------------------------------------------------------------- /files/system/sounddata/sounds/4005.adx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sounddata/sounds/4005.adx -------------------------------------------------------------------------------- /files/system/sounddata/sounds/5000.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sounddata/sounds/5000.wav -------------------------------------------------------------------------------- /files/system/sounddata/sounds/6000.adx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sounddata/sounds/6000.adx -------------------------------------------------------------------------------- /files/system/sounddata/sounds/6001.adx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sounddata/sounds/6001.adx -------------------------------------------------------------------------------- /files/system/sounddata/sounds/6002.adx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sounddata/sounds/6002.adx -------------------------------------------------------------------------------- /files/system/sounddata/sounds/6003.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sounddata/sounds/6003.wav -------------------------------------------------------------------------------- /files/system/sounddata/sounds/6004.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sounddata/sounds/6004.wav -------------------------------------------------------------------------------- /files/system/sounddata/sounds/6005.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sounddata/sounds/6005.wav -------------------------------------------------------------------------------- /files/system/sounddata/sounds/6006.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sounddata/sounds/6006.wav -------------------------------------------------------------------------------- /files/system/sounddata/sounds/6007.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/sounddata/sounds/6007.wav -------------------------------------------------------------------------------- /files/system/textures/AVA_GTITLE0_E.PVM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/textures/AVA_GTITLE0_E.PVM -------------------------------------------------------------------------------- /files/system/textures/CON_REGULAR_E_HD.PVMX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/textures/CON_REGULAR_E_HD.PVMX -------------------------------------------------------------------------------- /files/system/textures/ENDBG_SONIC_0_HD.PVMX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/textures/ENDBG_SONIC_0_HD.PVMX -------------------------------------------------------------------------------- /files/system/textures/RACE_HD.pvmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/textures/RACE_HD.pvmx -------------------------------------------------------------------------------- /files/system/textures/WINDY_BACK3.PVM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/textures/WINDY_BACK3.PVM -------------------------------------------------------------------------------- /files/system/voices/BackRingHit.adx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/voices/BackRingHit.adx -------------------------------------------------------------------------------- /files/system/voices/ZeroArm.adx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/voices/ZeroArm.adx -------------------------------------------------------------------------------- /files/system/voices/ZeroHit.adx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/voices/ZeroHit.adx -------------------------------------------------------------------------------- /files/system/voices/ZeroLaser.adx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/voices/ZeroLaser.adx -------------------------------------------------------------------------------- /files/system/voices/ZeroTarget.adx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/voices/ZeroTarget.adx -------------------------------------------------------------------------------- /files/system/voices/ZeroThink.adx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/voices/ZeroThink.adx -------------------------------------------------------------------------------- /files/system/voices/amyyesyes.adx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/voices/amyyesyes.adx -------------------------------------------------------------------------------- /files/system/voices/anyideasonic.adx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/voices/anyideasonic.adx -------------------------------------------------------------------------------- /files/system/voices/b03_00_22.adx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/voices/b03_00_22.adx -------------------------------------------------------------------------------- /files/system/voices/back ring.adx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/voices/back ring.adx -------------------------------------------------------------------------------- /files/system/voices/begone.adx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/voices/begone.adx -------------------------------------------------------------------------------- /files/system/voices/big.adx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/voices/big.adx -------------------------------------------------------------------------------- /files/system/voices/biggotit.adx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/voices/biggotit.adx -------------------------------------------------------------------------------- /files/system/voices/bighehe.adx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/voices/bighehe.adx -------------------------------------------------------------------------------- /files/system/voices/bigvictory.adx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/voices/bigvictory.adx -------------------------------------------------------------------------------- /files/system/voices/bigwouhou.adx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/voices/bigwouhou.adx -------------------------------------------------------------------------------- /files/system/voices/bounce.adx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/voices/bounce.adx -------------------------------------------------------------------------------- /files/system/voices/caughup.adx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/voices/caughup.adx -------------------------------------------------------------------------------- /files/system/voices/chaocry1.adx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/voices/chaocry1.adx -------------------------------------------------------------------------------- /files/system/voices/chaocry2.adx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/voices/chaocry2.adx -------------------------------------------------------------------------------- /files/system/voices/congratulations_amy.adx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/voices/congratulations_amy.adx -------------------------------------------------------------------------------- /files/system/voices/congratulations_knux.adx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/voices/congratulations_knux.adx -------------------------------------------------------------------------------- /files/system/voices/congratulations_sonic.adx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/voices/congratulations_sonic.adx -------------------------------------------------------------------------------- /files/system/voices/congratulations_tails.adx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/voices/congratulations_tails.adx -------------------------------------------------------------------------------- /files/system/voices/dontgiveup.adx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/voices/dontgiveup.adx -------------------------------------------------------------------------------- /files/system/voices/eggmannowyouknow.adx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/voices/eggmannowyouknow.adx -------------------------------------------------------------------------------- /files/system/voices/eggmanyosh.adx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/voices/eggmanyosh.adx -------------------------------------------------------------------------------- /files/system/voices/gammagetitem.adx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/voices/gammagetitem.adx -------------------------------------------------------------------------------- /files/system/voices/giveupamy_424.adx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/voices/giveupamy_424.adx -------------------------------------------------------------------------------- /files/system/voices/giveuptails.adx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/voices/giveuptails.adx -------------------------------------------------------------------------------- /files/system/voices/goingamy.adx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/voices/goingamy.adx -------------------------------------------------------------------------------- /files/system/voices/haha_sonic.adx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/voices/haha_sonic.adx -------------------------------------------------------------------------------- /files/system/voices/keepup.adx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/voices/keepup.adx -------------------------------------------------------------------------------- /files/system/voices/knuckles.adx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/voices/knuckles.adx -------------------------------------------------------------------------------- /files/system/voices/nope.adx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/voices/nope.adx -------------------------------------------------------------------------------- /files/system/voices/notez.adx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/voices/notez.adx -------------------------------------------------------------------------------- /files/system/voices/nouse.adx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/voices/nouse.adx -------------------------------------------------------------------------------- /files/system/voices/noway.adx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/voices/noway.adx -------------------------------------------------------------------------------- /files/system/voices/teleport.adx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/voices/teleport.adx -------------------------------------------------------------------------------- /files/system/voices/useless.adx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/voices/useless.adx -------------------------------------------------------------------------------- /files/system/voices/youthought.adx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/system/voices/youthought.adx -------------------------------------------------------------------------------- /files/textures/BACKRING.pvmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/textures/BACKRING.pvmx -------------------------------------------------------------------------------- /files/textures/Missions.pvmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/textures/Missions.pvmx -------------------------------------------------------------------------------- /files/textures/RandomTitleCard.pvmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/textures/RandomTitleCard.pvmx -------------------------------------------------------------------------------- /files/textures/common-obj.pvmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/textures/common-obj.pvmx -------------------------------------------------------------------------------- /files/textures/hud_rando.pvmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/files/textures/hud_rando.pvmx -------------------------------------------------------------------------------- /sadx-randomizer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer.sln -------------------------------------------------------------------------------- /sadx-randomizer/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/.gitattributes -------------------------------------------------------------------------------- /sadx-randomizer/00_HedgehogHammer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/00_HedgehogHammer.cpp -------------------------------------------------------------------------------- /sadx-randomizer/01_EmeraldCoast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/01_EmeraldCoast.cpp -------------------------------------------------------------------------------- /sadx-randomizer/02_WindyValley.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/02_WindyValley.cpp -------------------------------------------------------------------------------- /sadx-randomizer/03_TwinklePark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/03_TwinklePark.cpp -------------------------------------------------------------------------------- /sadx-randomizer/04_SpeedHighway.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/04_SpeedHighway.cpp -------------------------------------------------------------------------------- /sadx-randomizer/05_RedMountain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/05_RedMountain.cpp -------------------------------------------------------------------------------- /sadx-randomizer/06_SkyDeck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/06_SkyDeck.cpp -------------------------------------------------------------------------------- /sadx-randomizer/07_LostWorld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/07_LostWorld.cpp -------------------------------------------------------------------------------- /sadx-randomizer/08_IceCap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/08_IceCap.cpp -------------------------------------------------------------------------------- /sadx-randomizer/09_Casino.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/09_Casino.cpp -------------------------------------------------------------------------------- /sadx-randomizer/10_FinalEgg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/10_FinalEgg.cpp -------------------------------------------------------------------------------- /sadx-randomizer/12_HotShelter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/12_HotShelter.cpp -------------------------------------------------------------------------------- /sadx-randomizer/35_TwinkleCircuit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/35_TwinkleCircuit.cpp -------------------------------------------------------------------------------- /sadx-randomizer/38_SandHill.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/38_SandHill.cpp -------------------------------------------------------------------------------- /sadx-randomizer/AISettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/AISettings.cpp -------------------------------------------------------------------------------- /sadx-randomizer/AdventureFlags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/AdventureFlags.cpp -------------------------------------------------------------------------------- /sadx-randomizer/BackRing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/BackRing.cpp -------------------------------------------------------------------------------- /sadx-randomizer/Chao.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/Chao.cpp -------------------------------------------------------------------------------- /sadx-randomizer/Chaos0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/Chaos0.cpp -------------------------------------------------------------------------------- /sadx-randomizer/Chaos2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/Chaos2.cpp -------------------------------------------------------------------------------- /sadx-randomizer/Chaos4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/Chaos4.cpp -------------------------------------------------------------------------------- /sadx-randomizer/Chaos6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/Chaos6.cpp -------------------------------------------------------------------------------- /sadx-randomizer/CharactersSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/CharactersSettings.cpp -------------------------------------------------------------------------------- /sadx-randomizer/Common_Startup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/Common_Startup.cpp -------------------------------------------------------------------------------- /sadx-randomizer/Cutscene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/Cutscene.cpp -------------------------------------------------------------------------------- /sadx-randomizer/E100-series.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/E100-series.cpp -------------------------------------------------------------------------------- /sadx-randomizer/EC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/EC.h -------------------------------------------------------------------------------- /sadx-randomizer/EggHornet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/EggHornet.cpp -------------------------------------------------------------------------------- /sadx-randomizer/EggViper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/EggViper.cpp -------------------------------------------------------------------------------- /sadx-randomizer/EggWalker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/EggWalker.cpp -------------------------------------------------------------------------------- /sadx-randomizer/Level.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/Level.cpp -------------------------------------------------------------------------------- /sadx-randomizer/Missions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/Missions.cpp -------------------------------------------------------------------------------- /sadx-randomizer/Mod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/Mod.cpp -------------------------------------------------------------------------------- /sadx-randomizer/Music.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/Music.cpp -------------------------------------------------------------------------------- /sadx-randomizer/ObjectCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/ObjectCommon.cpp -------------------------------------------------------------------------------- /sadx-randomizer/PerfectChaos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/PerfectChaos.cpp -------------------------------------------------------------------------------- /sadx-randomizer/Race.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/Race.cpp -------------------------------------------------------------------------------- /sadx-randomizer/Randomizer_Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/Randomizer_Main.cpp -------------------------------------------------------------------------------- /sadx-randomizer/ResultScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/ResultScreen.cpp -------------------------------------------------------------------------------- /sadx-randomizer/SetCamFiles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/SetCamFiles.cpp -------------------------------------------------------------------------------- /sadx-randomizer/SuperSonic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/SuperSonic.cpp -------------------------------------------------------------------------------- /sadx-randomizer/TreasureHunting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/TreasureHunting.cpp -------------------------------------------------------------------------------- /sadx-randomizer/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/Utils.cpp -------------------------------------------------------------------------------- /sadx-randomizer/Voices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/Voices.cpp -------------------------------------------------------------------------------- /sadx-randomizer/Zero-chase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/Zero-chase.cpp -------------------------------------------------------------------------------- /sadx-randomizer/Zero.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/Zero.cpp -------------------------------------------------------------------------------- /sadx-randomizer/cart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/cart.cpp -------------------------------------------------------------------------------- /sadx-randomizer/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/changelog.txt -------------------------------------------------------------------------------- /sadx-randomizer/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/config.cpp -------------------------------------------------------------------------------- /sadx-randomizer/credits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/credits.cpp -------------------------------------------------------------------------------- /sadx-randomizer/data/Cas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/data/Cas.h -------------------------------------------------------------------------------- /sadx-randomizer/data/Chaos0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/data/Chaos0.h -------------------------------------------------------------------------------- /sadx-randomizer/data/Chaos2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/data/Chaos2.h -------------------------------------------------------------------------------- /sadx-randomizer/data/Chaos4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/data/Chaos4.h -------------------------------------------------------------------------------- /sadx-randomizer/data/Chaos6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/data/Chaos6.h -------------------------------------------------------------------------------- /sadx-randomizer/data/CharactersSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/data/CharactersSettings.h -------------------------------------------------------------------------------- /sadx-randomizer/data/Credits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/data/Credits.h -------------------------------------------------------------------------------- /sadx-randomizer/data/Cutscene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/data/Cutscene.h -------------------------------------------------------------------------------- /sadx-randomizer/data/E101.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/data/E101.h -------------------------------------------------------------------------------- /sadx-randomizer/data/EggHornet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/data/EggHornet.h -------------------------------------------------------------------------------- /sadx-randomizer/data/EggViper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/data/EggViper.h -------------------------------------------------------------------------------- /sadx-randomizer/data/EggWalker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/data/EggWalker.h -------------------------------------------------------------------------------- /sadx-randomizer/data/FE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/data/FE.h -------------------------------------------------------------------------------- /sadx-randomizer/data/HS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/data/HS.h -------------------------------------------------------------------------------- /sadx-randomizer/data/IceCap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/data/IceCap.h -------------------------------------------------------------------------------- /sadx-randomizer/data/LW.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/data/LW.h -------------------------------------------------------------------------------- /sadx-randomizer/data/RM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/data/RM.h -------------------------------------------------------------------------------- /sadx-randomizer/data/RandomHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/data/RandomHelpers.h -------------------------------------------------------------------------------- /sadx-randomizer/data/SADXFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/data/SADXFunctions.h -------------------------------------------------------------------------------- /sadx-randomizer/data/SADXVariables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/data/SADXVariables.h -------------------------------------------------------------------------------- /sadx-randomizer/data/SD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/data/SD.h -------------------------------------------------------------------------------- /sadx-randomizer/data/SH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/data/SH.h -------------------------------------------------------------------------------- /sadx-randomizer/data/SandHill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/data/SandHill.h -------------------------------------------------------------------------------- /sadx-randomizer/data/StageSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/data/StageSettings.h -------------------------------------------------------------------------------- /sadx-randomizer/data/TP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/data/TP.h -------------------------------------------------------------------------------- /sadx-randomizer/data/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/data/Utils.h -------------------------------------------------------------------------------- /sadx-randomizer/data/WV.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/data/WV.h -------------------------------------------------------------------------------- /sadx-randomizer/data/Zero.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/data/Zero.h -------------------------------------------------------------------------------- /sadx-randomizer/data/chao.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/data/chao.h -------------------------------------------------------------------------------- /sadx-randomizer/data/hud.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/data/hud.h -------------------------------------------------------------------------------- /sadx-randomizer/data/level.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/data/level.h -------------------------------------------------------------------------------- /sadx-randomizer/data/mission.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/data/mission.h -------------------------------------------------------------------------------- /sadx-randomizer/data/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/data/resource.h -------------------------------------------------------------------------------- /sadx-randomizer/data/resource1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/data/resource1.h -------------------------------------------------------------------------------- /sadx-randomizer/data/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/data/sound.h -------------------------------------------------------------------------------- /sadx-randomizer/data/startup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/data/startup.h -------------------------------------------------------------------------------- /sadx-randomizer/data/subtitles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/data/subtitles.h -------------------------------------------------------------------------------- /sadx-randomizer/e101.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/e101.cpp -------------------------------------------------------------------------------- /sadx-randomizer/enemy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/enemy.cpp -------------------------------------------------------------------------------- /sadx-randomizer/enemy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/enemy.h -------------------------------------------------------------------------------- /sadx-randomizer/hud.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/hud.cpp -------------------------------------------------------------------------------- /sadx-randomizer/multiapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/multiapi.h -------------------------------------------------------------------------------- /sadx-randomizer/mystic-melody.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/mystic-melody.cpp -------------------------------------------------------------------------------- /sadx-randomizer/nlohmann/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/nlohmann/json.hpp -------------------------------------------------------------------------------- /sadx-randomizer/objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/objects.h -------------------------------------------------------------------------------- /sadx-randomizer/sadx-randomizer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/sadx-randomizer.vcxproj -------------------------------------------------------------------------------- /sadx-randomizer/sadx-randomizer.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/sadx-randomizer.vcxproj.filters -------------------------------------------------------------------------------- /sadx-randomizer/sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/sound.cpp -------------------------------------------------------------------------------- /sadx-randomizer/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/stdafx.cpp -------------------------------------------------------------------------------- /sadx-randomizer/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/stdafx.h -------------------------------------------------------------------------------- /sadx-randomizer/subtitles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sora-yx/SADX-Randomizer/HEAD/sadx-randomizer/subtitles.cpp -------------------------------------------------------------------------------- /sadx-randomizer/targetver.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include --------------------------------------------------------------------------------