├── .gitattributes ├── .github └── workflows │ └── main.yml ├── .gitignore ├── LICENSE ├── README.md ├── Randomizer.sln ├── Randomizer ├── Builder.cs ├── Config │ └── Celeste │ │ ├── 0-Intro.rando.yaml │ │ ├── 1-ForsakenCity.rando.yaml │ │ ├── 2-OldSite.rando.yaml │ │ ├── 3-CelestialResort.rando.yaml │ │ ├── 4-GoldenRidge.rando.yaml │ │ ├── 5-MirrorTemple.rando.yaml │ │ ├── 6-Reflection.rando.yaml │ │ ├── 7-Summit.rando.yaml │ │ ├── 8-Epilogue.rando.yaml │ │ ├── 9-Core.rando.yaml │ │ ├── LostLevels.rando.yaml │ │ └── rando.yaml ├── DeepCopy.cs ├── Deque.cs ├── Dialog │ ├── English.txt │ ├── German.txt │ └── Spanish.txt ├── Entities │ ├── ActivateSwitches.cs │ ├── FindTheoPhone.cs │ └── LifeBerry.cs ├── Graphics │ ├── Atlases │ │ ├── Gameplay │ │ │ └── collectables │ │ │ │ └── RecoloredHearts │ │ │ │ ├── easy00.png │ │ │ │ ├── easy01.png │ │ │ │ ├── easy02.png │ │ │ │ ├── easy03.png │ │ │ │ ├── easy04.png │ │ │ │ ├── easy05.png │ │ │ │ ├── easy06.png │ │ │ │ ├── easy07.png │ │ │ │ ├── easy08.png │ │ │ │ ├── easy09.png │ │ │ │ ├── easy10.png │ │ │ │ ├── easy11.png │ │ │ │ ├── easy12.png │ │ │ │ ├── easy13.png │ │ │ │ ├── expert00.png │ │ │ │ ├── expert01.png │ │ │ │ ├── expert02.png │ │ │ │ ├── expert03.png │ │ │ │ ├── expert04.png │ │ │ │ ├── expert05.png │ │ │ │ ├── expert06.png │ │ │ │ ├── expert07.png │ │ │ │ ├── expert08.png │ │ │ │ ├── expert09.png │ │ │ │ ├── expert10.png │ │ │ │ ├── expert11.png │ │ │ │ ├── expert12.png │ │ │ │ ├── expert13.png │ │ │ │ ├── perfect00.png │ │ │ │ ├── perfect01.png │ │ │ │ ├── perfect02.png │ │ │ │ ├── perfect03.png │ │ │ │ ├── perfect04.png │ │ │ │ ├── perfect05.png │ │ │ │ ├── perfect06.png │ │ │ │ ├── perfect07.png │ │ │ │ ├── perfect08.png │ │ │ │ ├── perfect09.png │ │ │ │ ├── perfect10.png │ │ │ │ ├── perfect11.png │ │ │ │ ├── perfect12.png │ │ │ │ └── perfect13.png │ │ └── Gui │ │ │ ├── collectables │ │ │ └── recoloredHearts │ │ │ │ ├── master │ │ │ │ ├── spin00.png │ │ │ │ ├── spin01.png │ │ │ │ ├── spin02.png │ │ │ │ ├── spin03.png │ │ │ │ ├── spin04.png │ │ │ │ ├── spin05.png │ │ │ │ ├── spin06.png │ │ │ │ ├── spin07.png │ │ │ │ ├── spin08.png │ │ │ │ ├── spin09.png │ │ │ │ └── spin10.png │ │ │ │ └── perfect │ │ │ │ ├── spin00.png │ │ │ │ ├── spin01.png │ │ │ │ ├── spin02.png │ │ │ │ ├── spin03.png │ │ │ │ ├── spin04.png │ │ │ │ ├── spin05.png │ │ │ │ ├── spin06.png │ │ │ │ ├── spin07.png │ │ │ │ ├── spin08.png │ │ │ │ ├── spin09.png │ │ │ │ └── spin10.png │ │ │ └── menu │ │ │ ├── endless_icon.png │ │ │ ├── labyrinth_icon.png │ │ │ ├── maps.xcf │ │ │ ├── pathway_icon.png │ │ │ ├── poemArrow.png │ │ │ ├── randomizer.png │ │ │ └── skulls │ │ │ ├── skullBlue.png │ │ │ ├── skullGold.png │ │ │ ├── skullOrange.png │ │ │ ├── skullPurple.png │ │ │ ├── skullRed.png │ │ │ └── strawberry.png │ ├── Sprites.xml │ └── SpritesGui.xml ├── Interoperability │ ├── GenerationInterop.cs │ ├── InteropHelper.cs │ └── SettingsInterop.cs ├── Oui │ ├── GenericOui.cs │ ├── OuiRandoDifficulty.cs │ ├── OuiRandoMode.cs │ ├── OuiRandoRecords.cs │ └── OuiRandoSettings.cs ├── Patches │ ├── mechanics.cs │ ├── menuLifecycle.cs │ ├── qol.cs │ └── sessionLifecycle.cs ├── PriorityQueue.cs ├── Properties │ └── AssemblyInfo.cs ├── RandoConfigFile.cs ├── RandoLogic │ ├── Hole.cs │ ├── LinkedRoom.cs │ ├── LogicLabyrinth.cs │ ├── LogicPathway.cs │ ├── ProcessAreas.cs │ ├── RandoLogic.cs │ ├── RandoTask.cs │ ├── Receipt.cs │ ├── Requirements.cs │ ├── ScreenDirection.cs │ └── StaticRoom.cs ├── RandoModule.cs ├── RandoModuleSettings.cs ├── RandoSettings.cs ├── Randomizer.csproj ├── everest.yaml └── packages.config ├── bundle.sh ├── docs ├── img │ ├── ahorn_1.png │ ├── ahorn_2.png │ ├── ahorn_3.png │ ├── ahorn_4.png │ ├── debug.png │ ├── gameplay.png │ ├── launch.png │ └── settings.png └── metadata.md └── packages └── lib-stripped ├── Celeste.exe ├── FNA.dll ├── MMHOOK_Celeste.dll ├── Mono.Cecil.Mdb.dll ├── Mono.Cecil.Pdb.dll ├── Mono.Cecil.Rocks.dll ├── Mono.Cecil.dll ├── MonoMod.RuntimeDetour.dll ├── MonoMod.Utils.dll └── YamlDotNet.dll /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/README.md -------------------------------------------------------------------------------- /Randomizer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer.sln -------------------------------------------------------------------------------- /Randomizer/Builder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Builder.cs -------------------------------------------------------------------------------- /Randomizer/Config/Celeste/0-Intro.rando.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Config/Celeste/0-Intro.rando.yaml -------------------------------------------------------------------------------- /Randomizer/Config/Celeste/1-ForsakenCity.rando.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Config/Celeste/1-ForsakenCity.rando.yaml -------------------------------------------------------------------------------- /Randomizer/Config/Celeste/2-OldSite.rando.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Config/Celeste/2-OldSite.rando.yaml -------------------------------------------------------------------------------- /Randomizer/Config/Celeste/3-CelestialResort.rando.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Config/Celeste/3-CelestialResort.rando.yaml -------------------------------------------------------------------------------- /Randomizer/Config/Celeste/4-GoldenRidge.rando.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Config/Celeste/4-GoldenRidge.rando.yaml -------------------------------------------------------------------------------- /Randomizer/Config/Celeste/5-MirrorTemple.rando.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Config/Celeste/5-MirrorTemple.rando.yaml -------------------------------------------------------------------------------- /Randomizer/Config/Celeste/6-Reflection.rando.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Config/Celeste/6-Reflection.rando.yaml -------------------------------------------------------------------------------- /Randomizer/Config/Celeste/7-Summit.rando.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Config/Celeste/7-Summit.rando.yaml -------------------------------------------------------------------------------- /Randomizer/Config/Celeste/8-Epilogue.rando.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Config/Celeste/8-Epilogue.rando.yaml -------------------------------------------------------------------------------- /Randomizer/Config/Celeste/9-Core.rando.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Config/Celeste/9-Core.rando.yaml -------------------------------------------------------------------------------- /Randomizer/Config/Celeste/LostLevels.rando.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Config/Celeste/LostLevels.rando.yaml -------------------------------------------------------------------------------- /Randomizer/Config/Celeste/rando.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Config/Celeste/rando.yaml -------------------------------------------------------------------------------- /Randomizer/DeepCopy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/DeepCopy.cs -------------------------------------------------------------------------------- /Randomizer/Deque.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Deque.cs -------------------------------------------------------------------------------- /Randomizer/Dialog/English.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Dialog/English.txt -------------------------------------------------------------------------------- /Randomizer/Dialog/German.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Dialog/German.txt -------------------------------------------------------------------------------- /Randomizer/Dialog/Spanish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Dialog/Spanish.txt -------------------------------------------------------------------------------- /Randomizer/Entities/ActivateSwitches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Entities/ActivateSwitches.cs -------------------------------------------------------------------------------- /Randomizer/Entities/FindTheoPhone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Entities/FindTheoPhone.cs -------------------------------------------------------------------------------- /Randomizer/Entities/LifeBerry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Entities/LifeBerry.cs -------------------------------------------------------------------------------- /Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/easy00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/easy00.png -------------------------------------------------------------------------------- /Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/easy01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/easy01.png -------------------------------------------------------------------------------- /Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/easy02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/easy02.png -------------------------------------------------------------------------------- /Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/easy03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/easy03.png -------------------------------------------------------------------------------- /Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/easy04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/easy04.png -------------------------------------------------------------------------------- /Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/easy05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/easy05.png -------------------------------------------------------------------------------- /Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/easy06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/easy06.png -------------------------------------------------------------------------------- /Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/easy07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/easy07.png -------------------------------------------------------------------------------- /Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/easy08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/easy08.png -------------------------------------------------------------------------------- /Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/easy09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/easy09.png -------------------------------------------------------------------------------- /Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/easy10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/easy10.png -------------------------------------------------------------------------------- /Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/easy11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/easy11.png -------------------------------------------------------------------------------- /Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/easy12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/easy12.png -------------------------------------------------------------------------------- /Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/easy13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/easy13.png -------------------------------------------------------------------------------- /Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/expert00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/expert00.png -------------------------------------------------------------------------------- /Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/expert01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/expert01.png -------------------------------------------------------------------------------- /Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/expert02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/expert02.png -------------------------------------------------------------------------------- /Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/expert03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/expert03.png -------------------------------------------------------------------------------- /Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/expert04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/expert04.png -------------------------------------------------------------------------------- /Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/expert05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/expert05.png -------------------------------------------------------------------------------- /Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/expert06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/expert06.png -------------------------------------------------------------------------------- /Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/expert07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/expert07.png -------------------------------------------------------------------------------- /Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/expert08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/expert08.png -------------------------------------------------------------------------------- /Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/expert09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/expert09.png -------------------------------------------------------------------------------- /Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/expert10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/expert10.png -------------------------------------------------------------------------------- /Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/expert11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/expert11.png -------------------------------------------------------------------------------- /Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/expert12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/expert12.png -------------------------------------------------------------------------------- /Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/expert13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/expert13.png -------------------------------------------------------------------------------- /Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/perfect00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/perfect00.png -------------------------------------------------------------------------------- /Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/perfect01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/perfect01.png -------------------------------------------------------------------------------- /Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/perfect02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/perfect02.png -------------------------------------------------------------------------------- /Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/perfect03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/perfect03.png -------------------------------------------------------------------------------- /Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/perfect04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/perfect04.png -------------------------------------------------------------------------------- /Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/perfect05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/perfect05.png -------------------------------------------------------------------------------- /Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/perfect06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/perfect06.png -------------------------------------------------------------------------------- /Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/perfect07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/perfect07.png -------------------------------------------------------------------------------- /Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/perfect08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/perfect08.png -------------------------------------------------------------------------------- /Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/perfect09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/perfect09.png -------------------------------------------------------------------------------- /Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/perfect10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/perfect10.png -------------------------------------------------------------------------------- /Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/perfect11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/perfect11.png -------------------------------------------------------------------------------- /Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/perfect12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/perfect12.png -------------------------------------------------------------------------------- /Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/perfect13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/Atlases/Gameplay/collectables/RecoloredHearts/perfect13.png -------------------------------------------------------------------------------- /Randomizer/Graphics/Atlases/Gui/collectables/recoloredHearts/master/spin00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/Atlases/Gui/collectables/recoloredHearts/master/spin00.png -------------------------------------------------------------------------------- /Randomizer/Graphics/Atlases/Gui/collectables/recoloredHearts/master/spin01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/Atlases/Gui/collectables/recoloredHearts/master/spin01.png -------------------------------------------------------------------------------- /Randomizer/Graphics/Atlases/Gui/collectables/recoloredHearts/master/spin02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/Atlases/Gui/collectables/recoloredHearts/master/spin02.png -------------------------------------------------------------------------------- /Randomizer/Graphics/Atlases/Gui/collectables/recoloredHearts/master/spin03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/Atlases/Gui/collectables/recoloredHearts/master/spin03.png -------------------------------------------------------------------------------- /Randomizer/Graphics/Atlases/Gui/collectables/recoloredHearts/master/spin04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/Atlases/Gui/collectables/recoloredHearts/master/spin04.png -------------------------------------------------------------------------------- /Randomizer/Graphics/Atlases/Gui/collectables/recoloredHearts/master/spin05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/Atlases/Gui/collectables/recoloredHearts/master/spin05.png -------------------------------------------------------------------------------- /Randomizer/Graphics/Atlases/Gui/collectables/recoloredHearts/master/spin06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/Atlases/Gui/collectables/recoloredHearts/master/spin06.png -------------------------------------------------------------------------------- /Randomizer/Graphics/Atlases/Gui/collectables/recoloredHearts/master/spin07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/Atlases/Gui/collectables/recoloredHearts/master/spin07.png -------------------------------------------------------------------------------- /Randomizer/Graphics/Atlases/Gui/collectables/recoloredHearts/master/spin08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/Atlases/Gui/collectables/recoloredHearts/master/spin08.png -------------------------------------------------------------------------------- /Randomizer/Graphics/Atlases/Gui/collectables/recoloredHearts/master/spin09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/Atlases/Gui/collectables/recoloredHearts/master/spin09.png -------------------------------------------------------------------------------- /Randomizer/Graphics/Atlases/Gui/collectables/recoloredHearts/master/spin10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/Atlases/Gui/collectables/recoloredHearts/master/spin10.png -------------------------------------------------------------------------------- /Randomizer/Graphics/Atlases/Gui/collectables/recoloredHearts/perfect/spin00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/Atlases/Gui/collectables/recoloredHearts/perfect/spin00.png -------------------------------------------------------------------------------- /Randomizer/Graphics/Atlases/Gui/collectables/recoloredHearts/perfect/spin01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/Atlases/Gui/collectables/recoloredHearts/perfect/spin01.png -------------------------------------------------------------------------------- /Randomizer/Graphics/Atlases/Gui/collectables/recoloredHearts/perfect/spin02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/Atlases/Gui/collectables/recoloredHearts/perfect/spin02.png -------------------------------------------------------------------------------- /Randomizer/Graphics/Atlases/Gui/collectables/recoloredHearts/perfect/spin03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/Atlases/Gui/collectables/recoloredHearts/perfect/spin03.png -------------------------------------------------------------------------------- /Randomizer/Graphics/Atlases/Gui/collectables/recoloredHearts/perfect/spin04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/Atlases/Gui/collectables/recoloredHearts/perfect/spin04.png -------------------------------------------------------------------------------- /Randomizer/Graphics/Atlases/Gui/collectables/recoloredHearts/perfect/spin05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/Atlases/Gui/collectables/recoloredHearts/perfect/spin05.png -------------------------------------------------------------------------------- /Randomizer/Graphics/Atlases/Gui/collectables/recoloredHearts/perfect/spin06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/Atlases/Gui/collectables/recoloredHearts/perfect/spin06.png -------------------------------------------------------------------------------- /Randomizer/Graphics/Atlases/Gui/collectables/recoloredHearts/perfect/spin07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/Atlases/Gui/collectables/recoloredHearts/perfect/spin07.png -------------------------------------------------------------------------------- /Randomizer/Graphics/Atlases/Gui/collectables/recoloredHearts/perfect/spin08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/Atlases/Gui/collectables/recoloredHearts/perfect/spin08.png -------------------------------------------------------------------------------- /Randomizer/Graphics/Atlases/Gui/collectables/recoloredHearts/perfect/spin09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/Atlases/Gui/collectables/recoloredHearts/perfect/spin09.png -------------------------------------------------------------------------------- /Randomizer/Graphics/Atlases/Gui/collectables/recoloredHearts/perfect/spin10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/Atlases/Gui/collectables/recoloredHearts/perfect/spin10.png -------------------------------------------------------------------------------- /Randomizer/Graphics/Atlases/Gui/menu/endless_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/Atlases/Gui/menu/endless_icon.png -------------------------------------------------------------------------------- /Randomizer/Graphics/Atlases/Gui/menu/labyrinth_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/Atlases/Gui/menu/labyrinth_icon.png -------------------------------------------------------------------------------- /Randomizer/Graphics/Atlases/Gui/menu/maps.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/Atlases/Gui/menu/maps.xcf -------------------------------------------------------------------------------- /Randomizer/Graphics/Atlases/Gui/menu/pathway_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/Atlases/Gui/menu/pathway_icon.png -------------------------------------------------------------------------------- /Randomizer/Graphics/Atlases/Gui/menu/poemArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/Atlases/Gui/menu/poemArrow.png -------------------------------------------------------------------------------- /Randomizer/Graphics/Atlases/Gui/menu/randomizer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/Atlases/Gui/menu/randomizer.png -------------------------------------------------------------------------------- /Randomizer/Graphics/Atlases/Gui/menu/skulls/skullBlue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/Atlases/Gui/menu/skulls/skullBlue.png -------------------------------------------------------------------------------- /Randomizer/Graphics/Atlases/Gui/menu/skulls/skullGold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/Atlases/Gui/menu/skulls/skullGold.png -------------------------------------------------------------------------------- /Randomizer/Graphics/Atlases/Gui/menu/skulls/skullOrange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/Atlases/Gui/menu/skulls/skullOrange.png -------------------------------------------------------------------------------- /Randomizer/Graphics/Atlases/Gui/menu/skulls/skullPurple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/Atlases/Gui/menu/skulls/skullPurple.png -------------------------------------------------------------------------------- /Randomizer/Graphics/Atlases/Gui/menu/skulls/skullRed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/Atlases/Gui/menu/skulls/skullRed.png -------------------------------------------------------------------------------- /Randomizer/Graphics/Atlases/Gui/menu/skulls/strawberry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/Atlases/Gui/menu/skulls/strawberry.png -------------------------------------------------------------------------------- /Randomizer/Graphics/Sprites.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/Sprites.xml -------------------------------------------------------------------------------- /Randomizer/Graphics/SpritesGui.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Graphics/SpritesGui.xml -------------------------------------------------------------------------------- /Randomizer/Interoperability/GenerationInterop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Interoperability/GenerationInterop.cs -------------------------------------------------------------------------------- /Randomizer/Interoperability/InteropHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Interoperability/InteropHelper.cs -------------------------------------------------------------------------------- /Randomizer/Interoperability/SettingsInterop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Interoperability/SettingsInterop.cs -------------------------------------------------------------------------------- /Randomizer/Oui/GenericOui.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Oui/GenericOui.cs -------------------------------------------------------------------------------- /Randomizer/Oui/OuiRandoDifficulty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Oui/OuiRandoDifficulty.cs -------------------------------------------------------------------------------- /Randomizer/Oui/OuiRandoMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Oui/OuiRandoMode.cs -------------------------------------------------------------------------------- /Randomizer/Oui/OuiRandoRecords.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Oui/OuiRandoRecords.cs -------------------------------------------------------------------------------- /Randomizer/Oui/OuiRandoSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Oui/OuiRandoSettings.cs -------------------------------------------------------------------------------- /Randomizer/Patches/mechanics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Patches/mechanics.cs -------------------------------------------------------------------------------- /Randomizer/Patches/menuLifecycle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Patches/menuLifecycle.cs -------------------------------------------------------------------------------- /Randomizer/Patches/qol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Patches/qol.cs -------------------------------------------------------------------------------- /Randomizer/Patches/sessionLifecycle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Patches/sessionLifecycle.cs -------------------------------------------------------------------------------- /Randomizer/PriorityQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/PriorityQueue.cs -------------------------------------------------------------------------------- /Randomizer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Randomizer/RandoConfigFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/RandoConfigFile.cs -------------------------------------------------------------------------------- /Randomizer/RandoLogic/Hole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/RandoLogic/Hole.cs -------------------------------------------------------------------------------- /Randomizer/RandoLogic/LinkedRoom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/RandoLogic/LinkedRoom.cs -------------------------------------------------------------------------------- /Randomizer/RandoLogic/LogicLabyrinth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/RandoLogic/LogicLabyrinth.cs -------------------------------------------------------------------------------- /Randomizer/RandoLogic/LogicPathway.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/RandoLogic/LogicPathway.cs -------------------------------------------------------------------------------- /Randomizer/RandoLogic/ProcessAreas.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/RandoLogic/ProcessAreas.cs -------------------------------------------------------------------------------- /Randomizer/RandoLogic/RandoLogic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/RandoLogic/RandoLogic.cs -------------------------------------------------------------------------------- /Randomizer/RandoLogic/RandoTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/RandoLogic/RandoTask.cs -------------------------------------------------------------------------------- /Randomizer/RandoLogic/Receipt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/RandoLogic/Receipt.cs -------------------------------------------------------------------------------- /Randomizer/RandoLogic/Requirements.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/RandoLogic/Requirements.cs -------------------------------------------------------------------------------- /Randomizer/RandoLogic/ScreenDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/RandoLogic/ScreenDirection.cs -------------------------------------------------------------------------------- /Randomizer/RandoLogic/StaticRoom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/RandoLogic/StaticRoom.cs -------------------------------------------------------------------------------- /Randomizer/RandoModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/RandoModule.cs -------------------------------------------------------------------------------- /Randomizer/RandoModuleSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/RandoModuleSettings.cs -------------------------------------------------------------------------------- /Randomizer/RandoSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/RandoSettings.cs -------------------------------------------------------------------------------- /Randomizer/Randomizer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/Randomizer.csproj -------------------------------------------------------------------------------- /Randomizer/everest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/everest.yaml -------------------------------------------------------------------------------- /Randomizer/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/Randomizer/packages.config -------------------------------------------------------------------------------- /bundle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/bundle.sh -------------------------------------------------------------------------------- /docs/img/ahorn_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/docs/img/ahorn_1.png -------------------------------------------------------------------------------- /docs/img/ahorn_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/docs/img/ahorn_2.png -------------------------------------------------------------------------------- /docs/img/ahorn_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/docs/img/ahorn_3.png -------------------------------------------------------------------------------- /docs/img/ahorn_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/docs/img/ahorn_4.png -------------------------------------------------------------------------------- /docs/img/debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/docs/img/debug.png -------------------------------------------------------------------------------- /docs/img/gameplay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/docs/img/gameplay.png -------------------------------------------------------------------------------- /docs/img/launch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/docs/img/launch.png -------------------------------------------------------------------------------- /docs/img/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/docs/img/settings.png -------------------------------------------------------------------------------- /docs/metadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/docs/metadata.md -------------------------------------------------------------------------------- /packages/lib-stripped/Celeste.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/packages/lib-stripped/Celeste.exe -------------------------------------------------------------------------------- /packages/lib-stripped/FNA.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/packages/lib-stripped/FNA.dll -------------------------------------------------------------------------------- /packages/lib-stripped/MMHOOK_Celeste.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/packages/lib-stripped/MMHOOK_Celeste.dll -------------------------------------------------------------------------------- /packages/lib-stripped/Mono.Cecil.Mdb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/packages/lib-stripped/Mono.Cecil.Mdb.dll -------------------------------------------------------------------------------- /packages/lib-stripped/Mono.Cecil.Pdb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/packages/lib-stripped/Mono.Cecil.Pdb.dll -------------------------------------------------------------------------------- /packages/lib-stripped/Mono.Cecil.Rocks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/packages/lib-stripped/Mono.Cecil.Rocks.dll -------------------------------------------------------------------------------- /packages/lib-stripped/Mono.Cecil.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/packages/lib-stripped/Mono.Cecil.dll -------------------------------------------------------------------------------- /packages/lib-stripped/MonoMod.RuntimeDetour.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/packages/lib-stripped/MonoMod.RuntimeDetour.dll -------------------------------------------------------------------------------- /packages/lib-stripped/MonoMod.Utils.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/packages/lib-stripped/MonoMod.Utils.dll -------------------------------------------------------------------------------- /packages/lib-stripped/YamlDotNet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhelmot/CelesteRandomizer/HEAD/packages/lib-stripped/YamlDotNet.dll --------------------------------------------------------------------------------