├── LICENSE ├── README.md └── src ├── Difficulty.java ├── GUI.java ├── Items.java ├── META-INF └── MANIFEST.MF ├── Main.java ├── Patcher.java ├── SpoilerLog.java ├── baseDiff.json ├── cutSkipPatch.json ├── hintsPatch.json ├── keyshuffle ├── KeyLocation.java ├── Level.java ├── keyLocations.json ├── keyLocations_vanilla.json └── keyShufflePatch.json ├── mapShufflePatch.json └── powerPatch.json /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronDobbe/wl3-randomizer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronDobbe/wl3-randomizer/HEAD/README.md -------------------------------------------------------------------------------- /src/Difficulty.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronDobbe/wl3-randomizer/HEAD/src/Difficulty.java -------------------------------------------------------------------------------- /src/GUI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronDobbe/wl3-randomizer/HEAD/src/GUI.java -------------------------------------------------------------------------------- /src/Items.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronDobbe/wl3-randomizer/HEAD/src/Items.java -------------------------------------------------------------------------------- /src/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronDobbe/wl3-randomizer/HEAD/src/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /src/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronDobbe/wl3-randomizer/HEAD/src/Main.java -------------------------------------------------------------------------------- /src/Patcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronDobbe/wl3-randomizer/HEAD/src/Patcher.java -------------------------------------------------------------------------------- /src/SpoilerLog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronDobbe/wl3-randomizer/HEAD/src/SpoilerLog.java -------------------------------------------------------------------------------- /src/baseDiff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronDobbe/wl3-randomizer/HEAD/src/baseDiff.json -------------------------------------------------------------------------------- /src/cutSkipPatch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronDobbe/wl3-randomizer/HEAD/src/cutSkipPatch.json -------------------------------------------------------------------------------- /src/hintsPatch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronDobbe/wl3-randomizer/HEAD/src/hintsPatch.json -------------------------------------------------------------------------------- /src/keyshuffle/KeyLocation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronDobbe/wl3-randomizer/HEAD/src/keyshuffle/KeyLocation.java -------------------------------------------------------------------------------- /src/keyshuffle/Level.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronDobbe/wl3-randomizer/HEAD/src/keyshuffle/Level.java -------------------------------------------------------------------------------- /src/keyshuffle/keyLocations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronDobbe/wl3-randomizer/HEAD/src/keyshuffle/keyLocations.json -------------------------------------------------------------------------------- /src/keyshuffle/keyLocations_vanilla.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronDobbe/wl3-randomizer/HEAD/src/keyshuffle/keyLocations_vanilla.json -------------------------------------------------------------------------------- /src/keyshuffle/keyShufflePatch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronDobbe/wl3-randomizer/HEAD/src/keyshuffle/keyShufflePatch.json -------------------------------------------------------------------------------- /src/mapShufflePatch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronDobbe/wl3-randomizer/HEAD/src/mapShufflePatch.json -------------------------------------------------------------------------------- /src/powerPatch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronDobbe/wl3-randomizer/HEAD/src/powerPatch.json --------------------------------------------------------------------------------